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.
28 lines
783 B
28 lines
783 B
var request = require('supertest');
|
|
var path = require('path');
|
|
var liveServer = require('..').start({
|
|
root: path.join(__dirname, "data"),
|
|
port: 0,
|
|
open: false,
|
|
htpasswd: path.join(__dirname, "data", "htpasswd-test")
|
|
});
|
|
|
|
describe('htpasswd tests', function() {
|
|
it('should respond with 401 since no password is given', function(done) {
|
|
request(liveServer)
|
|
.get('/')
|
|
.expect(401, done);
|
|
});
|
|
it('should respond with 401 since wrong password is given', function(done) {
|
|
request(liveServer)
|
|
.get('/')
|
|
.auth("test", "not-real-password")
|
|
.expect(401, done);
|
|
});
|
|
it('should respond with 200 since correct password is given', function(done) {
|
|
request(liveServer)
|
|
.get('/')
|
|
.auth("test", "test")
|
|
.expect(200, done);
|
|
});
|
|
});
|