mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
import {createTarballHash} from "../../../src/lib/crypto-utils";
|
|
import {HTTP_STATUS} from "../../../src/lib/constants";
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import {TARBALL} from '../config.func';
|
|
|
|
function readfile(filePath) {
|
|
const folder = path.join(__dirname , filePath);
|
|
|
|
return fs.readFileSync(folder);
|
|
}
|
|
|
|
const binary = '../fixtures/binary';
|
|
const pkgName = 'testpkg-gh29';
|
|
|
|
export default function (server, server2) {
|
|
describe('pkg-gh29 #1', () => {
|
|
test('downloading non-existent tarball #1 / srv2', () => {
|
|
return server2.getTarball(pkgName, TARBALL)
|
|
.status(HTTP_STATUS.NOT_FOUND)
|
|
.body_error(/no such package/);
|
|
});
|
|
});
|
|
|
|
describe('pkg-gh29 #2', () => {
|
|
beforeAll(function() {
|
|
return server.putPackage(pkgName, require('../fixtures/package')(pkgName))
|
|
.status(HTTP_STATUS.CREATED)
|
|
.body_ok(/created new package/);
|
|
});
|
|
|
|
test('creating new package / srv1', () => {});
|
|
|
|
test('downloading non-existent tarball #2 / srv2', () => {
|
|
return server2.getTarball(pkgName, TARBALL)
|
|
.status(HTTP_STATUS.NOT_FOUND)
|
|
.body_error(/no such file available/);
|
|
});
|
|
|
|
describe('tarball', () => {
|
|
beforeAll(function() {
|
|
return server.putTarball(pkgName, TARBALL, readfile(binary))
|
|
.status(HTTP_STATUS.CREATED)
|
|
.body_ok(/.*/);
|
|
});
|
|
|
|
test('uploading new tarball / srv1', () => {});
|
|
|
|
describe('pkg version', () => {
|
|
beforeAll(function() {
|
|
const pkg = require('../fixtures/package')(pkgName);
|
|
pkg.dist.shasum = createTarballHash().update(readfile(binary)).digest('hex');
|
|
return server.putVersion(pkgName, '0.0.1', pkg)
|
|
.status(HTTP_STATUS.CREATED)
|
|
.body_ok(/published/);
|
|
});
|
|
|
|
test('uploading new package version / srv1', () => {});
|
|
|
|
test('downloading newly created tarball / srv2', () => {
|
|
return server2.getTarball(pkgName, TARBALL)
|
|
.status(HTTP_STATUS.OK)
|
|
.then(function(body) {
|
|
expect(body).toEqual(readfile(binary));
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|