2017-12-02 05:19:08 -05:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2018-10-03 16:39:45 -05:00
|
|
|
import crypto from 'crypto';
|
2019-07-16 01:40:01 -05:00
|
|
|
import { readFile } from '../lib/test.utils';
|
2021-03-14 02:42:46 -05:00
|
|
|
import { HTTP_STATUS } from '../../../src/lib/constants';
|
|
|
|
import { TARBALL } from '../config.functional';
|
2019-07-16 01:40:01 -05:00
|
|
|
import { createTarballHash } from '../../../src/lib/crypto-utils';
|
|
|
|
import requirePackage from '../fixtures/package';
|
2017-08-06 14:54:15 -05:00
|
|
|
|
|
|
|
function getBinary() {
|
2017-12-02 05:19:08 -05:00
|
|
|
return readFile('../fixtures/binary');
|
2017-08-06 14:54:15 -05:00
|
|
|
}
|
|
|
|
|
2018-06-19 15:02:29 -05:00
|
|
|
const STORAGE = '../store/test-storage3';
|
2017-07-01 17:05:58 -05:00
|
|
|
const PKG_GH131 = 'pkg-gh131';
|
|
|
|
const PKG_GH1312 = 'pkg-gh1312';
|
|
|
|
|
|
|
|
function isCached(pkgName, tarballName) {
|
2019-07-16 01:40:01 -05:00
|
|
|
const pathCached = path.join(__dirname, STORAGE, pkgName, tarballName);
|
|
|
|
console.log('isCached =>', pathCached);
|
|
|
|
|
|
|
|
return fs.existsSync(pathCached);
|
2017-07-01 17:05:58 -05:00
|
|
|
}
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
export default function (server, server2, server3) {
|
|
|
|
describe('storage tarball cache test', () => {
|
2019-12-23 03:29:27 -05:00
|
|
|
// more info #131
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2017-07-01 17:05:58 -05:00
|
|
|
return server.addPackage(PKG_GH131);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2021-03-14 02:42:46 -05:00
|
|
|
return server
|
|
|
|
.putTarball(PKG_GH131, TARBALL, getBinary())
|
2018-06-19 15:02:29 -05:00
|
|
|
.status(HTTP_STATUS.CREATED)
|
2017-07-01 17:05:58 -05:00
|
|
|
.body_ok(/.*/);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2019-07-16 01:40:01 -05:00
|
|
|
const pkg = requirePackage(PKG_GH131);
|
2018-10-03 16:39:45 -05:00
|
|
|
pkg.dist.shasum = crypto.createHash('sha1').update(getBinary()).digest('hex');
|
2017-07-01 17:05:58 -05:00
|
|
|
|
2021-03-14 02:42:46 -05:00
|
|
|
return server
|
|
|
|
.putVersion(PKG_GH131, '0.0.1', pkg)
|
2018-06-19 15:02:29 -05:00
|
|
|
.status(HTTP_STATUS.CREATED)
|
2017-07-01 17:05:58 -05:00
|
|
|
.body_ok(/published/);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2018-06-19 15:02:29 -05:00
|
|
|
return server3.getPackage(PKG_GH131).status(HTTP_STATUS.OK);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2021-03-14 02:42:46 -05:00
|
|
|
return server3.getTarball(PKG_GH131, TARBALL).status(HTTP_STATUS.OK);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
test('should be caching packages from uplink server1', () => {
|
2018-10-03 16:39:45 -05:00
|
|
|
expect(isCached(PKG_GH131, TARBALL)).toEqual(true);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2017-07-01 17:05:58 -05:00
|
|
|
return server2.addPackage(PKG_GH1312);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2021-03-14 02:42:46 -05:00
|
|
|
return server2
|
|
|
|
.putTarball(PKG_GH1312, TARBALL, getBinary())
|
2018-06-19 15:02:29 -05:00
|
|
|
.status(HTTP_STATUS.CREATED)
|
2017-07-01 17:05:58 -05:00
|
|
|
.body_ok(/.*/);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2019-07-16 01:40:01 -05:00
|
|
|
const pkg = requirePackage(PKG_GH1312);
|
2018-08-21 01:05:34 -05:00
|
|
|
pkg.dist.shasum = createTarballHash().update(getBinary()).digest('hex');
|
2017-07-01 17:05:58 -05:00
|
|
|
|
2021-03-14 02:42:46 -05:00
|
|
|
return server2
|
|
|
|
.putVersion(PKG_GH1312, '0.0.1', pkg)
|
2018-06-19 15:02:29 -05:00
|
|
|
.status(HTTP_STATUS.CREATED)
|
2017-07-01 17:05:58 -05:00
|
|
|
.body_ok(/published/);
|
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2021-03-14 02:42:46 -05:00
|
|
|
return server3.getPackage(PKG_GH1312).status(HTTP_STATUS.OK);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
beforeAll(function () {
|
2021-03-14 02:42:46 -05:00
|
|
|
return server3.getTarball(PKG_GH1312, TARBALL).status(HTTP_STATUS.OK);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
|
2017-12-02 05:19:08 -05:00
|
|
|
test('must not be caching packages from uplink server2', () => {
|
2018-10-03 16:39:45 -05:00
|
|
|
expect(isCached(PKG_GH1312, TARBALL)).toEqual(false);
|
2017-07-01 17:05:58 -05:00
|
|
|
});
|
|
|
|
});
|
2017-12-02 05:19:08 -05:00
|
|
|
}
|