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.
46 lines
1.2 KiB
46 lines
1.2 KiB
'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') ],
|
|
port: 8100,
|
|
testMode: true
|
|
})
|
|
ws.server.on('listening', () => {
|
|
return request('http://localhost:8100/')
|
|
.then(c.checkResponse(t, 200, /1234512345/))
|
|
.then(ws.server.close.bind(ws.server))
|
|
.catch(err => {
|
|
t.fail(err.message)
|
|
ws.server.close()
|
|
})
|
|
})
|
|
})
|
|
|
|
test('https', function (t) {
|
|
t.plan(2)
|
|
const ws = new LocalWebServer({
|
|
stack: [ path.resolve(__dirname, 'test-middleware.js') ],
|
|
https: true,
|
|
port: 8100,
|
|
testMode: true
|
|
})
|
|
const url = require('url')
|
|
const reqOptions = url.parse('https://localhost:8100/')
|
|
reqOptions.rejectUnauthorized = false
|
|
ws.server.on('listening', () => {
|
|
return request(reqOptions)
|
|
.then(c.checkResponse(t, 200, /1234512345/))
|
|
.then(ws.server.close.bind(ws.server))
|
|
.catch(err => {
|
|
t.fail(err.message)
|
|
ws.server.close()
|
|
})
|
|
})
|
|
})
|