mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
132 lines
4.5 KiB
TypeScript
132 lines
4.5 KiB
TypeScript
import express from 'express';
|
|
import { JSDOM } from 'jsdom';
|
|
import path from 'path';
|
|
import supertest from 'supertest';
|
|
|
|
import { HEADERS, HEADER_TYPE, HTTP_STATUS } from '@verdaccio/core';
|
|
import { setup } from '@verdaccio/logger';
|
|
|
|
import { webMiddleware } from '../src';
|
|
import { getConf } from './_helper';
|
|
|
|
const pluginOptions = {
|
|
manifestFiles: {
|
|
js: ['runtime.js', 'vendors.js', 'main.js'],
|
|
},
|
|
staticPath: path.join(__dirname, 'static'),
|
|
manifest: require('./partials/manifest/manifest.json'),
|
|
};
|
|
|
|
const initializeServer = (configName: string, middlewares = {}) => {
|
|
const app = express();
|
|
app.use(webMiddleware(getConf(configName), middlewares, pluginOptions));
|
|
return app;
|
|
};
|
|
|
|
setup({});
|
|
|
|
describe('test web server', () => {
|
|
describe('render', () => {
|
|
describe('output', () => {
|
|
const render = async (config = 'default-test.yaml') => {
|
|
const response = await supertest(initializeServer(config))
|
|
.get('/')
|
|
.set('Accept', HEADERS.TEXT_HTML)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.TEXT_HTML_UTF8)
|
|
.expect(HTTP_STATUS.OK);
|
|
return new JSDOM(response.text, { runScripts: 'dangerously' });
|
|
};
|
|
|
|
const loadLogo = async (config = 'default-test.yaml', url) => {
|
|
return supertest(initializeServer(config)).get(url).expect(HTTP_STATUS.OK);
|
|
};
|
|
|
|
test('should match render set ui properties', async () => {
|
|
const {
|
|
window: { __VERDACCIO_BASENAME_UI_OPTIONS },
|
|
} = await render('web.yaml');
|
|
expect(__VERDACCIO_BASENAME_UI_OPTIONS).toEqual(
|
|
expect.objectContaining({
|
|
showInfo: true,
|
|
showSettings: true,
|
|
showThemeSwitch: true,
|
|
showFooter: true,
|
|
showSearch: true,
|
|
showDownloadTarball: true,
|
|
darkMode: false,
|
|
url_prefix: '/prefix',
|
|
basename: '/prefix/',
|
|
primaryColor: '#ffffff',
|
|
// FIXME: mock these values, avoid random
|
|
// base: 'http://127.0.0.1:60864/prefix/',
|
|
// version: '6.0.0-6-next.28',
|
|
logo: 'http://logo.org/logo.png',
|
|
flags: { changePassword: true },
|
|
login: true,
|
|
pkgManagers: ['pnpm', 'yarn'],
|
|
title: 'verdaccio web',
|
|
scope: '@scope',
|
|
language: 'es-US',
|
|
})
|
|
);
|
|
});
|
|
|
|
test('should render logo as file', async () => {
|
|
const {
|
|
window: { __VERDACCIO_BASENAME_UI_OPTIONS },
|
|
} = await render('file-logo.yaml');
|
|
expect(__VERDACCIO_BASENAME_UI_OPTIONS.logo).toMatch('/prefix/-/static/dark-logo.png');
|
|
return loadLogo('file-logo.yaml', '/-/static/dark-logo.png');
|
|
});
|
|
|
|
test('should not render logo as absolute file is wrong', async () => {
|
|
const {
|
|
window: { __VERDACCIO_BASENAME_UI_OPTIONS },
|
|
} = await render('wrong-logo.yaml');
|
|
expect(__VERDACCIO_BASENAME_UI_OPTIONS.logo).toEqual('');
|
|
});
|
|
|
|
test('should render not render a logo', async () => {
|
|
const {
|
|
window: { __VERDACCIO_BASENAME_UI_OPTIONS },
|
|
} = await render('no-logo.yaml');
|
|
expect(__VERDACCIO_BASENAME_UI_OPTIONS.logo).toEqual('');
|
|
});
|
|
|
|
test.todo('should default title');
|
|
test.todo('should need html cache');
|
|
});
|
|
|
|
describe('status', () => {
|
|
test('should return the http status 200 for root', async () => {
|
|
return supertest(await initializeServer('default-test.yaml'))
|
|
.get('/')
|
|
.set('Accept', HEADERS.TEXT_HTML)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.TEXT_HTML_UTF8)
|
|
.expect(HTTP_STATUS.OK);
|
|
});
|
|
|
|
test('should return the body for a package detail page', async () => {
|
|
return supertest(await initializeServer('default-test.yaml'))
|
|
.get('/-/web/section/some-package')
|
|
.set('Accept', HEADERS.TEXT_HTML)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.TEXT_HTML_UTF8)
|
|
.expect(HTTP_STATUS.OK);
|
|
});
|
|
|
|
test('should static file not found', async () => {
|
|
return supertest(await initializeServer('default-test.yaml'))
|
|
.get('/-/static/not-found.js')
|
|
.set('Accept', HEADERS.TEXT_HTML)
|
|
.expect(HTTP_STATUS.NOT_FOUND);
|
|
});
|
|
|
|
test('should static file found', async () => {
|
|
return supertest(await initializeServer('default-test.yaml'))
|
|
.get('/-/static/main.js')
|
|
.set('Accept', HEADERS.TEXT_HTML)
|
|
.expect(HTTP_STATUS.OK);
|
|
});
|
|
});
|
|
});
|
|
});
|