mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-21 13:27:04 +08:00
* Use a more sophisticated template for end-to-end testing. * Not publish integration tests to npm * Use "commander" for cli argv handling * Handle different scripts version forms and exits without a name given * Prepare the commands for testing with a template * Fix dev "template" path * Add various features to test * Test various features separately * Test language features * Comment unused e2e.sh lines * Add "development" tests * Test environment variables * Test webpack plugins * Replace kitchensink README * Switch integration tests from jest to mocha * Use `fs-extra` * Use the correct folders * Do some cleanup * Print a better message for `--template` * Test `npm start` with and without https * Separate fast e2e testing from kitchensink testing * Hide `--internal-testing-template` (former `--template`) CLI option
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
const fs = require('fs')
|
|
const http = require('http')
|
|
const jsdom = require('jsdom')
|
|
const path = require('path')
|
|
|
|
let getMarkup
|
|
let resourceLoader
|
|
// this value could be tweaked in order to let the resource
|
|
// retriever get every file and jsdom execute react
|
|
let timeToWaitForJsToExecute
|
|
|
|
if (process.env.E2E_FILE) {
|
|
const file = path.isAbsolute(process.env.E2E_FILE)
|
|
? process.env.E2E_FILE
|
|
: path.join(process.cwd(), process.env.E2E_FILE)
|
|
|
|
const markup = fs.readFileSync(file, 'utf8')
|
|
getMarkup = () => markup
|
|
|
|
resourceLoader = (resource, callback) => callback(
|
|
null,
|
|
fs.readFileSync(path.join(path.dirname(file), resource.url.pathname), 'utf8')
|
|
)
|
|
|
|
timeToWaitForJsToExecute = 0
|
|
} else if (process.env.E2E_URL) {
|
|
getMarkup = () => new Promise(resolve => {
|
|
http.get(process.env.E2E_URL, (res) => {
|
|
let rawData = ''
|
|
res.on('data', chunk => rawData += chunk)
|
|
res.on('end', () => resolve(rawData))
|
|
})
|
|
})
|
|
|
|
resourceLoader = (resource, callback) => {
|
|
return resource.defaultFetch(callback)
|
|
}
|
|
|
|
timeToWaitForJsToExecute = 100
|
|
} else {
|
|
it.only('can run jsdom (at least one of "E2E_FILE" or "E2E_URL" environment variables must be provided)', () => {
|
|
expect(new Error('This isn\'t the error you are looking for.')).toBeUndefined()
|
|
})
|
|
}
|
|
|
|
export default feature => new Promise(async resolve => {
|
|
const markup = await getMarkup()
|
|
const host = process.env.E2E_URL || 'http://localhost:3000'
|
|
const doc = jsdom.jsdom(markup, {
|
|
features : {
|
|
FetchExternalResources : ['script', 'css'],
|
|
ProcessExternalResources : ['script'],
|
|
},
|
|
resourceLoader,
|
|
url: `${host}#${feature}`,
|
|
virtualConsole: jsdom.createVirtualConsole().sendTo(console),
|
|
})
|
|
|
|
doc.defaultView.addEventListener('load', () => {
|
|
setTimeout(() => resolve(doc), timeToWaitForJsToExecute)
|
|
}, false)
|
|
})
|