mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
4 years ago
|
import http from 'http'
|
||
|
import fs from 'fs'
|
||
|
import path from 'path'
|
||
|
import { deepStrictEqual } from 'assert'
|
||
|
import puppeteer from 'puppeteer-core'
|
||
|
|
||
|
const exercise = 'pimp-my-style'
|
||
|
const PORT = 9898
|
||
|
const config = {
|
||
|
headless: false,
|
||
|
executablePath:
|
||
|
'/usr/bin/google-chrome',
|
||
|
// '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
|
||
|
}
|
||
|
|
||
|
const mediaTypes = {
|
||
|
jpg: 'image/jpeg',
|
||
|
png: 'image/png',
|
||
|
html: 'text/html',
|
||
|
css: 'text/css',
|
||
|
js: 'application/javascript',
|
||
|
json: 'application/json',
|
||
|
}
|
||
|
|
||
|
const server = http.createServer(({ url, method }, response) => {
|
||
|
console.log(method + ' ' + url)
|
||
|
const filepath = path.join('.', url)
|
||
|
const ext = path.extname(filepath)
|
||
|
response.setHeader('Content-Type', mediaTypes[ext.slice(1)] || 'text/plain')
|
||
|
|
||
|
const stream = fs.createReadStream(filepath)
|
||
|
.pipe(response)
|
||
|
.once('error', err => {
|
||
|
console.log(err)
|
||
|
response.statusCode = 500 // handle 404 ?
|
||
|
response.end('oopsie')
|
||
|
})
|
||
|
}).listen(PORT, async (err) => {
|
||
|
err && (console.error(err.stack) || process.exit(1))
|
||
|
const { setup, tests } = await import(`./${exercise}/test.js`)
|
||
|
const browser = await puppeteer.launch(config)
|
||
|
const [page] = await browser.pages()
|
||
|
await page.goto(`http://localhost:${PORT}/${exercise}/index.html`)
|
||
|
const context = await setup({ page })
|
||
|
let code = 0
|
||
|
for (const [n, test] of tests.entries()) {
|
||
|
try {
|
||
|
await test({ page, eq: deepStrictEqual, ...context })
|
||
|
} catch (err) {
|
||
|
code = 1
|
||
|
console.log(`test #${n} failed:`)
|
||
|
console.log(test.toString())
|
||
|
console.log(err.stack)
|
||
|
}
|
||
|
}
|
||
|
server.close()
|
||
|
await browser.close()
|
||
|
process.exit(code)
|
||
|
})
|
||
|
|