mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
var Server = require('./lib/server')
|
|
var fs = require('fs')
|
|
var path = require('path')
|
|
|
|
module.exports = function() {
|
|
var server = new Server('http://localhost:55551/')
|
|
|
|
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/)
|
|
})
|
|
|
|
it('creating new user', function(){})
|
|
|
|
it('should log in', function () {
|
|
return server.auth(user, pass)
|
|
.status(201)
|
|
.body_ok(/you are authenticated as/)
|
|
})
|
|
|
|
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/)
|
|
})
|
|
})
|
|
|
|
describe('adduser created with htpasswd', function() {
|
|
var user = 'preexisting'
|
|
var pass = 'preexisting'
|
|
before(function () {
|
|
return fs.appendFileSync(
|
|
path.join(__dirname, 'test-storage', '.htpasswd'),
|
|
'preexisting:$apr1$4YSboUa9$yVKjE7.PxIOuK3M4D7VjX.'
|
|
)
|
|
})
|
|
it('should log in', function () {
|
|
return server.auth(user, pass)
|
|
.status(201)
|
|
.body_ok(/you are authenticated as/)
|
|
})
|
|
})
|
|
}
|