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.
36 lines
909 B
36 lines
909 B
'use strict'
|
|
const test = require('tape')
|
|
const request = require('req-then')
|
|
const LocalWebServer = require('../')
|
|
const c = require('./common')
|
|
const path = require('path')
|
|
|
|
test('stack', function (t) {
|
|
t.plan(2)
|
|
const ws = new LocalWebServer({
|
|
stack: [ path.resolve(__dirname, 'test-middleware.js') ]
|
|
})
|
|
const server = ws.getServer()
|
|
server.listen(8100, () => {
|
|
request('http://localhost:8100/')
|
|
.then(c.checkResponse(t, 200, /1234512345/))
|
|
.then(server.close.bind(server))
|
|
.catch(c.fail(t))
|
|
})
|
|
})
|
|
|
|
test('https', function (t) {
|
|
t.plan(2)
|
|
const ws = new LocalWebServer({
|
|
stack: [ path.resolve(__dirname, 'test-middleware.js') ],
|
|
https: true,
|
|
port: 8100
|
|
})
|
|
ws.listen()
|
|
.then(() => {
|
|
request('https://localhost:8100/')
|
|
.then(c.checkResponse(t, 200, /1234512345/))
|
|
.then(ws.close.bind(ws))
|
|
.catch(c.fail(t))
|
|
})
|
|
})
|