|
@@ -434,6 +434,45 @@ describe('User', () => {
|
|
|
})
|
|
|
})
|
|
|
|
|
|
+ describe('/?admin', () => {
|
|
|
+ let admin1 = chai.request.agent(server)
|
|
|
+ before(done => {
|
|
|
+ admin1
|
|
|
+ .post('/api/v1/user/adminaccount/login')
|
|
|
+ .set('content-type', 'application/json')
|
|
|
+ .send({
|
|
|
+ password: 'password'
|
|
|
+ })
|
|
|
+ .then(_ => {
|
|
|
+ done()
|
|
|
+ })
|
|
|
+ .catch(done)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should return an array of admins', async () => {
|
|
|
+ let res = await admin1.get('/api/v1/user?admin=true')
|
|
|
+
|
|
|
+ res.should.be.json
|
|
|
+ res.should.have.status(200)
|
|
|
+ res.body.should.contain.something.with.property('username', 'adminaccount')
|
|
|
+ res.body.should.contain.something.with.property('username', 'adminaccount1')
|
|
|
+ res.body.should.not.contain.something.with.property('hash')
|
|
|
+ res.body.should.have.property('length', 2)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should return an error if not admin', done => {
|
|
|
+ chai.request(server)
|
|
|
+ .get('/api/v1/user?admin=true')
|
|
|
+ .end((err, res) => {
|
|
|
+ res.should.have.status(401)
|
|
|
+ res.body.should.have.property('errors')
|
|
|
+ res.body.errors.should.contain.something.that.deep.equals(Errors.requestNotAuthorized)
|
|
|
+
|
|
|
+ done()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+
|
|
|
describe('/:username/login POST user', () => {
|
|
|
let agent = chai.request.agent(server)
|
|
|
|