2022-01-09 20:51:50 +01:00
|
|
|
import express from 'express';
|
|
|
|
import request from 'request';
|
|
|
|
import rimraf from 'rimraf';
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2022-01-09 20:51:50 +01:00
|
|
|
import endPointAPI from '../../../src/api/index';
|
|
|
|
import { API_ERROR } from '../../../src/lib/constants';
|
2019-07-16 08:40:01 +02:00
|
|
|
import { setup } from '../../../src/lib/logger';
|
2022-01-09 20:51:50 +01:00
|
|
|
import config from '../partials/config/index';
|
2019-07-16 08:40:01 +02:00
|
|
|
|
2021-03-14 08:42:46 +01:00
|
|
|
setup([{ type: 'stdout', format: 'pretty', level: 'trace' }]);
|
2019-07-16 08:40:01 +02:00
|
|
|
|
2017-11-01 17:47:20 +01:00
|
|
|
const app = express();
|
|
|
|
const server = require('http').createServer(app);
|
|
|
|
|
|
|
|
describe('basic system test', () => {
|
2017-04-19 21:15:28 +02:00
|
|
|
let port;
|
2019-07-08 09:20:16 +02:00
|
|
|
jest.setTimeout(20000);
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2021-03-14 08:42:46 +01:00
|
|
|
beforeAll(function (done) {
|
2017-07-02 00:05:58 +02:00
|
|
|
rimraf(__dirname + '/store/test-storage', done);
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2023-01-19 00:09:24 +01:00
|
|
|
beforeAll(async function () {
|
2019-02-24 23:20:25 +01:00
|
|
|
app.use(await endPointAPI(config()));
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2023-01-19 00:09:24 +01:00
|
|
|
await new Promise((resolve) => {
|
|
|
|
server.listen(0, function () {
|
|
|
|
port = server.address().port;
|
|
|
|
resolve();
|
|
|
|
});
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
|
|
|
});
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2017-11-01 17:47:20 +01:00
|
|
|
afterAll((done) => {
|
|
|
|
server.close(done);
|
|
|
|
});
|
|
|
|
|
2022-03-04 21:08:18 +01:00
|
|
|
// TODO: recieve aborted call [Error: aborted], please review
|
|
|
|
test.skip('server should respond on /', (done) => {
|
2021-03-14 08:42:46 +01:00
|
|
|
request(
|
|
|
|
{
|
2021-10-24 10:15:54 +02:00
|
|
|
url: 'http://localhost:' + port + '/',
|
|
|
|
timeout: 6000,
|
2021-03-14 08:42:46 +01:00
|
|
|
},
|
|
|
|
function (err, res, body) {
|
2021-10-24 10:15:54 +02:00
|
|
|
// TEMP: figure out why is flacky, pls remove when is stable.
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log('server should respond on / error', err);
|
2021-03-14 08:42:46 +01:00
|
|
|
expect(err).toBeNull();
|
|
|
|
expect(body).toMatch(/Verdaccio/);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
2022-01-09 20:31:26 +01:00
|
|
|
}, 10000);
|
2014-12-22 20:58:25 +03:00
|
|
|
|
2021-03-14 08:42:46 +01:00
|
|
|
test('server should respond on /___not_found_package', (done) => {
|
|
|
|
request(
|
|
|
|
{
|
2021-10-24 10:15:54 +02:00
|
|
|
url: `http://localhost:${port}/___not_found_package`,
|
2021-03-14 08:42:46 +01:00
|
|
|
},
|
|
|
|
function (err, res, body) {
|
|
|
|
expect(err).toBeNull();
|
|
|
|
expect(body).toMatch(API_ERROR.NO_PACKAGE);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
2022-01-09 20:31:26 +01:00
|
|
|
}, 10000);
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|