2018-06-17 13:34:59 +02:00
|
|
|
import endPointAPI from '../../../src/api/index';
|
2018-06-28 18:33:37 +02:00
|
|
|
import {API_ERROR} from '../../../src/lib/constants';
|
2017-04-19 21:15:28 +02:00
|
|
|
|
2018-06-28 18:33:37 +02:00
|
|
|
import express from 'express';
|
|
|
|
import request from 'request';
|
|
|
|
import rimraf from 'rimraf';
|
|
|
|
import config from '../partials/config/index';
|
2014-12-22 18:58:25 +01: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;
|
2014-12-22 18:58:25 +01:00
|
|
|
|
2017-11-01 17:47:20 +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 18:58:25 +01:00
|
|
|
|
2018-04-21 18:36:06 +02:00
|
|
|
beforeAll(async function(done) {
|
2017-11-01 17:47:20 +01:00
|
|
|
|
2019-02-24 23:20:25 +01:00
|
|
|
app.use(await endPointAPI(config()));
|
2014-12-22 18:58:25 +01:00
|
|
|
|
|
|
|
server.listen(0, function() {
|
2017-04-19 21:15:28 +02:00
|
|
|
port = server.address().port;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-12-22 18:58:25 +01:00
|
|
|
|
2017-11-01 17:47:20 +01:00
|
|
|
afterAll((done) => {
|
|
|
|
server.close(done);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('server should respond on /', done => {
|
2014-12-22 18:58:25 +01:00
|
|
|
request({
|
|
|
|
url: 'http://localhost:' + port + '/',
|
|
|
|
}, function(err, res, body) {
|
2018-06-28 18:33:37 +02:00
|
|
|
expect(err).toBeNull();
|
2018-09-06 21:26:54 +02:00
|
|
|
expect(body).toMatch(/Verdaccio/);
|
2017-04-19 21:15:28 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-12-22 18:58:25 +01:00
|
|
|
|
2019-03-04 23:39:33 +01:00
|
|
|
test('server should respond on /___not_found_package', done => {
|
2014-12-22 18:58:25 +01:00
|
|
|
request({
|
2019-03-04 23:39:33 +01:00
|
|
|
url: `http://localhost:${port}/___not_found_package`,
|
2014-12-22 18:58:25 +01:00
|
|
|
}, function(err, res, body) {
|
2018-06-28 18:33:37 +02:00
|
|
|
expect(err).toBeNull();
|
|
|
|
expect(body).toMatch(API_ERROR.NO_PACKAGE);
|
2017-04-19 21:15:28 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|