0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/test/functional/basic.js

122 lines
4.1 KiB
JavaScript
Raw Normal View History

2017-04-19 14:15:28 -05:00
'use strict';
2013-12-19 10:11:54 -05:00
2017-04-19 14:15:28 -05:00
require('./lib/startup');
const assert = require('assert');
const crypto = require('crypto');
2013-12-19 10:11:54 -05:00
function readfile(x) {
2017-04-19 14:15:28 -05:00
return require('fs').readFileSync(__dirname + '/' + x);
2013-12-19 10:11:54 -05:00
}
2017-04-19 14:15:28 -05:00
module.exports = function() {
let server = process.server;
let server2 = process.server2;
2017-04-19 14:15:28 -05:00
it('trying to fetch non-existent package', function() {
return server.getPackage('testpkg').status(404).body_error(/no such package/);
2017-04-19 14:15:28 -05:00
});
2017-04-19 14:15:28 -05:00
describe('testpkg', function() {
before(function() {
return server.addPackage('testpkg');
2017-04-19 14:15:28 -05:00
});
2017-04-19 14:15:28 -05:00
it('creating new package', function() {/* test for before() */});
2017-04-19 14:15:28 -05:00
it('downloading non-existent tarball', function() {
return server.getTarball('testpkg', 'blahblah').status(404).body_error(/no such file/);
2017-04-19 14:15:28 -05:00
});
2017-04-19 14:15:28 -05:00
it('uploading incomplete tarball', function() {
return server.putTarballIncomplete('testpkg', 'blahblah1', readfile('fixtures/binary'), 3000);
2017-04-19 14:15:28 -05:00
});
2017-04-19 14:15:28 -05:00
describe('tarball', function() {
before(function() {
return server.putTarball('testpkg', 'blahblah', readfile('fixtures/binary'))
.status(201)
2017-04-19 14:15:28 -05:00
.body_ok(/.*/);
});
2017-04-19 14:15:28 -05:00
it('uploading new tarball', function() {/* test for before() */});
2017-04-19 14:15:28 -05:00
it('downloading newly created tarball', function() {
return server.getTarball('testpkg', 'blahblah')
.status(200)
2017-04-19 14:15:28 -05:00
.then(function(body) {
assert.deepEqual(body, readfile('fixtures/binary'));
});
});
2017-04-19 14:15:28 -05:00
it('uploading new package version (bad sha)', function() {
let pkg = require('./lib/package')('testpkg');
pkg.dist.shasum = crypto.createHash('sha1').update('fake').digest('hex');
return server.putVersion('testpkg', '0.0.1', pkg)
.status(400)
2017-04-19 14:15:28 -05:00
.body_error(/shasum error/);
});
2017-04-19 14:15:28 -05:00
describe('version', function() {
before(function() {
let pkg = require('./lib/package')('testpkg');
pkg.dist.shasum = crypto.createHash('sha1').update(readfile('fixtures/binary')).digest('hex');
return server.putVersion('testpkg', '0.0.1', pkg)
.status(201)
2017-04-19 14:15:28 -05:00
.body_ok(/published/);
});
2017-04-19 14:15:28 -05:00
it('uploading new package version', function() {/* test for before() */});
2017-04-19 14:15:28 -05:00
it('downloading newly created package', function() {
return server.getPackage('testpkg')
.status(200)
2017-04-19 14:15:28 -05:00
.then(function(body) {
assert.equal(body.name, 'testpkg');
assert.equal(body.versions['0.0.1'].name, 'testpkg');
assert.equal(body.versions['0.0.1'].dist.tarball, 'http://localhost:55551/testpkg/-/blahblah');
assert.deepEqual(body['dist-tags'], {latest: '0.0.1'});
});
});
it('downloading package via server2', function() {
return server2.getPackage('testpkg')
.status(200)
2017-04-19 14:15:28 -05:00
.then(function(body) {
assert.equal(body.name, 'testpkg');
assert.equal(body.versions['0.0.1'].name, 'testpkg');
assert.equal(body.versions['0.0.1'].dist.tarball, 'http://localhost:55552/testpkg/-/blahblah');
assert.deepEqual(body['dist-tags'], {latest: '0.0.1'});
});
});
});
});
});
it('uploading new package version for bad pkg', function() {
return server.putVersion('testpxg', '0.0.1', require('./lib/package')('testpxg'))
.status(404)
2017-04-19 14:15:28 -05:00
.body_error(/no such package/);
});
2017-04-19 14:15:28 -05:00
it('doubleerr test', function() {
return server.putTarball('testfwd2', 'blahblah', readfile('fixtures/binary'))
.status(404)
2017-04-19 14:15:28 -05:00
.body_error(/no such/);
});
2017-04-19 14:15:28 -05:00
it('publishing package / bad ro uplink', function() {
return server.putPackage('baduplink', require('./lib/package')('baduplink'))
.status(503)
2017-04-19 14:15:28 -05:00
.body_error(/one of the uplinks is down, refuse to publish/);
});
it('who am I?', function() {
return server.whoami().then(function(username) {
assert.equal(username, 'test');
});
});
};
2013-12-19 10:11:54 -05:00