Created
November 2, 2014 03:57
-
-
Save lsiden/84efe31749a65755d808 to your computer and use it in GitHub Desktop.
Attempting to test server API of nodejs app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var _ = require('lodash'); | |
var should = require('should'); | |
var app = require('../../app'); | |
var request = require('supertest'); | |
//var request = require('superagent'); // http://stackoverflow.com/a/14001892/270511 | |
var User = require('./user.model'); | |
describe('PUT /api/users/:id/contactInfo', function() { | |
var token = null; | |
beforeEach(function(done) { | |
var userParams = { | |
provider: 'local', | |
name: 'Larry', | |
email: '[email protected]', | |
password: 'password' | |
}; | |
User.find({}).remove(function() { | |
User.create(userParams, function(err, user) { | |
if (err) console.log(err); | |
//console.log(user); | |
request(app) | |
.post('/auth/local') | |
.send({ email: userParams.email, provider:'local', password: userParams.password }) | |
.end(function(err,res) { | |
token = res.body.token; // defined in closure | |
//console.log(token); | |
done(); | |
}); | |
}); | |
}); | |
}); | |
it('should return success if new password fields match', function(done) { | |
User.findOne({email: '[email protected]'}, function(err, user) { | |
if (err) console.log(err); | |
should.exist(user); | |
var url = '/api/users/:id/contactInfo'.replace(':id', user._id); | |
// (request.agent()) // will not require authentication | |
request(app) | |
.put(url, { | |
oldPassword: 'password', | |
newPassword: 'chickens', | |
retypeNewPassword: 'chickens' | |
}) | |
.set('authorization', 'Bearer ' + token) | |
.expect(200) | |
.end(done); | |
}); | |
}); | |
it('should return error if new password fields do not match', function(done) { | |
User.findOne({email: '[email protected]'}, function(err, user) { | |
if (err) console.log(err); | |
should.exist(user); | |
var url = '/api/users/:id/contactInfo'.replace(':id', user._id); | |
// (request.agent()) // will not require authentication | |
request(app) | |
.put(url, { | |
oldPassword: 'password', | |
newPassword: 'chickens', | |
retypeNewPassword: 'roosters' | |
}) | |
.set('authorization', 'Bearer ' + token) | |
.expect(200) | |
.end(done); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment