|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- import {
- beforeAll,
- afterAll,
- afterEach,
- beforeEach,
- describe,
- expect,
- it, vi,
- } from 'vitest';
- import {constants} from 'http2';
- import {Backend} from '../../../src/backend';
- import {application, resource, validation as v, Resource, Application, Delta} from '../../../src/common';
- import { autoIncrement } from '../../fixtures';
- import {createTestClient, TestClient, DummyDataSource, DummyError} 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 Piano: Resource;
- let app: Application;
- let dataSource: DataSource;
- let backend: Backend;
- let server: ReturnType<Backend['createHttpServer']>;
- let client: TestClient;
-
- 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(),
- });
-
- app = application({
- name: 'piano-service',
- })
- .resource(Piano);
-
- dataSource = new DummyDataSource();
-
- backend = app.createBackend({
- dataSource,
- });
-
- server = backend.createHttpServer({
- basePath: BASE_PATH
- });
-
- client = createTestClient({
- host: HOST,
- port: PORT,
- })
- .acceptMediaType(ACCEPT)
- .acceptLanguage(ACCEPT_LANGUAGE)
- .acceptCharset(ACCEPT_CHARSET)
- .contentType(CONTENT_TYPE)
- .contentCharset(CONTENT_TYPE_CHARSET);
-
- return new Promise((resolve, reject) => {
- server.on('error', (err) => {
- reject(err);
- });
-
- server.on('listening', () => {
- resolve();
- });
-
- server.listen({
- port: PORT
- });
- });
- });
-
- afterAll(() => new Promise<void>((resolve, reject) => {
- server.close((err) => {
- if (err) {
- reject(err);
- }
-
- resolve();
- });
- }));
-
- describe('serving collections', () => {
- beforeEach(() => {
- Piano.canFetchCollection();
- });
-
- afterEach(() => {
- Piano.canFetchCollection(false);
- });
-
- it('throws on query', async () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getMultiple')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getMultiple')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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', () => {
- beforeEach(() => {
- Piano.canFetchItem();
- });
-
- afterEach(() => {
- Piano.canFetchItem(false);
- });
-
- it('throws on query', async () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, '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 newData = {
- brand: 'K. Kawai'
- };
-
- const existingResource = {
- ...newData,
- id: 1,
- };
-
- beforeEach(() => {
- Piano.canCreate();
- });
-
- afterEach(() => {
- Piano.canCreate(false);
- });
-
- it('throws on error assigning ID', async () => {
- vi
- .spyOn(DummyDataSource.prototype, 'newId')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, 'newId')
- .mockResolvedValueOnce(existingResource.id as never);
-
- vi
- .spyOn(DummyDataSource.prototype, 'create')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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('patching items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const newData = {
- brand: 'K. Kawai'
- };
-
- // TODO add more tests
-
- it('throws on unable to fetch existing item', async () => {
- Piano.canPatch();
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: newData,
- headers: {
- 'content-type': 'application/merge-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Fetch Piano');
- Piano.canPatch(false);
- });
-
- it('throws on item to patch not found', async () => {
- Piano.canPatch();
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(null as never);
-
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: newData,
- headers: {
- 'content-type': 'application/merge-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NOT_FOUND);
- expect(res).toHaveProperty('statusMessage', 'Patch Non-Existing Piano');
- Piano.canPatch(false);
- });
-
- describe('on merge patch', () => {
- const newMergeData = {
- brand: 'K. Kawai'
- };
-
- beforeEach(() => {
- Piano.canPatch(['merge']);
- });
-
- afterEach(() => {
- Piano.canPatch(false);
- });
-
- it('throws on attempting to request a delta patch', async () => {
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: newMergeData,
- headers: {
- 'content-type': 'application/json-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE);
- expect(res).toHaveProperty('statusMessage', 'Invalid Piano Patch Type');
- });
- });
-
- describe('on delta patch', () => {
- beforeEach(() => {
- Piano.canPatch(['delta']);
- });
-
- afterEach(() => {
- Piano.canPatch(false);
- });
-
- it('throws on attempting to request a merge patch', async () => {
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: { brand: 'Hello' },
- headers: {
- 'content-type': 'application/merge-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE);
- expect(res).toHaveProperty('statusMessage', 'Invalid Piano Patch Type');
- });
-
- it('throws on operating with a delta to an attribute outside the schema', async () => {
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: [
- {
- op: 'replace',
- path: 'brandUnknown',
- value: 'K. Kawai',
- },
- ] satisfies Delta[],
- headers: {
- 'content-type': 'application/json-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_UNPROCESSABLE_ENTITY);
- expect(res).toHaveProperty('statusMessage', 'Invalid Piano Patch');
- });
-
- it('throws on operating a delta with mismatched value type', async () => {
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: [
- {
- op: 'replace',
- path: 'brand',
- value: 5,
- },
- ] satisfies Delta[],
- headers: {
- 'content-type': 'application/json-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_UNPROCESSABLE_ENTITY);
- expect(res).toHaveProperty('statusMessage', 'Invalid Piano Patch');
- });
-
- it.skip('throws on performing an invalid delta', async () => {
- const [res] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: [
- {
- op: 'add',
- path: 'brand',
- value: 5,
- },
- ] satisfies Delta[],
- headers: {
- 'content-type': 'application/json-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_UNPROCESSABLE_ENTITY);
- expect(res).toHaveProperty('statusMessage', 'Invalid Piano Patch');
- });
- });
- });
-
- describe.skip('emplacing items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(existingResource as never);
- });
-
- const newData = {
- id: 1,
- brand: 'K. Kawai'
- };
-
- beforeEach(() => {
- Piano.canEmplace();
- });
-
- afterEach(() => {
- Piano.canEmplace(false);
- });
- });
-
- describe('deleting items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(() => {
- Piano.canDelete();
- backend.throwsErrorOnDeletingNotFound();
- });
-
- afterEach(() => {
- Piano.canDelete(false);
- backend.throwsErrorOnDeletingNotFound(false);
- });
-
- it('throws on unable to check if item exists', async () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(null as never);
-
- const [res] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- 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 () => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(existingResource as never);
-
- vi
- .spyOn(DummyDataSource.prototype, 'delete')
- .mockImplementationOnce(() => { throw new DummyError() });
-
- const [res] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_INTERNAL_SERVER_ERROR);
- expect(res).toHaveProperty('statusMessage', 'Unable To Delete Piano');
- });
- });
- });
|