more tests

register/login/logout tests
ability to test socket.io emits for logged in users
This commit is contained in:
barisusakli
2016-10-16 16:43:38 +03:00
parent f5173a348f
commit 12f366f4b4
5 changed files with 271 additions and 2 deletions

127
test/authentication.js Normal file
View File

@@ -0,0 +1,127 @@
'use strict';
/*global require, before*/
var assert = require('assert');
var async = require('async');
var nconf = require('nconf');
var request = require('request');
var db = require('./mocks/databasemock');
describe('authentication', function () {
var jar = request.jar();
it('should register and login a user', function (done) {
request({
url: nconf.get('url') + '/api/config',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
request.post(nconf.get('url') + '/register', {
form: {
email: 'admin@nodebb.org',
username: 'admin',
password: 'adminpwd',
},
json: true,
jar: jar,
headers: {
'x-csrf-token': body.csrf_token
}
}, function (err, response, body) {
assert.ifError(err);
assert(body);
request({
url: nconf.get('url') + '/api/me',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
assert(body);
assert.equal(body.username, 'admin');
assert.equal(body.email, 'admin@nodebb.org');
done()
});
});
});
});
it('should logout a user', function (done) {
request({
url: nconf.get('url') + '/api/config',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
request.post(nconf.get('url') + '/logout', {
form: {},
json: true,
jar: jar,
headers: {
'x-csrf-token': body.csrf_token
}
}, function (err, response, body) {
assert.ifError(err);
request({
url: nconf.get('url') + '/api/me',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
assert.equal(body, 'not-authorized');
done()
});
});
});
});
it('should login a user', function (done) {
var jar = request.jar();
request({
url: nconf.get('url') + '/api/config',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
request.post(nconf.get('url') + '/login', {
form: {
username: 'admin',
password: 'adminpwd',
},
json: true,
jar: jar,
headers: {
'x-csrf-token': body.csrf_token
}
}, function (err, response, body) {
assert.ifError(err);
assert(body);
request({
url: nconf.get('url') + '/api/me',
json: true,
jar: jar
}, function (err, response, body) {
assert.ifError(err);
assert(body);
assert.equal(body.username, 'admin');
assert.equal(body.email, 'admin@nodebb.org');
done()
});
});
});
});
after(function (done) {
db.flushdb(done);
});
});