|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- import {
- beforeAll,
- afterAll,
- afterEach,
- beforeEach,
- describe,
- expect,
- it,
- vi,
- } from 'vitest';
- import {constants} from 'http2';
- import {Backend, DataSource} from '@modal-sh/yasumi/backend';
- import {
- application,
- resource,
- validation as v,
- Resource,
- Application,
- } from '@modal-sh/yasumi';
- import {createTestClient, DummyDataSource, dummyGenerationStrategy, TEST_LANGUAGE, TestClient} from '../utils';
- import {httpExtender, HttpServer} from '../../src';
-
- const PORT = 3000;
- 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;
-
- const prepareStatusMessage = (s: string) => s.replace(/\$RESOURCE/g, 'Piano');
-
- describe('happy path', () => {
- let Piano: Resource;
- let app: Application;
- let dataSource: DataSource;
- let backend: Backend;
- let server: HttpServer;
- 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: dummyGenerationStrategy,
- serialize: (id) => id?.toString() ?? '0',
- deserialize: (id) => Number.isFinite(Number(id)) ? Number(id) : 0,
- schema: v.number(),
- });
-
- app = application({
- name: 'piano-service',
- })
- .language(TEST_LANGUAGE)
- .resource(Piano);
-
- dataSource = new DummyDataSource();
-
- backend = app
- .createBackend({
- dataSource,
- })
- .use(httpExtender);
-
- server = backend.createServer('http', {
- 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('querying collections', () => {
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getMultiple')
- .mockResolvedValueOnce([] as never);
- });
-
- beforeEach(() => {
- Piano.canFetchCollection();
- });
-
- afterEach(() => {
- Piano.canFetchCollection(false);
- });
-
- it('returns data', async () => {
- // const [res, resData] = await client({
- // method: 'QUERY',
- // path: `${BASE_PATH}/pianos`,
- // headers: {
- // 'content-type': 'application/x-www-form-urlencoded',
- // },
- // body: 'foo=bar',
- // });
-
- const [res, resData] = await client({
- method: 'POST',
- path: `${BASE_PATH}/pianos`,
- headers: {
- 'content-type': 'application/x-www-form-urlencoded',
- 'x-original-method': 'QUERY',
- },
- body: 'foo=bar',
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceCollectionFetched));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual([]);
- });
- });
-
- describe('serving collections', () => {
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getMultiple')
- .mockResolvedValueOnce([] as never);
- });
-
- beforeEach(() => {
- Piano.canFetchCollection();
- });
-
- afterEach(() => {
- Piano.canFetchCollection(false);
- });
-
- it('returns data', async () => {
- const [res, resData] = await client({
- method: 'GET',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceCollectionFetched));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual([]);
- });
-
- it('returns data on HEAD method', async () => {
- const [res] = await client({
- method: 'HEAD',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceCollectionFetched));
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('GET');
- expect(allowedMethods).toContain('HEAD');
- });
- });
-
- describe('serving items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(existingResource as never);
- });
-
- beforeEach(() => {
- Piano.canFetchItem();
- });
-
- afterEach(() => {
- Piano.canFetchItem(false);
- });
-
- it('returns data', async () => {
- const [res, resData] = await client({
- method: 'GET',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceFetched));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual(existingResource);
- });
-
- it('returns data on HEAD method', async () => {
- const [res] = await client({
- method: 'HEAD',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceFetched));
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('GET');
- expect(allowedMethods).toContain('HEAD');
- });
- });
-
- describe('creating items', () => {
- const newResourceData = {
- brand: 'K. Kawai'
- };
-
- const responseData = {
- id: 2,
- ...newResourceData,
- };
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'newId')
- .mockResolvedValueOnce(responseData.id as never);
- });
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'create')
- .mockResolvedValueOnce(responseData as never);
- });
-
- beforeEach(() => {
- Piano.canCreate();
- });
-
- afterEach(() => {
- Piano.canCreate(false);
- });
-
- it('returns data', async () => {
- const [res, resData] = await client({
- path: `${BASE_PATH}/pianos`,
- method: 'POST',
- body: newResourceData,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_CREATED);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceCreated));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
- expect(res.headers).toHaveProperty('location', `${BASE_PATH}/pianos/2`);
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual({
- ...newResourceData,
- id: 2
- });
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('POST');
- });
- });
-
- describe('patching items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const patchData = {
- brand: 'K. Kawai'
- };
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(existingResource as never);
- });
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'patch')
- .mockResolvedValueOnce({
- ...existingResource,
- ...patchData,
- } as never);
- });
-
- beforeEach(() => {
- Piano.canPatch();
- });
-
- afterEach(() => {
- Piano.canPatch(false);
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('PATCH');
- const acceptPatch = res.headers['accept-patch']?.split(',').map((s) => s.trim()) ?? [];
- expect(acceptPatch).toContain('application/json-patch+json');
- expect(acceptPatch).toContain('application/merge-patch+json');
- });
-
- describe('on merge', () => {
- beforeEach(() => {
- Piano.canPatch(false).canPatch(['merge']);
- });
-
- it('returns data', async () => {
- const [res, resData] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: patchData,
- headers: {
- 'content-type': 'application/merge-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourcePatched));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual({
- ...existingResource,
- ...patchData,
- });
- });
- });
-
- describe('on delta', () => {
- beforeEach(() => {
- Piano.canPatch(false).canPatch(['delta']);
- });
-
- it('returns data', async () => {
- const [res, resData] = await client({
- method: 'PATCH',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- body: [
- {
- op: 'replace',
- path: 'brand',
- value: patchData.brand,
- },
- ],
- headers: {
- 'content-type': 'application/json-patch+json',
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourcePatched));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual({
- ...existingResource,
- ...patchData,
- });
- });
- });
- });
-
- describe('emplacing items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- const emplaceResourceData = {
- id: 1,
- brand: 'K. Kawai'
- };
-
- beforeEach(() => {
- Piano.canEmplace();
- });
-
- afterEach(() => {
- Piano.canEmplace(false);
- });
-
- it('returns data for replacement', async () => {
- vi
- .spyOn(DummyDataSource.prototype, 'emplace')
- .mockResolvedValueOnce([{
- ...existingResource,
- ...emplaceResourceData,
- }, false] as never);
-
- const [res, resData] = await client({
- method: 'PUT',
- path: `${BASE_PATH}/pianos/${emplaceResourceData.id}`,
- body: emplaceResourceData,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_OK);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceReplaced));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual(emplaceResourceData);
- });
-
- it('returns data for creation', async () => {
- const newId = 2;
-
- vi
- .spyOn(DummyDataSource.prototype, 'emplace')
- .mockResolvedValueOnce([{
- ...existingResource,
- ...emplaceResourceData,
- id: newId
- }, true] as never);
-
- const [res, resData] = await client({
- method: 'PUT',
- path: `${BASE_PATH}/pianos/${newId}`,
- body: {
- ...emplaceResourceData,
- id: newId,
- },
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_CREATED);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceCreated));
- expect(res.headers).toHaveProperty('content-type', expect.stringContaining(ACCEPT));
- expect(res.headers).toHaveProperty('location', `${BASE_PATH}/pianos/${newId}`);
-
- if (typeof resData === 'undefined') {
- expect.fail('Response body must be defined.');
- return;
- }
-
- expect(resData).toEqual({
- ...emplaceResourceData,
- id: newId,
- });
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('PUT');
- });
- });
-
- describe('deleting items', () => {
- const existingResource = {
- id: 1,
- brand: 'Yamaha'
- };
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'getById')
- .mockResolvedValueOnce(existingResource as never);
- });
-
- beforeEach(() => {
- vi
- .spyOn(DummyDataSource.prototype, 'delete')
- .mockReturnValueOnce(Promise.resolve() as never);
- });
-
- beforeEach(() => {
- Piano.canDelete();
- });
-
- afterEach(() => {
- Piano.canDelete(false);
- });
-
- it('responds', async () => {
- const [res, resData] = await client({
- method: 'DELETE',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.resourceDeleted));
- expect(res.headers).not.toHaveProperty('content-type');
- expect(resData).toBeUndefined();
- });
-
- it('returns options', async () => {
- const [res] = await client({
- method: 'OPTIONS',
- path: `${BASE_PATH}/pianos/${existingResource.id}`,
- });
-
- expect(res).toHaveProperty('statusCode', constants.HTTP_STATUS_NO_CONTENT);
- expect(res).toHaveProperty('statusMessage', prepareStatusMessage(TEST_LANGUAGE.statusMessages.provideOptions));
- const allowedMethods = res.headers.allow?.split(',').map((s) => s.trim()) ?? [];
- expect(allowedMethods).toContain('DELETE');
- });
- });
- });
|