1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/package/scoped.spec.js
2018-01-07 07:59:36 +00:00

76 lines
2.3 KiB
JavaScript

import assert from 'assert';
import {generateSha} from '../lib/test.utils';
export default function(server, server2) {
describe('test-scoped', () => {
beforeAll(function() {
return server.request({
uri: '/@test%2fscoped',
headers: {
'content-type': 'application/json',
},
method: 'PUT',
json: require('./scoped.json'),
}).status(201);
});
test('should publish scope package', () => {});
describe('should get scoped packages tarball', () => {
const uploadScopedTarBall = (server) => {
return server.getTarball('@test/scoped', 'scoped-1.0.0.tgz')
.status(200)
.then(function(body) {
// not real sha due to utf8 conversion
assert.strictEqual(generateSha(body),
'6e67b14e2c0e450b942e2bc8086b49e90f594790');
});
};
test('should be a scoped tarball from server1', () => {
return uploadScopedTarBall(server);
});
test('should be a scoped tarball from server2', () => {
return uploadScopedTarBall(server2);
});
});
describe('should retrieve scoped packages', () => {
const testScopePackage = (server, port) => server.getPackage('@test/scoped')
.status(200)
.then(function(body) {
assert.equal(body.name, '@test/scoped');
assert.equal(body.versions['1.0.0'].name, '@test/scoped');
assert.equal(body.versions['1.0.0'].dist.tarball,
`http://localhost:${port}/@test%2fscoped/-/scoped-1.0.0.tgz`);
assert.deepEqual(body['dist-tags'], {latest: '1.0.0'});
});
test('scoped package on server1', () => {
return testScopePackage(server, '55551');
});
test('scoped package on server2', () => {
return testScopePackage(server2, '55552');
});
});
describe('should retrieve a scoped packages under nginx', () => {
test('should work nginx workaround', () => {
return server2.request({
uri: '/@test/scoped/1.0.0'
}).status(200)
.then(function(body) {
assert.equal(body.name, '@test/scoped');
assert.equal(body.dist.tarball,
'http://localhost:55552/@test%2fscoped/-/scoped-1.0.0.tgz');
});
});
});
});
}