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

37 lines
1013 B
JavaScript
Raw Normal View History

2014-07-22 23:45:28 +02:00
var assert = require('assert')
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(cb) {
server.auth(user, pass, function(res, body) {
assert.equal(res.statusCode, 201)
assert(body.ok.match(/user .* created/))
cb()
})
})
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(cb) {
server.auth(user, pass, function(res, body) {
assert.equal(res.statusCode, 201)
assert(body.ok.match(/you are authenticated as/))
cb()
})
})
2014-07-22 23:45:28 +02:00
it('should not register more users', function(cb) {
server.auth(String(Math.random()), String(Math.random()), function(res, body) {
2015-02-12 12:28:19 +01:00
assert.equal(res.statusCode, 409)
assert(body.error.match(/maximum amount of users reached/))
cb()
})
})
})
2014-07-22 23:45:28 +02:00
}