136 lines
3.6 KiB
TypeScript
136 lines
3.6 KiB
TypeScript
// tslint:disable-next-line:no-implicit-dependencies
|
|
import { expect, tap } from '@push.rocks/tapbundle';
|
|
|
|
// helper dependencies
|
|
// tslint:disable-next-line:no-implicit-dependencies
|
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
|
|
import * as typedserver from '../ts/index.js';
|
|
|
|
let testServer: typedserver.servertools.Server;
|
|
let testRoute: typedserver.servertools.Route;
|
|
let testRoute2: typedserver.servertools.Route;
|
|
let testHandler: typedserver.servertools.Handler;
|
|
|
|
// =================
|
|
// Test class Server
|
|
// =================
|
|
|
|
tap.test('should create a valid Server', async () => {
|
|
testServer = new typedserver.servertools.Server({
|
|
cors: true,
|
|
domain: 'testing.git.zone',
|
|
forceSsl: false,
|
|
appVersion: 'v3.2.1',
|
|
manifest: {
|
|
name: 'Test App',
|
|
short_name: 'testapp',
|
|
start_url: '/',
|
|
display: 'standalone',
|
|
background_color: '#000',
|
|
theme_color: '#000',
|
|
scope: '/',
|
|
lang: 'en',
|
|
display_override: ['window-controls-overlay'],
|
|
},
|
|
feed: true,
|
|
sitemap: true,
|
|
robots: true,
|
|
});
|
|
expect(testServer).toBeInstanceOf(typedserver.servertools.Server);
|
|
});
|
|
|
|
// ================
|
|
// Test class Route
|
|
// ================
|
|
|
|
tap.test('should create a valid Route', async () => {
|
|
testRoute = testServer.addRoute('/someroute');
|
|
testRoute2 = testServer.addRoute('/someroute/*');
|
|
expect(testRoute).toBeInstanceOf(typedserver.servertools.Route);
|
|
});
|
|
|
|
// ==================
|
|
// Test class Handler
|
|
// ==================
|
|
|
|
tap.test('should produce a valid handler', async () => {
|
|
testHandler = new typedserver.servertools.Handler('POST', (request, response) => {
|
|
console.log('request body is:');
|
|
console.log(request.body);
|
|
response.send('hi');
|
|
});
|
|
expect(testHandler).toBeInstanceOf(typedserver.servertools.Handler);
|
|
});
|
|
|
|
tap.test('should add handler to route', async () => {
|
|
testRoute.addHandler(testHandler);
|
|
});
|
|
|
|
tap.test('should create a valid StaticHandler', async () => {
|
|
testRoute2.addHandler(
|
|
new typedserver.servertools.HandlerStatic(
|
|
smartpath.get.dirnameFromImportMetaUrl(import.meta.url)
|
|
)
|
|
);
|
|
});
|
|
|
|
tap.test('should add typedrequest and typedsocket', async () => {
|
|
const typedrequest = await import('@api.global/typedrequest');
|
|
|
|
const typedrouter = new typedrequest.TypedRouter();
|
|
testServer.addTypedRequest(typedrouter);
|
|
testServer.addTypedSocket(typedrouter);
|
|
});
|
|
|
|
// =====================
|
|
// start the server and test the configuration
|
|
// =====================
|
|
|
|
tap.test('should start the server allright', async () => {
|
|
await testServer.start(3000);
|
|
});
|
|
|
|
// see if a demo request holds up
|
|
tap.test('should issue a request', async (tools) => {
|
|
const response = await smartrequest.postJson('http://127.0.0.1:3000/someroute', {
|
|
headers: {
|
|
'X-Forwarded-Proto': 'https',
|
|
},
|
|
requestBody: {
|
|
someprop: 'hi',
|
|
},
|
|
});
|
|
console.log(response.body);
|
|
});
|
|
|
|
tap.test('should get a file from disk', async () => {
|
|
const response = await fetch('http://127.0.0.1:3000/someroute/testresponse.js');
|
|
console.log(response.status);
|
|
console.log(response.headers);
|
|
});
|
|
|
|
tap.test('should answer a preflight request', async () => {
|
|
const response = await fetch('http://127.0.0.1:3000/some/randompath/', {
|
|
method: 'OPTIONS',
|
|
});
|
|
console.log(response.headers);
|
|
});
|
|
|
|
tap.test('should exposer a sitemap', async () => {
|
|
const response = await fetch('http://127.0.0.1:3000/sitemap');
|
|
console.log(await response.text());
|
|
});
|
|
|
|
// ========
|
|
// clean up
|
|
// ========
|
|
|
|
tap.test('should stop the server', async () => {
|
|
await testServer.stop();
|
|
});
|
|
|
|
tap.start();
|