mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
558d78f32a
* feat: flexible template generator and manifest * chore: add changeset * chore: restore dep * chore: add docs * chore: update snapshots * chore: update docker examples for v5 * chore: refactor web module * chore: format * chore: refactor web api endpoints * test: add test for user login web * chore: refactor endpoints * chore: fix merge * chore: fix merge * Update ci.yml * chore: test * chore: add static * chore: update script * chore: fix e2e * chore: fix method * docs: update v5 relative docker example * chore: update html render * chore: update style * Update .prettierignore * chore: update changeset * chore: use pnpm6 on run test temporary ci * chore: drop node 16 for pnpm 6 * chore: update ci * chore: update ci * chore: update ci * chore: update ci * chore: remove circle ci * chore: better url prefix handling * chore: format code * chore: remove test node 10 * docs: add docker v5 relative revers proxy example * chore: use base html tag * chore: update test
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import path from 'path';
|
|
import express from 'express';
|
|
import request from 'request';
|
|
|
|
import { API_ERROR } from '@verdaccio/commons-api';
|
|
import { parseConfigFile } from '@verdaccio/config';
|
|
import { setup } from '@verdaccio/logger';
|
|
|
|
import endPointAPI from '../../src';
|
|
|
|
setup([{ type: 'stdout', format: 'pretty', level: 'trace' }]);
|
|
|
|
const app = express();
|
|
const server = require('http').createServer(app);
|
|
|
|
const parseConfigurationFile = (conf) => {
|
|
return path.join(__dirname, `./${conf}`);
|
|
};
|
|
|
|
// TODO: restore when web module is ready
|
|
describe.skip('basic system test', () => {
|
|
let port;
|
|
jest.setTimeout(20000);
|
|
|
|
beforeAll(async function (done) {
|
|
const config = parseConfigFile(parseConfigurationFile('basic.yaml'));
|
|
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) {
|
|
expect(err).toBeNull();
|
|
expect(body).toMatch(/Verdaccio/);
|
|
done();
|
|
}
|
|
);
|
|
});
|
|
|
|
test('server should respond on /___not_found_package', (done) => {
|
|
request(
|
|
{
|
|
json: true,
|
|
url: `http://localhost:${port}/___not_found_package`,
|
|
},
|
|
function (err, res, body) {
|
|
expect(err).toBeNull();
|
|
expect(body.error).toMatch(API_ERROR.NO_PACKAGE);
|
|
done();
|
|
}
|
|
);
|
|
});
|
|
});
|