Files
hiring-test-one/test/test.js

146 lines
3.5 KiB
JavaScript
Raw Normal View History

2015-11-08 22:09:07 +00:00
'use strict'
const test = require('tape')
const request = require('req-then')
const localWebServer = require('../')
const http = require('http')
2015-11-10 21:50:56 +00:00
const PassThrough = require('stream').PassThrough
2015-11-08 22:09:07 +00:00
2015-11-13 19:55:52 +00:00
function launchServer (app, options) {
options = options || {}
const path = `http://localhost:8100${options.path || '/'}`
2015-11-13 11:26:02 +00:00
const server = http.createServer(app.callback())
2015-11-13 19:55:52 +00:00
return server.listen(8100, () => {
const req = request(path, options.reqOptions)
if (options.onSuccess) req.then(options.onSuccess)
if (!options.leaveOpen) req.then(() => server.close())
2015-11-13 11:26:02 +00:00
req.catch(err => console.error('LAUNCH ERROR', err.stack))
})
}
test('log: common', function (t) {
t.plan(1)
const stream = PassThrough()
stream.on('readable', () => {
let chunk = stream.read()
if (chunk) t.ok(/GET/.test(chunk.toString()))
})
const app = localWebServer({
log: {
format: 'common',
options: {
stream: stream
}
}
})
launchServer(app)
})
2015-11-08 22:09:07 +00:00
test('static', function (t) {
t.plan(1)
const app = localWebServer({
log: { format: 'none' },
2015-11-08 22:09:07 +00:00
static: {
2015-11-13 11:42:16 +00:00
root: __dirname + '/fixture',
2015-11-08 22:09:07 +00:00
options: {
index: 'file.txt'
}
}
})
2015-11-13 19:55:52 +00:00
launchServer(app, { onSuccess: response => {
t.strictEqual(response.data, 'test\n')
2015-11-13 19:55:52 +00:00
}})
2015-11-08 22:09:07 +00:00
})
test('serve-index', function (t) {
t.plan(2)
const app = localWebServer({
log: { format: 'none' },
2015-11-08 22:09:07 +00:00
serveIndex: {
2015-11-13 11:42:16 +00:00
path: __dirname + '/fixture',
2015-11-08 22:09:07 +00:00
options: {
icons: true
}
}
})
2015-11-13 19:55:52 +00:00
launchServer(app, { onSuccess: response => {
t.ok(/listing directory/.test(response.data))
t.ok(/class="icon/.test(response.data))
2015-11-13 19:55:52 +00:00
}})
2015-11-08 22:09:07 +00:00
})
2015-11-10 21:50:56 +00:00
test('compress', function(t){
2015-11-10 21:50:56 +00:00
t.plan(1)
const app = localWebServer({
compress: true,
log: { format: 'none' },
2015-11-13 11:42:16 +00:00
static: { root: __dirname + '/fixture' }
})
2015-11-13 19:55:52 +00:00
launchServer(
app,
{
reqOptions: { headers: { 'Accept-Encoding': 'gzip' } },
path: '/big-file.txt',
onSuccess: response => {
t.strictEqual(response.res.headers['content-encoding'], 'gzip')
}
}
)
2015-11-12 23:02:38 +00:00
})
2015-11-13 11:26:02 +00:00
test('mime', function(t){
t.plan(1)
const app = localWebServer({
log: { format: 'none' },
2015-11-13 11:42:16 +00:00
static: { root: __dirname + '/fixture' },
2015-11-13 11:26:02 +00:00
mime: { 'text/plain': [ 'php' ]}
})
2015-11-13 19:55:52 +00:00
launchServer(app, { path: '/something.php', onSuccess: response => {
2015-11-13 11:26:02 +00:00
t.ok(/text\/plain/.test(response.res.headers['content-type']))
2015-11-13 19:55:52 +00:00
}})
})
test('blacklist', function (t) {
t.plan(2)
const app = localWebServer({
log: { format: 'none' },
static: { root: __dirname + '/fixture' },
blacklist: [ /php$/, /html$/ ]
2015-11-13 11:26:02 +00:00
})
2015-11-13 19:55:52 +00:00
const server = launchServer(app, { leaveOpen: true })
request('http://localhost:8100/something.php')
.then(response => {
t.strictEqual(response.res.statusCode, 403)
request('http://localhost:8100/ajax.html')
.then(response => {
t.strictEqual(response.res.statusCode, 403)
server.close()
})
})
2015-11-13 11:26:02 +00:00
})
2015-11-15 11:59:45 +00:00
test.skip('directories: should serve index and static files', function(t){
t.plan(1)
const app = localWebServer({
log: { format: 'none' },
directories: [
__dirname + '/fixture/one'
]
})
launchServer(app, { path: '/something.php', onSuccess: response => {
t.ok(/text\/plain/.test(response.res.headers['content-type']))
}})
})
test('proxy', function(t){
t.plan(1)
const app = localWebServer({
log: { format: 'none' },
proxy: []
})
launchServer(app, { path: '/something.php', onSuccess: response => {
t.ok(/text\/plain/.test(response.res.headers['content-type']))
}})
})