|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- import {
- beforeAll,
- afterAll,
- afterEach,
- beforeEach,
- describe,
- expect,
- it, vi,
- } from 'vitest';
- import {
- tmpdir
- } from 'os';
- import {
- mkdtemp,
- rm,
- writeFile,
- } from 'fs/promises';
- import {
- join
- } from 'path';
- import {request} from 'http';
- import {constants} from 'http2';
- import {Backend} from '../../../src/backend';
- import { application, resource, validation as v, Resource } from '../../../src/common';
- import { autoIncrement } from '../../fixtures';
- import { createTestClient, TestClient, DummyDataSource } from '../../utils';
- import {DataSource} from '../../../src/backend/data-source';
-
- const PORT = 4001;
- const HOST = '127.0.0.1';
- const BASE_PATH = '/api';
- const ACCEPT = 'application/json';
- const ACCEPT_LANGUAGE = 'en';
- const ACCEPT_CHARSET = 'utf-8';
- const CONTENT_TYPE_CHARSET = 'utf-8';
- const CONTENT_TYPE = ACCEPT;
-
- describe('error handling', () => {
- let client: TestClient;
- beforeEach(() => {
- client = createTestClient({
- host: HOST,
- port: PORT,
- })
- .acceptMediaType(ACCEPT)
- .acceptLanguage(ACCEPT_LANGUAGE)
- .acceptCharset(ACCEPT_CHARSET)
- .contentType(CONTENT_TYPE)
- .contentCharset(CONTENT_TYPE_CHARSET);
- });
-
- describe('on internal errors', () => {
- 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;
- beforeAll(() => {
- Piano = resource(v.object(
- {
- brand: v.string()
- },
- v.never()
- ))
- .name('Piano' as const)
- .route('pianos' as const)
- .id('id' as const, {
- generationStrategy: autoIncrement,
- serialize: (id) => id?.toString() ?? '0',
- deserialize: (id) => Number.isFinite(Number(id)) ? Number(id) : 0,
- schema: v.number(),
- });
- });
-
- let dataSource: DataSource;
- let backend: Backend;
- let server: ReturnType<Backend['createHttpServer']>;
- beforeEach(() => {
- const app = application({
- name: 'piano-service',
- })
- .resource(Piano);
-
- dataSource = new DummyDataSource();
-
- backend = app.createBackend({
- dataSource,
- });
-
- server = backend.createHttpServer({
- basePath: BASE_PATH
- });
-
- 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.skip('serving collections', () => {
- beforeEach(() => {
- Piano.canFetchCollection();
- return new Promise((resolve) => {
- setTimeout(() => {
- resolve();
- });
- });
- });
-
- afterEach(() => {
- Piano.canFetchCollection(false);
- });
-
- it('throws on query', async () => {
- const [res] = await client({
- method: 'GET',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano Collection');
- });
-
- it('throws on HEAD method', async () => {
- const [res] = await client({
- method: 'HEAD',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano Collection');
- });
- });
-
- 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();
- return new Promise((resolve) => {
- setTimeout(() => {
- resolve();
- });
- });
- });
-
- afterEach(() => {
- Piano.canFetchItem(false);
- });
-
- it('throws on query', async () => {
- const [res] = await client({
- method: 'GET',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano');
- });
-
- it('throws on HEAD method', async () => {
- const [res] = await client({
- method: 'HEAD',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano');
- });
-
- it('throws on item not found', async () => {
- const getById = vi.spyOn(DummyDataSource.prototype, 'getById');
- getById.mockResolvedValueOnce(null as never);
-
- const [res] = await client({
- method: 'GET',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- });
-
- it('throws on item not found on HEAD method', async () => {
- const getById = vi.spyOn(DummyDataSource.prototype, 'getById');
- getById.mockResolvedValueOnce(null as never);
-
- const [res] = await client({
- method: 'HEAD',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- });
- });
-
- 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('throws on error assigning ID', async () => {
- const [res] = await client({
- method: 'POST',
- path: `${BASE_PATH}/pianos`,
- body: newData,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Assign ID From Piano Data Source');
- });
-
- it('throws on error creating resource', async () => {
- const getById = vi.spyOn(DummyDataSource.prototype, 'newId');
- getById.mockResolvedValueOnce(data.id as never);
-
- const [res] = await client({
- method: 'POST',
- path: `${BASE_PATH}/pianos`,
- body: newData,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Create Piano');
- });
- });
-
- describe.skip('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('throws on item to patch not found', () => {
- return new Promise<void>((resolve, reject) => {
- const req = request(
- {
- host: HOST,
- port: PORT,
- path: `${BASE_PATH}/pianos/2`,
- method: 'PATCH',
- headers: {
- 'Accept': ACCEPT,
- 'Accept-Language': ACCEPT_LANGUAGE,
- 'Content-Type': `${CONTENT_TYPE}; charset="${CONTENT_TYPE_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.write(JSON.stringify(newData));
- req.end();
- });
- });
- });
-
- describe.skip('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);
- });
- });
-
- 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();
- backend.throwsErrorOnDeletingNotFound();
- });
-
- afterEach(() => {
- Piano.canDelete(false);
- backend.throwsErrorOnDeletingNotFound(false);
- });
-
- it('throws on unable to check if item exists', async () => {
- const [res] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano');
- });
-
- it('throws on item not found', async () => {
- const getById = vi.spyOn(DummyDataSource.prototype, 'getById');
- getById.mockResolvedValueOnce(null as never);
-
- const [res] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- expect(res).toHaveProperty('statusMessage', 'Delete Non-Existing Piano');
- });
-
- it('throws on unable to delete item', async () => {
- const getById = vi.spyOn(DummyDataSource.prototype, 'getById');
- getById.mockResolvedValueOnce({
- id: 2
- } as never);
-
- const [res] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/2`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Delete Piano');
- });
- });
- });
- });
|