1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/adduser.js

30 lines
808 B
JavaScript
Raw Normal View History

2014-07-22 23:45:28 +02:00
var Server = require('./lib/server')
module.exports = function() {
var server = new Server('http://localhost:55551/')
2014-07-22 23:45:28 +02:00
describe('adduser', function() {
var user = String(Math.random())
var pass = String(Math.random())
before(function () {
return server.auth(user, pass)
.status(201)
.body_ok(/user .* created/)
})
2014-07-22 23:45:28 +02:00
it('creating new user', function(){})
2014-07-22 23:45:28 +02:00
it('should log in', function () {
return server.auth(user, pass)
.status(201)
.body_ok(/you are authenticated as/)
})
2014-07-22 23:45:28 +02:00
it('should not register more users', function () {
return server.auth(String(Math.random()), String(Math.random()))
.status(409)
.body_error(/maximum amount of users reached/)
})
})
2014-07-22 23:45:28 +02:00
}