| 
									
										
										
										
											2015-01-03 20:07:09 -05:00
										 |  |  | 'use strict'; | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 11:59:01 -05:00
										 |  |  | var assert = require('assert'); | 
					
						
							| 
									
										
										
										
											2016-10-16 21:51:42 +03:00
										 |  |  | var async = require('async'); | 
					
						
							| 
									
										
										
										
											2016-11-08 22:10:12 +03:00
										 |  |  | var nconf = require('nconf'); | 
					
						
							| 
									
										
										
										
											2016-11-10 16:55:22 +03:00
										 |  |  | var request = require('request'); | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-08 22:10:12 +03:00
										 |  |  | var db = require('./mocks/databasemock'); | 
					
						
							| 
									
										
										
										
											2016-10-16 21:51:42 +03:00
										 |  |  | var User = require('../src/user'); | 
					
						
							|  |  |  | var Topics = require('../src/topics'); | 
					
						
							|  |  |  | var Categories = require('../src/categories'); | 
					
						
							|  |  |  | var Meta = require('../src/meta'); | 
					
						
							|  |  |  | var Password = require('../src/password'); | 
					
						
							| 
									
										
										
										
											2016-11-22 18:21:57 +03:00
										 |  |  | var groups = require('../src/groups'); | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | var helpers = require('./helpers'); | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | describe('User', function () { | 
					
						
							| 
									
										
										
										
											2016-10-16 21:51:42 +03:00
										 |  |  | 	var userData; | 
					
						
							|  |  |  | 	var testUid; | 
					
						
							|  |  |  | 	var testCid; | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	before(function (done) { | 
					
						
							| 
									
										
										
										
											2016-11-22 18:21:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 21:00:41 +03:00
										 |  |  | 		groups.resetCache(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 		Categories.create({ | 
					
						
							|  |  |  | 			name: 'Test Category', | 
					
						
							|  |  |  | 			description: 'A test', | 
					
						
							|  |  |  | 			order: 1 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		}, function (err, categoryObj) { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				return done(err); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 			testCid = categoryObj.cid; | 
					
						
							|  |  |  | 			done(); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	beforeEach(function () { | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 		userData = { | 
					
						
							| 
									
										
										
										
											2014-03-06 14:51:43 -05:00
										 |  |  | 			username: 'John Smith', | 
					
						
							| 
									
										
										
										
											2015-05-07 13:43:06 -04:00
										 |  |  | 			fullname: 'John Smith McNamara', | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 			password: 'swordfish', | 
					
						
							|  |  |  | 			email: 'john@example.com', | 
					
						
							|  |  |  | 			callback: undefined | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('.create(), when created', function () { | 
					
						
							|  |  |  | 		it('should be created properly', function (done) { | 
					
						
							| 
									
										
										
										
											2016-10-25 21:34:47 +02:00
										 |  |  | 			User.create({username: userData.username, password: userData.password, email: userData.email}, function (error,userId) { | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 				assert.equal(error, null, 'was created with error'); | 
					
						
							|  |  |  | 				assert.ok(userId); | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				testUid = userId; | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should have a valid email, if using an email', function (done) { | 
					
						
							|  |  |  | 			User.create({username: userData.username, password: userData.password, email: 'fakeMail'},function (err) { | 
					
						
							| 
									
										
										
										
											2015-10-19 11:45:07 -04:00
										 |  |  | 				assert(err); | 
					
						
							|  |  |  | 				assert.equal(err.message, '[[error:invalid-email]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('.isModerator()', function () { | 
					
						
							|  |  |  | 		it('should return false', function (done) { | 
					
						
							|  |  |  | 			User.isModerator(testUid, testCid, function (err, isModerator) { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 				assert.equal(err, null); | 
					
						
							| 
									
										
										
										
											2014-12-02 15:33:23 -05:00
										 |  |  | 				assert.equal(isModerator, false); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should return two false results', function (done) { | 
					
						
							|  |  |  | 			User.isModerator([testUid, testUid], testCid, function (err, isModerator) { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 				assert.equal(err, null); | 
					
						
							| 
									
										
										
										
											2014-12-02 15:33:23 -05:00
										 |  |  | 				assert.equal(isModerator[0], false); | 
					
						
							|  |  |  | 				assert.equal(isModerator[1], false); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should return two false results', function (done) { | 
					
						
							|  |  |  | 			User.isModerator(testUid, [testCid, testCid], function (err, isModerator) { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 				assert.equal(err, null); | 
					
						
							| 
									
										
										
										
											2014-12-02 15:33:23 -05:00
										 |  |  | 				assert.equal(isModerator[0], false); | 
					
						
							|  |  |  | 				assert.equal(isModerator[1], false); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('.isReadyToPost()', function () { | 
					
						
							|  |  |  | 		it('should error when a user makes two posts in quick succession', function (done) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 			Meta.config = Meta.config || {}; | 
					
						
							|  |  |  | 			Meta.config.postDelay = '10'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			async.series([ | 
					
						
							|  |  |  | 				async.apply(Topics.post, { | 
					
						
							|  |  |  | 					uid: testUid, | 
					
						
							|  |  |  | 					title: 'Topic 1', | 
					
						
							|  |  |  | 					content: 'lorem ipsum', | 
					
						
							|  |  |  | 					cid: testCid | 
					
						
							|  |  |  | 				}), | 
					
						
							|  |  |  | 				async.apply(Topics.post, { | 
					
						
							|  |  |  | 					uid: testUid, | 
					
						
							|  |  |  | 					title: 'Topic 2', | 
					
						
							|  |  |  | 					content: 'lorem ipsum', | 
					
						
							|  |  |  | 					cid: testCid | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 			], function (err) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 				assert(err); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should allow a post if the last post time is > 10 seconds', function (done) { | 
					
						
							|  |  |  | 			User.setUserField(testUid, 'lastposttime', +new Date() - (11 * 1000), function () { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 				Topics.post({ | 
					
						
							|  |  |  | 					uid: testUid, | 
					
						
							|  |  |  | 					title: 'Topic 3', | 
					
						
							|  |  |  | 					content: 'lorem ipsum', | 
					
						
							|  |  |  | 					cid: testCid | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				}, function (err) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should error when a new user posts if the last post time is 10 < 30 seconds', function (done) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 			Meta.config.newbiePostDelay = 30; | 
					
						
							|  |  |  | 			Meta.config.newbiePostDelayThreshold = 3; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 			User.setUserField(testUid, 'lastposttime', +new Date() - (20 * 1000), function () { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 				Topics.post({ | 
					
						
							|  |  |  | 					uid: testUid, | 
					
						
							|  |  |  | 					title: 'Topic 4', | 
					
						
							|  |  |  | 					content: 'lorem ipsum', | 
					
						
							|  |  |  | 					cid: testCid | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				}, function (err) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 					assert(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should not error if a non-newbie user posts if the last post time is 10 < 30 seconds', function (done) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 			User.setUserFields(testUid, { | 
					
						
							| 
									
										
										
										
											2016-10-13 11:42:29 +02:00
										 |  |  | 				lastposttime:  +new Date() - (20 * 1000), | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 				reputation: 10 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 			}, function () { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 				Topics.post({ | 
					
						
							|  |  |  | 					uid: testUid, | 
					
						
							|  |  |  | 					title: 'Topic 5', | 
					
						
							|  |  |  | 					content: 'lorem ipsum', | 
					
						
							|  |  |  | 					cid: testCid | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				}, function (err) { | 
					
						
							| 
									
										
										
										
											2014-10-31 13:22:42 -04:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('.search()', function () { | 
					
						
							|  |  |  | 		it('should return an object containing an array of matching users', function (done) { | 
					
						
							|  |  |  | 			User.search({query: 'john'}, function (err, searchData) { | 
					
						
							| 
									
										
										
										
											2014-12-31 17:20:28 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(Array.isArray(searchData.users) && searchData.users.length > 0, true); | 
					
						
							|  |  |  | 				assert.equal(searchData.users[0].username, 'John Smith'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('.delete()', function () { | 
					
						
							| 
									
										
										
										
											2015-01-22 14:18:19 -05:00
										 |  |  | 		var uid; | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		before(function (done) { | 
					
						
							|  |  |  | 			User.create({username: 'usertodelete', password: '123456', email: 'delete@me.com'}, function (err, newUid) { | 
					
						
							| 
									
										
										
										
											2015-01-22 14:18:19 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				uid = newUid; | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should delete a user account', function (done) { | 
					
						
							|  |  |  | 			User.delete(1, uid, function (err) { | 
					
						
							| 
									
										
										
										
											2015-01-22 14:18:19 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				User.existsBySlug('usertodelete', function (err, exists) { | 
					
						
							| 
									
										
										
										
											2015-01-22 14:18:19 -05:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(exists, false); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('passwordReset', function () { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 		var uid, | 
					
						
							|  |  |  | 			code; | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		before(function (done) { | 
					
						
							|  |  |  | 			User.create({username: 'resetuser', password: '123456', email: 'reset@me.com'}, function (err, newUid) { | 
					
						
							| 
									
										
										
										
											2015-02-17 18:11:30 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				uid = newUid; | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('.generate() should generate a new reset code', function (done) { | 
					
						
							|  |  |  | 			User.reset.generate(uid, function (err, _code) { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(_code); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				code = _code; | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('.validate() should ensure that this new code is valid', function (done) { | 
					
						
							|  |  |  | 			User.reset.validate(code, function (err, valid) { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.strictEqual(valid, true); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('.validate() should correctly identify an invalid code', function (done) { | 
					
						
							|  |  |  | 			User.reset.validate(code + 'abcdef', function (err, valid) { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.strictEqual(valid, false); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('.send() should create a new reset code and reset password', function (done) { | 
					
						
							|  |  |  | 			User.reset.send('reset@me.com', function (err, code) { | 
					
						
							| 
									
										
										
										
											2016-10-16 06:03:02 +03:00
										 |  |  | 				if (err) { | 
					
						
							|  |  |  | 					console.log(err); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2015-02-17 18:11:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('.commit() should update the user\'s password', function (done) { | 
					
						
							|  |  |  | 			User.reset.commit(code, 'newpassword', function (err) { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2015-02-17 18:11:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				db.getObjectField('user:' + uid, 'password', function (err, newPassword) { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 					assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 					Password.compare('newpassword', newPassword, function (err, match) { | 
					
						
							| 
									
										
										
										
											2015-02-17 18:11:30 -05:00
										 |  |  | 						assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2015-04-02 20:27:43 -04:00
										 |  |  | 						assert(match); | 
					
						
							|  |  |  | 						done(); | 
					
						
							| 
									
										
										
										
											2015-02-17 18:11:30 -05:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	describe('hash methods', function () { | 
					
						
							| 
									
										
										
										
											2015-05-07 13:43:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should return uid from email', function (done) { | 
					
						
							|  |  |  | 			User.getUidByEmail('john@example.com', function (err, uid) { | 
					
						
							| 
									
										
										
										
											2015-05-07 13:43:06 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(parseInt(uid, 10), parseInt(testUid, 10)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should return uid from username', function (done) { | 
					
						
							|  |  |  | 			User.getUidByUsername('John Smith', function (err, uid) { | 
					
						
							| 
									
										
										
										
											2015-05-07 13:43:06 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(parseInt(uid, 10), parseInt(testUid, 10)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 		it('should return uid from userslug', function (done) { | 
					
						
							|  |  |  | 			User.getUidByUserslug('john-smith', function (err, uid) { | 
					
						
							| 
									
										
										
										
											2015-05-07 13:43:06 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(parseInt(uid, 10), parseInt(testUid, 10)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 	describe('not logged in', function () { | 
					
						
							|  |  |  | 		var jar; | 
					
						
							|  |  |  | 		var io; | 
					
						
							|  |  |  | 		before(function (done) { | 
					
						
							|  |  |  | 			helpers.initSocketIO(function (err, _jar, _io) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				jar = _jar; | 
					
						
							|  |  |  | 				io = _io; | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should return error if not logged in', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.updateProfile', {}, function (err) { | 
					
						
							|  |  |  | 				assert.equal(err.message, '[[error:invalid-uid]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	describe('profile methods', function () { | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 		var uid; | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 		var jar; | 
					
						
							|  |  |  | 		var io; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 		before(function (done) { | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 			User.create({username: 'updateprofile', email: 'update@me.com', password: '123456'}, function (err, newUid) { | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				uid = newUid; | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 				helpers.loginUser('updateprofile', '123456', function (err, _jar, _io) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					jar = _jar; | 
					
						
							|  |  |  | 					io = _io; | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should return error if data is invalid', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.updateProfile', null, function (err) { | 
					
						
							|  |  |  | 				assert.equal(err.message, '[[error:invalid-data]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should return error if data is missing uid', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.updateProfile', {username: 'bip', email: 'bop'}, function (err) { | 
					
						
							|  |  |  | 				assert.equal(err.message, '[[error:invalid-data]]'); | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should update a user\'s profile', function (done) { | 
					
						
							|  |  |  | 			var data = { | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 				uid: uid, | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 				username: 'updatedUserName', | 
					
						
							|  |  |  | 				email: 'updatedEmail@me.com', | 
					
						
							|  |  |  | 				fullname: 'updatedFullname', | 
					
						
							|  |  |  | 				website: 'http://nodebb.org', | 
					
						
							|  |  |  | 				location: 'izmir', | 
					
						
							|  |  |  | 				groupTitle: 'testGroup', | 
					
						
							|  |  |  | 				birthday: '01/01/1980', | 
					
						
							|  |  |  | 				signature: 'nodebb is good' | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 			io.emit('user.updateProfile', data, function (err, result) { | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |   				assert.equal(result.username, 'updatedUserName'); | 
					
						
							|  |  |  |   				assert.equal(result.userslug, 'updatedusername'); | 
					
						
							|  |  |  |   				assert.equal(result.email, 'updatedEmail@me.com'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 				db.getObject('user:' + uid, function (err, userData) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					Object.keys(data).forEach(function (key) { | 
					
						
							|  |  |  | 						assert.equal(data[key], userData[key]); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		it('should change a user\'s password', function (done) { | 
					
						
							| 
									
										
										
										
											2016-10-26 20:29:50 +03:00
										 |  |  | 			this.timeout(20000); | 
					
						
							| 
									
										
										
										
											2016-10-26 16:38:42 +03:00
										 |  |  | 			io.emit('user.changePassword', {uid: uid, newPassword: '654321', currentPassword: '123456'}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				User.isPasswordCorrect(uid, '654321', function (err, correct) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert(correct); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should change username', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.changeUsernameEmail', {uid: uid, username: 'updatedAgain', password: '654321'}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				db.getObjectField('user:' + uid, 'username', function (err, username) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(username, 'updatedAgain'); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should change email', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.changeUsernameEmail', {uid: uid, email: 'updatedAgain@me.com', password: '654321'}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				db.getObjectField('user:' + uid, 'email', function (err, email) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(email, 'updatedAgain@me.com'); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should update cover image', function (done) { | 
					
						
							|  |  |  | 			var imageData = 'data:image/png;base64,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
 | 
					
						
							|  |  |  | 			var position = '50.0301% 19.2464%'; | 
					
						
							|  |  |  | 			io.emit('user.updateCover', {uid: uid, imageData: imageData, position: position}, function (err, result) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(result.url); | 
					
						
							|  |  |  | 				db.getObjectFields('user:' + uid, ['cover:url', 'cover:position'], function (err, data) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(data['cover:url'], result.url); | 
					
						
							|  |  |  | 					assert.equal(data['cover:position'], position); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should remove cover image', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.removeCover', {uid: uid}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				db.getObjectField('user:' + uid, 'cover:url', function (err, url) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(url, null); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-08 22:10:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		it('should set user status', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.setStatus', 'away', function (err, data) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(data.uid, uid); | 
					
						
							|  |  |  | 				assert.equal(data.status, 'away'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should fail for invalid status', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.setStatus', '12345', function (err) { | 
					
						
							|  |  |  | 				assert.equal(err.message, '[[error:invalid-user-status]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should get user status', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.checkStatus', uid, function (err, status) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(status, 'away'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should change user picture', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.changePicture', {type: 'default', uid: uid}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				User.getUserField(uid, 'picture', function (err, picture) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(picture, ''); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should upload profile picture', function (done) { | 
					
						
							|  |  |  | 			var path = require('path'); | 
					
						
							|  |  |  | 			var picture = { | 
					
						
							|  |  |  | 				path: path.join(nconf.get('base_dir'), 'public', 'logo.png'), | 
					
						
							|  |  |  | 				size: 7189, | 
					
						
							|  |  |  | 				name: 'logo.png' | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			User.uploadPicture(uid, picture, function (err, uploadedPicture) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(uploadedPicture.url, '/uploads/profile/' + uid + '-profileimg.png'); | 
					
						
							|  |  |  | 				assert.equal(uploadedPicture.path, path.join(nconf.get('base_dir'), 'public', 'uploads', 'profile', uid + '-profileimg.png')); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should get profile pictures', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.getProfilePictures', {uid: uid}, function (err, data) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(data); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				assert.equal(data[0].type, 'uploaded'); | 
					
						
							|  |  |  | 				assert.equal(data[0].text, '[[user:uploaded_picture]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should remove uploaded picture', function (done) { | 
					
						
							|  |  |  | 			io.emit('user.removeUploadedPicture', {uid: uid}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				User.getUserField(uid, 'uploadedpicture', function (err, uploadedpicture) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(uploadedpicture, ''); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-10 16:55:22 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-10 17:11:26 +03:00
										 |  |  | 		it('should load profile page', function (done) { | 
					
						
							|  |  |  | 			request(nconf.get('url') + '/api/user/updatedagain', {jar: jar, json: true}, function (err, res, body) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(res.statusCode, 200); | 
					
						
							|  |  |  | 				assert(body); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-10 16:55:22 +03:00
										 |  |  | 		it('should load settings page', function (done) { | 
					
						
							|  |  |  | 			request(nconf.get('url') + '/api/user/updatedagain/settings', {jar: jar, json: true}, function (err, res, body) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(res.statusCode, 200); | 
					
						
							|  |  |  | 				assert(body.settings); | 
					
						
							|  |  |  | 				assert(body.languages); | 
					
						
							|  |  |  | 				assert(body.homePageRoutes); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-22 18:21:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-24 11:02:53 +03:00
										 |  |  | 		it('should load edit page', function (done) { | 
					
						
							|  |  |  | 			request(nconf.get('url') + '/api/user/updatedagain/edit', {jar: jar, json: true}, function (err, res, body) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(res.statusCode, 200); | 
					
						
							|  |  |  | 				assert(body); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		it('should load edit/email page', function (done) { | 
					
						
							|  |  |  | 			request(nconf.get('url') + '/api/user/updatedagain/edit/email', {jar: jar, json: true}, function (err, res, body) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(res.statusCode, 200); | 
					
						
							|  |  |  | 				assert(body); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-22 18:21:57 +03:00
										 |  |  | 		it('should load user\'s groups page', function (done) { | 
					
						
							|  |  |  | 			groups.create({ | 
					
						
							|  |  |  | 				name: 'Test', | 
					
						
							|  |  |  | 				description: 'Foobar!' | 
					
						
							|  |  |  | 			}, function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				groups.join('Test', uid, function (err) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					request(nconf.get('url') + '/api/user/updatedagain/groups', {jar: jar, json: true}, function (err, res, body) { | 
					
						
							|  |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						assert.equal(res.statusCode, 200); | 
					
						
							|  |  |  | 						assert(Array.isArray(body.groups)); | 
					
						
							|  |  |  | 						assert.equal(body.groups[0].name, 'Test'); | 
					
						
							|  |  |  | 						done(); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-10-14 11:51:33 +03:00
										 |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 11:59:01 -05:00
										 |  |  | 	describe('.getModerationHistory', function () { | 
					
						
							|  |  |  | 		it('should return the correct ban reason', function (done) { | 
					
						
							|  |  |  | 			async.series([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					User.ban(testUid, 0, '', function (err) { | 
					
						
							|  |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						next(err); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					User.getModerationHistory(testUid, function (err, data) { | 
					
						
							|  |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						assert.equal(data.bans.length, 1, 'one ban'); | 
					
						
							|  |  |  | 						assert.equal(data.bans[0].reason, '[[user:info.banned-no-reason]]', 'no ban reason'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						next(err); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			], function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				User.unban(testUid, function (err) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 17:15:31 +03:00
										 |  |  | 	describe('digests', function () { | 
					
						
							|  |  |  | 		var uid; | 
					
						
							|  |  |  | 		before(function (done) { | 
					
						
							|  |  |  | 			User.create({username: 'digestuser', email: 'test@example.com'}, function (err, _uid) { | 
					
						
							| 
									
										
										
										
											2016-11-23 15:52:35 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2016-11-23 17:15:31 +03:00
										 |  |  | 				uid = _uid; | 
					
						
							| 
									
										
										
										
											2016-11-23 15:52:35 +03:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 17:15:31 +03:00
										 |  |  | 		it('should send digests', function (done) { | 
					
						
							|  |  |  | 			User.updateDigestSetting(uid, 'day', function (err) { | 
					
						
							|  |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 					User.digest.execute('day', function (err) { | 
					
						
							|  |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2016-11-08 22:10:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 	after(function (done) { | 
					
						
							| 
									
										
										
										
											2016-10-17 23:34:09 +03:00
										 |  |  | 		db.emptydb(done); | 
					
						
							| 
									
										
										
										
											2013-11-04 01:32:31 +02:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2016-11-02 11:59:01 -05:00
										 |  |  | }); |