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

70 lines
2.5 KiB
JavaScript
Raw Normal View History

2017-12-02 11:19:08 +01:00
import assert from 'assert';
import crypto from 'crypto';
import {readFile} from '../lib/test.utils';
function getBinary() {
2017-12-02 11:19:08 +01:00
return readFile('../fixtures/binary');
}
2017-12-02 11:19:08 +01:00
export default function (server, server2) {
describe('should check whether test-nullstorage is on server1', () => {
test('trying to fetch non-existent package / null storage', () => {
return server.getPackage('test-nullstorage-nonexist')
.status(404)
.body_error(/no such package/);
});
2017-04-19 21:15:28 +02:00
});
describe('should check whether test-nullstorage is on server2', () => {
2017-12-02 11:19:08 +01:00
beforeAll(function() {
return server2.addPackage('test-nullstorage2');
2017-04-19 21:15:28 +02:00
});
test('should creaate a new package on server2', () => {/* test for before() */});
test('should fails on download a non existent tarball', () => {
return server.getTarball('test-nullstorage2', 'blahblah')
.status(404)
2017-04-19 21:15:28 +02:00
.body_error(/no such file/);
});
describe('test and publish test-nullstorage2 package', () => {
2017-12-02 11:19:08 +01:00
beforeAll(function() {
return server2.putTarball('test-nullstorage2', 'blahblah', getBinary())
.status(201)
2017-04-19 21:15:28 +02:00
.body_ok(/.*/);
});
2017-12-02 11:19:08 +01:00
beforeAll(function() {
let pkg = require('../fixtures/package')('test-nullstorage2');
pkg.dist.shasum = crypto.createHash('sha1').update(getBinary()).digest('hex');
return server2.putVersion('test-nullstorage2', '0.0.1', pkg)
.status(201)
2017-04-19 21:15:28 +02:00
.body_ok(/published/);
});
test('should upload a new version for test-nullstorage2', () => {/* test for before() */});
test('should fetch the newly created published tarball for test-nullstorage2', () => {
return server.getTarball('test-nullstorage2', 'blahblah')
.status(200)
2017-04-19 21:15:28 +02:00
.then(function(body) {
assert.deepEqual(body, getBinary());
2017-04-19 21:15:28 +02:00
});
});
test('should check whether the metadata for test-nullstorage2 match', () => {
return server.getPackage('test-nullstorage2')
.status(200)
2017-04-19 21:15:28 +02:00
.then(function(body) {
assert.equal(body.name, 'test-nullstorage2');
assert.equal(body.versions['0.0.1'].name, 'test-nullstorage2');
assert.equal(body.versions['0.0.1'].dist.tarball, 'http://localhost:55551/test-nullstorage2/-/blahblah');
assert.deepEqual(body['dist-tags'], {latest: '0.0.1'});
});
});
});
});
2017-12-02 11:19:08 +01:00
}