2017-12-02 11:19:08 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import crypto from 'crypto';
|
|
|
|
import {readFile} from '../lib/test.utils';
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2017-08-06 21:54:15 +02:00
|
|
|
function getBinary() {
|
2017-12-02 11:19:08 +01:00
|
|
|
return readFile('../fixtures/binary');
|
2014-08-08 03:08:41 +02:00
|
|
|
}
|
|
|
|
|
2017-12-02 11:19:08 +01:00
|
|
|
export default function (server, server2) {
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
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
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
describe('should check whether test-nullstorage is on server2', () => {
|
2017-12-02 11:19:08 +01:00
|
|
|
beforeAll(function() {
|
2017-06-28 22:56:02 +02:00
|
|
|
return server2.addPackage('test-nullstorage2');
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
test('should creaate a new package on server2', () => {/* test for before() */});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
test('should fails on download a non existent tarball', () => {
|
2017-06-28 22:56:02 +02:00
|
|
|
return server.getTarball('test-nullstorage2', 'blahblah')
|
2015-04-11 19:11:04 +02:00
|
|
|
.status(404)
|
2017-04-19 21:15:28 +02:00
|
|
|
.body_error(/no such file/);
|
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
describe('test and publish test-nullstorage2 package', () => {
|
2017-12-02 11:19:08 +01:00
|
|
|
beforeAll(function() {
|
2017-08-06 21:54:15 +02:00
|
|
|
return server2.putTarball('test-nullstorage2', 'blahblah', getBinary())
|
2015-04-11 19:11:04 +02:00
|
|
|
.status(201)
|
2017-04-19 21:15:28 +02:00
|
|
|
.body_ok(/.*/);
|
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2017-12-02 11:19:08 +01:00
|
|
|
beforeAll(function() {
|
2017-08-06 21:54:15 +02:00
|
|
|
let pkg = require('../fixtures/package')('test-nullstorage2');
|
|
|
|
pkg.dist.shasum = crypto.createHash('sha1').update(getBinary()).digest('hex');
|
2017-06-28 22:56:02 +02:00
|
|
|
return server2.putVersion('test-nullstorage2', '0.0.1', pkg)
|
2015-04-11 19:11:04 +02:00
|
|
|
.status(201)
|
2017-04-19 21:15:28 +02:00
|
|
|
.body_ok(/published/);
|
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
test('should upload a new version for test-nullstorage2', () => {/* test for before() */});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
test('should fetch the newly created published tarball for test-nullstorage2', () => {
|
2017-06-28 22:56:02 +02:00
|
|
|
return server.getTarball('test-nullstorage2', 'blahblah')
|
2015-04-11 19:11:04 +02:00
|
|
|
.status(200)
|
2017-04-19 21:15:28 +02:00
|
|
|
.then(function(body) {
|
2017-08-06 21:54:15 +02:00
|
|
|
assert.deepEqual(body, getBinary());
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
|
|
|
});
|
2014-08-08 03:08:41 +02:00
|
|
|
|
2018-02-24 11:41:36 +01:00
|
|
|
test('should check whether the metadata for test-nullstorage2 match', () => {
|
2017-06-28 22:56:02 +02:00
|
|
|
return server.getPackage('test-nullstorage2')
|
2015-04-11 19:11:04 +02:00
|
|
|
.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
|
|
|
}
|