|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660 |
- import {
- beforeAll,
- afterAll,
- afterEach,
- beforeEach,
- describe,
- expect,
- it,
- test,
- } from 'vitest';
- import {
- tmpdir
- } from 'os';
- import {
- mkdtemp,
- rm,
- writeFile,
- } from 'fs/promises';
- import {
- join
- } from 'path';
- import {request, Server} from 'http';
- import {constants} from 'http2';
- import {DataSource} from '../../src/backend/data-source';
- import { dataSources } from '../../src/backend';
- import { application, resource, validation as v, Resource, charsets, mediaTypes } from '../../src';
-
- const PORT = 3000;
- const HOST = 'localhost';
- const ACCEPT_CHARSET = charsets.utf8.name;
- const ACCEPT = mediaTypes.applicationJson.name;
-
- const autoIncrement = async (dataSource: DataSource) => {
- const data = await dataSource.getMultiple() as Record<string, string>[];
-
- const highestId = data.reduce<number>(
- (highestId, d) => (Number(d.id) > highestId ? Number(d.id) : highestId),
- -Infinity
- );
-
- if (Number.isFinite(highestId)) {
- return (highestId + 1);
- }
-
- return 1;
- };
-
- describe('yasumi', () => {
- let baseDir: string;
- beforeAll(async () => {
- try {
- baseDir = await mkdtemp(join(tmpdir(), 'yasumi-'));
- } catch {
- // noop
- }
- });
- afterAll(async () => {
- try {
- await rm(baseDir, {
- recursive: true,
- });
- } catch {
- // noop
- }
- });
-
- let Piano: Resource;
- beforeEach(() => {
- Piano = resource(v.object(
- {
- brand: v.string()
- },
- v.never()
- ))
- .name('Piano' as const)
- .route('pianos' as const)
- .id('id' as const, {
- generationStrategy: autoIncrement as any,
- serialize: (id) => id?.toString() ?? '0',
- deserialize: (id) => Number.isFinite(Number(id)) ? Number(id) : 0,
- schema: v.number(),
- });
- });
-
- let server: Server;
- beforeEach(() => {
- const app = application({
- name: 'piano-service',
- })
- .mediaType(mediaTypes.applicationJson)
- .charset(charsets.utf8)
- .resource(Piano);
-
- const backend = app
- .createBackend({
- dataSource: (resource) => new dataSources.jsonlFile.DataSource(resource, baseDir),
- })
- .throws404OnDeletingNotFound();
-
- server = backend.createServer({
- basePath: '/api'
- });
-
- return new Promise((resolve, reject) => {
- server.on('error', (err) => {
- reject(err);
- });
-
- server.on('listening', () => {
- resolve();
- });
-
- server.listen({
- port: PORT
- });
- });
- });
-
- afterEach(() => new Promise((resolve, reject) => {
- server.close((err) => {
- if (err) {
- reject(err);
- }
-
- resolve();
- });
- }));
-
- describe('serving collections', () => {
- beforeEach(() => {
- Piano.canFetchCollection();
- });
-
- afterEach(() => {
- Piano.canFetchCollection(false);
- });
-
- it('returns data', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos',
- method: 'GET',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Accept-Language': 'en',
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual([]);
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.end();
- });
- });
- });
-
- describe('serving items', () => {
- const data = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(async () => {
- const resourcePath = join(baseDir, 'pianos.jsonl');
- await writeFile(resourcePath, JSON.stringify(data));
- });
-
- beforeEach(() => {
- Piano.canFetchItem();
- });
-
- afterEach(() => {
- Piano.canFetchItem(false);
- });
-
- it('returns data', () => {
- return new Promise<void>((resolve, reject) => {
- // TODO all responses should have serialized ids
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos/1',
- method: 'GET',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual(data);
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.end();
- });
- });
-
- it('throws on item not found', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos/2',
- method: 'GET',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- },
- },
- (res) => {
- res.on('error', (err) => {
- Piano.canFetchItem(false);
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- resolve();
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.end();
- });
- });
- });
-
- describe('creating items', () => {
- const data = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const newData = {
- brand: 'K. Kawai'
- };
-
- beforeEach(async () => {
- const resourcePath = join(baseDir, 'pianos.jsonl');
- await writeFile(resourcePath, JSON.stringify(data));
- });
-
- beforeEach(() => {
- Piano.canCreate();
- });
-
- afterEach(() => {
- Piano.canCreate(false);
- });
-
- it('returns data', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos',
- method: 'POST',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Content-Type': ACCEPT,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_CREATED);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual({
- ...newData,
- id: 2
- });
-
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.write(JSON.stringify(newData));
- req.end();
- });
- });
- });
-
- describe('patching items', () => {
- const data = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const newData = {
- brand: 'K. Kawai'
- };
-
- beforeEach(async () => {
- const resourcePath = join(baseDir, 'pianos.jsonl');
- await writeFile(resourcePath, JSON.stringify(data));
- });
-
- beforeEach(() => {
- Piano.canPatch();
- });
-
- afterEach(() => {
- Piano.canPatch(false);
- });
-
- it('returns data', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: `/api/pianos/${data.id}`,
- method: 'PATCH',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Content-Type': ACCEPT,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual({
- ...data,
- ...newData,
- });
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.write(JSON.stringify(newData));
- req.end();
- });
- });
-
- it('throws on item to patch not found', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos/2',
- method: 'PATCH',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Content-Type': ACCEPT,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- resolve();
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.write(JSON.stringify(newData));
- req.end();
- });
- });
- });
-
- describe('emplacing items', () => {
- const data = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const newData = {
- id: 1,
- brand: 'K. Kawai'
- };
-
- beforeEach(async () => {
- const resourcePath = join(baseDir, 'pianos.jsonl');
- await writeFile(resourcePath, JSON.stringify(data));
- });
-
- beforeEach(() => {
- Piano.canEmplace();
- });
-
- afterEach(() => {
- Piano.canEmplace(false);
- });
-
- it('returns data for replacement', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: `/api/pianos/${newData.id}`,
- method: 'PUT',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Content-Type': ACCEPT,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual(newData);
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.write(JSON.stringify(newData));
- req.end();
- });
- });
-
- it('returns data for creation', () => {
- return new Promise<void>((resolve, reject) => {
- const id = 2;
-
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: `/api/pianos/${id}`,
- method: 'PUT',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- 'Content-Type': ACCEPT,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_CREATED);
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- let resBuffer = Buffer.from('');
- res.on('data', (c) => {
- resBuffer = Buffer.concat([resBuffer, c]);
- });
-
- res.on('close', () => {
- const resBufferJson = resBuffer.toString(ACCEPT_CHARSET);
- const resData = JSON.parse(resBufferJson);
- expect(resData).toEqual({
- ...newData,
- id,
- });
- resolve();
- });
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.write(JSON.stringify({
- ...newData,
- id,
- }));
- req.end();
- });
- });
- });
-
- describe('deleting items', () => {
- const data = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(async () => {
- const resourcePath = join(baseDir, 'pianos.jsonl');
- await writeFile(resourcePath, JSON.stringify(data));
- });
-
- beforeEach(() => {
- Piano.canDelete();
- });
-
- afterEach(() => {
- Piano.canDelete(false);
- });
-
- it('returns data', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: `/api/pianos/${data.id}`,
- method: 'DELETE',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- resolve();
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.end();
- });
- });
-
- it('throws on item not found', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: '/api/pianos/2',
- method: 'DELETE',
- headers: {
- 'Accept': `${ACCEPT}; charset="${ACCEPT_CHARSET}"`,
- },
- },
- (res) => {
- res.on('error', (err) => {
- reject(err);
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- resolve();
- },
- );
-
- req.on('error', (err) => {
- reject(err);
- });
-
- req.end();
- });
- });
- });
-
- // https://github.com/mayajs/maya/blob/main/test/index.test.ts
- //
- // peak unit test
- describe("Contribute to see a unit test", () => {
- test("should have a unit test", () => {
- expect("Is this a unit test?").not.toEqual("Yes this is a unit test.");
- });
- });
- });
|