1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/basic_system.spec.js
Juan Picado @jotadeveloper e5caa71d35
refactor: storage is async
allows storage to initalize whether a async call is required on start up.
2018-04-21 18:36:06 +02:00

54 lines
1.2 KiB
JavaScript

import endPointAPI from '../../src/api/index';
const assert = require('assert');
const express = require('express');
const request = require('request');
const rimraf = require('rimraf');
const config = require('./partials/config');
const app = express();
const server = require('http').createServer(app);
describe('basic system test', () => {
let port;
beforeAll(function(done) {
rimraf(__dirname + '/store/test-storage', done);
});
beforeAll(async function(done) {
app.use(await endPointAPI(config));
server.listen(0, function() {
port = server.address().port;
done();
});
});
afterAll((done) => {
server.close(done);
});
test('server should respond on /', done => {
request({
url: 'http://localhost:' + port + '/',
}, function(err, res, body) {
assert.equal(err, null);
assert(body.match(/<title>Verdaccio<\/title>/));
done();
});
});
test('server should respond on /whatever', done => {
request({
url: 'http://localhost:' + port + '/whatever',
}, function(err, res, body) {
assert.equal(err, null);
assert(body.match(/no such package available/));
done();
});
});
});