feat: added tests for getFileById method. fix: refactor getApiResponse and TryToGetMessage methods in ApiResponseFactory class to be able to return the proper string message when the responseType passed to axios was 'stream'
This commit is contained in:
@@ -0,0 +1,185 @@
|
|||||||
|
import { OnspringClient } from '../../src/index';
|
||||||
|
import { expect } from 'chai';
|
||||||
|
import { baseURL, apiKey } from '../mochaRootHooks';
|
||||||
|
|
||||||
|
describe('getFileById', function () {
|
||||||
|
this.timeout(30000);
|
||||||
|
this.retries(3);
|
||||||
|
|
||||||
|
it('should return a file in an attachment field', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_RECORD === undefined) {
|
||||||
|
expect.fail('TEST_RECORD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const recordId = parseInt(process.env.TEST_RECORD);
|
||||||
|
const fieldId = parseInt(process.env.TEST_ATTACHMENT_FIELD);
|
||||||
|
const fileId = parseInt(process.env.TEST_ATTACHMENT);
|
||||||
|
|
||||||
|
const response = await client.getFileById(recordId, fieldId, fileId);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(200);
|
||||||
|
expect(response.isSuccessful).to.be.true;
|
||||||
|
expect(response.message).to.equal('');
|
||||||
|
expect(response.data).to.not.be.null;
|
||||||
|
|
||||||
|
if (response.data != null) {
|
||||||
|
expect(response.data.contentLength).to.not.be.null;
|
||||||
|
expect(response.data.contentType).to.not.be.null;
|
||||||
|
expect(response.data.fileName).to.not.be.null;
|
||||||
|
expect(response.data.stream).to.not.be.null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a file in an image field', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_RECORD === undefined) {
|
||||||
|
expect.fail('TEST_RECORD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_IMAGE_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_IMAGE_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_IMAGE === undefined) {
|
||||||
|
expect.fail('TEST_IMAGE is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const recordId = parseInt(process.env.TEST_RECORD);
|
||||||
|
const fieldId = parseInt(process.env.TEST_IMAGE_FIELD);
|
||||||
|
const fileId = parseInt(process.env.TEST_IMAGE);
|
||||||
|
const response = await client.getFileById(recordId, fieldId, fileId);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(200);
|
||||||
|
expect(response.isSuccessful).to.be.true;
|
||||||
|
expect(response.message).to.equal('');
|
||||||
|
expect(response.data).to.not.be.null;
|
||||||
|
|
||||||
|
if (response.data != null) {
|
||||||
|
expect(response.data.contentLength).to.not.be.null;
|
||||||
|
expect(response.data.contentType).to.not.be.null;
|
||||||
|
expect(response.data.fileName).to.not.be.null;
|
||||||
|
expect(response.data.stream).to.not.be.null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 400 response when fieldId is not for a file field', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_RECORD === undefined) {
|
||||||
|
expect.fail('TEST_RECORD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_TEXT_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_TEXT_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const recordId = parseInt(process.env.TEST_RECORD);
|
||||||
|
const fieldId = parseInt(process.env.TEST_TEXT_FIELD);
|
||||||
|
const fileId = parseInt(process.env.TEST_ATTACHMENT);
|
||||||
|
const response = await client.getFileById(recordId, fieldId, fileId);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(400);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.not.be.null.and.not.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 401 response when the api key is invalid', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, 'invalid');
|
||||||
|
|
||||||
|
if (process.env.TEST_RECORD === undefined) {
|
||||||
|
expect.fail('TEST_RECORD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const recordId = parseInt(process.env.TEST_RECORD);
|
||||||
|
const fieldId = parseInt(process.env.TEST_ATTACHMENT_FIELD);
|
||||||
|
const fileId = parseInt(process.env.TEST_ATTACHMENT);
|
||||||
|
const response = await client.getFileById(recordId, fieldId, fileId);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(401);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 403 response when the api key does not have access to the file field', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT_FIELD_NO_ACCESS_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT_FIELD_NO_ACCESS_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const fieldId = parseInt(process.env.TEST_ATTACHMENT_FIELD_NO_ACCESS_FIELD);
|
||||||
|
const response = await client.getFileById(1, fieldId, 1);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(403);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.not.be.null.and.to.not.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 403 response when the api key does not have access to the app where the file is held', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT_FIELD_NO_ACCESS_APP === undefined) {
|
||||||
|
expect.fail('EST_ATTACHMENT_FIELD_NO_ACCESS_APP is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const fieldId = parseInt(process.env.TEST_ATTACHMENT_FIELD_NO_ACCESS_APP);
|
||||||
|
const response = await client.getFileById(1, fieldId, 1);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(403);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.not.be.null.and.to.not.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 404 response when the file field cannot be found', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
const response = await client.getFileById(1, 0, 1);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(404);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.not.be.null.and.to.not.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a 404 response when the file record cannot be found', async function () {
|
||||||
|
const client = new OnspringClient(baseURL, apiKey);
|
||||||
|
|
||||||
|
if (process.env.TEST_ATTACHMENT_FIELD === undefined) {
|
||||||
|
expect.fail('TEST_ATTACHMENT_FIELD is not defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
const fieldId = parseInt(process.env.TEST_ATTACHMENT_FIELD);
|
||||||
|
const response = await client.getFileById(0, fieldId, 1);
|
||||||
|
|
||||||
|
expect(response.statusCode).to.equal(404);
|
||||||
|
expect(response.isSuccessful).to.be.false;
|
||||||
|
expect(response.message).to.not.be.null.and.to.not.be.undefined;
|
||||||
|
expect(response.data).to.be.null;
|
||||||
|
});
|
||||||
|
});
|
||||||
+1
-1
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.14.0"
|
"node": ">=12.0.0"
|
||||||
},
|
},
|
||||||
"main": "dist/cjs/index.js",
|
"main": "dist/cjs/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { type AxiosResponse } from 'axios';
|
import { type AxiosResponse } from 'axios';
|
||||||
import { HttpStatusCode } from '../enums/HttpStatusCode';
|
import { HttpStatusCode } from '../enums/HttpStatusCode';
|
||||||
import { ApiResponse } from './ApiResponse';
|
import { ApiResponse } from './ApiResponse';
|
||||||
|
import { type Readable } from 'stream';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @class ApiResponseFactory - Factory class for creating ApiResponse objects
|
* @class ApiResponseFactory - Factory class for creating ApiResponse objects
|
||||||
@@ -9,10 +10,12 @@ export class ApiResponseFactory {
|
|||||||
/**
|
/**
|
||||||
* @method getApiResponse - Creates an ApiResponse object from an AxiosResponse object
|
* @method getApiResponse - Creates an ApiResponse object from an AxiosResponse object
|
||||||
* @param {AxiosResponse} response - The AxiosResponse object that will be used to create the ApiResponse object
|
* @param {AxiosResponse} response - The AxiosResponse object that will be used to create the ApiResponse object
|
||||||
* @returns {ApiResponse<T>} - An ApiResponse object of type T
|
* @returns {Promise<ApiResponse<T>>} - A promise that resolves to an ApiResponse object
|
||||||
*/
|
*/
|
||||||
public static getApiResponse<T>(response: AxiosResponse): ApiResponse<T> {
|
public static async getApiResponse<T>(
|
||||||
const message = this.TryToGetMessage(response);
|
response: AxiosResponse
|
||||||
|
): Promise<ApiResponse<T>> {
|
||||||
|
const message = await this.TryToGetMessage(response);
|
||||||
|
|
||||||
if (this.isSuccessStatusCode(response.status) === true) {
|
if (this.isSuccessStatusCode(response.status) === true) {
|
||||||
return new ApiResponse<T>(response.status, message, response.data);
|
return new ApiResponse<T>(response.status, message, response.data);
|
||||||
@@ -24,24 +27,53 @@ export class ApiResponseFactory {
|
|||||||
/**
|
/**
|
||||||
* @method TryToGetMessage - Attempts to get the message from the response data
|
* @method TryToGetMessage - Attempts to get the message from the response data
|
||||||
* @param {AxiosResponse} response - The AxiosResponse object that will be used to get the message
|
* @param {AxiosResponse} response - The AxiosResponse object that will be used to get the message
|
||||||
* @returns {string} - The message from the response data
|
* @returns {Promise<string>} - A promise that resolves to the message
|
||||||
*/
|
*/
|
||||||
private static TryToGetMessage(response: AxiosResponse): string {
|
private static async TryToGetMessage(
|
||||||
|
response: AxiosResponse
|
||||||
|
): Promise<string> {
|
||||||
if (
|
if (
|
||||||
response.status === HttpStatusCode.Unauthorized ||
|
response.status === HttpStatusCode.Unauthorized ||
|
||||||
response.status === HttpStatusCode.Forbidden ||
|
response.status === HttpStatusCode.Forbidden ||
|
||||||
response.status === HttpStatusCode.NotFound
|
response.status === HttpStatusCode.NotFound
|
||||||
) {
|
) {
|
||||||
|
if (response.config.responseType === 'stream') {
|
||||||
|
const dataString = await this.getStreamDataAsString(response.data);
|
||||||
|
const dataObject =
|
||||||
|
dataString.length > 0 ? JSON.parse(dataString) : '{}';
|
||||||
|
return dataObject.message;
|
||||||
|
}
|
||||||
|
|
||||||
return response.data?.message;
|
return response.data?.message;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.isSuccessStatusCode(response.status) === false) {
|
if (this.isSuccessStatusCode(response.status) === false) {
|
||||||
|
if (response.config.responseType === 'stream') {
|
||||||
|
const data = response.data as Readable;
|
||||||
|
return await this.getStreamDataAsString(data);
|
||||||
|
}
|
||||||
|
|
||||||
return JSON.stringify(response.data);
|
return JSON.stringify(response.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static async getStreamDataAsString(
|
||||||
|
stream: Readable
|
||||||
|
): Promise<string> {
|
||||||
|
const chunks = [] as Buffer[];
|
||||||
|
|
||||||
|
for await (const chunk of stream) {
|
||||||
|
chunks.push(chunk);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Buffer.concat(chunks).toString('utf-8');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @method isSuccessStatusCode - Determines if the specified status code is a success status code
|
* @method isSuccessStatusCode - Determines if the specified status code is a success status code
|
||||||
* @param {number} statusCode - The status code that will be used to determine if it is a success status code
|
* @param {number} statusCode - The status code that will be used to determine if it is a success status code
|
||||||
|
|||||||
@@ -252,7 +252,7 @@ export class OnspringClient {
|
|||||||
responseType: 'stream',
|
responseType: 'stream',
|
||||||
});
|
});
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse<any>(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse<any>(response);
|
||||||
|
|
||||||
if (apiResponse.isSuccessful === false) {
|
if (apiResponse.isSuccessful === false) {
|
||||||
return apiResponse;
|
return apiResponse;
|
||||||
@@ -511,7 +511,7 @@ export class OnspringClient {
|
|||||||
config: AxiosRequestConfig = {}
|
config: AxiosRequestConfig = {}
|
||||||
): Promise<ApiResponse<T>> {
|
): Promise<ApiResponse<T>> {
|
||||||
const response = await this._client.get(endpoint, config);
|
const response = await this._client.get(endpoint, config);
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse<T>(response);
|
||||||
return apiResponse;
|
return apiResponse;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -528,7 +528,7 @@ export class OnspringClient {
|
|||||||
config: AxiosRequestConfig = {}
|
config: AxiosRequestConfig = {}
|
||||||
): Promise<ApiResponse<T>> {
|
): Promise<ApiResponse<T>> {
|
||||||
const response = await this._client.post(endpoint, data, config);
|
const response = await this._client.post(endpoint, data, config);
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse<T>(response);
|
||||||
return apiResponse;
|
return apiResponse;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -545,7 +545,7 @@ export class OnspringClient {
|
|||||||
config: AxiosRequestConfig = {}
|
config: AxiosRequestConfig = {}
|
||||||
): Promise<ApiResponse<T>> {
|
): Promise<ApiResponse<T>> {
|
||||||
const response = await this._client.put(endpoint, data, config);
|
const response = await this._client.put(endpoint, data, config);
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse<T>(response);
|
||||||
return apiResponse;
|
return apiResponse;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -560,7 +560,7 @@ export class OnspringClient {
|
|||||||
config: AxiosRequestConfig = {}
|
config: AxiosRequestConfig = {}
|
||||||
): Promise<ApiResponse<T>> {
|
): Promise<ApiResponse<T>> {
|
||||||
const response = await this._client.delete(endpoint, config);
|
const response = await this._client.delete(endpoint, config);
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse<T>(response);
|
||||||
return apiResponse;
|
return apiResponse;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(ApiResponseFactory.getApiResponse).to.have.lengthOf(1);
|
expect(ApiResponseFactory.getApiResponse).to.have.lengthOf(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object when request is successful', function () {
|
it('should return an ApiResponse object when request is successful', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: null,
|
data: null,
|
||||||
status: 200,
|
status: 200,
|
||||||
@@ -25,7 +25,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -36,7 +36,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object without a message value when request is forbidden and the response does not contain a message property', function () {
|
it('should return an ApiResponse object without a message value when request is forbidden and the response does not contain a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: null,
|
data: null,
|
||||||
status: 403,
|
status: 403,
|
||||||
@@ -45,7 +45,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -56,7 +56,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object when request is forbidden and the response contains a message property', function () {
|
it('should return an ApiResponse object when request is forbidden and the response contains a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: {
|
data: {
|
||||||
message: 'Does not have permission to access this resource.',
|
message: 'Does not have permission to access this resource.',
|
||||||
@@ -67,7 +67,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -80,7 +80,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object without a message value when request is not found and the response does not contain a message property', function () {
|
it('should return an ApiResponse object without a message value when request is not found and the response does not contain a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: null,
|
data: null,
|
||||||
status: 404,
|
status: 404,
|
||||||
@@ -89,7 +89,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -100,7 +100,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object with a message value when request is not found and the response contains a message property', function () {
|
it('should return an ApiResponse object with a message value when request is not found and the response contains a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: {
|
data: {
|
||||||
message: 'Resource not found.',
|
message: 'Resource not found.',
|
||||||
@@ -111,7 +111,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -122,7 +122,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object without a message value when request is unauthorized and the response does not contain a message property', function () {
|
it('should return an ApiResponse object without a message value when request is unauthorized and the response does not contain a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: null,
|
data: null,
|
||||||
status: 401,
|
status: 401,
|
||||||
@@ -131,7 +131,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -142,7 +142,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object with a message when request is unauthorized and the response contains a message property', function () {
|
it('should return an ApiResponse object with a message when request is unauthorized and the response contains a message property', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: {
|
data: {
|
||||||
message: 'Unauthorized.',
|
message: 'Unauthorized.',
|
||||||
@@ -153,7 +153,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
@@ -164,7 +164,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
expect(apiResponse.data).to.equal(null);
|
expect(apiResponse.data).to.equal(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return an ApiResponse object with a message when request is a bad request', function () {
|
it('should return an ApiResponse object with a message when request is a bad request', async function () {
|
||||||
const response: AxiosResponse = {
|
const response: AxiosResponse = {
|
||||||
data: {
|
data: {
|
||||||
field: 'Invalid input.',
|
field: 'Invalid input.',
|
||||||
@@ -175,7 +175,7 @@ describe('ApiResponseFactory', function () {
|
|||||||
config: {} as InternalAxiosRequestConfig,
|
config: {} as InternalAxiosRequestConfig,
|
||||||
};
|
};
|
||||||
|
|
||||||
const apiResponse = ApiResponseFactory.getApiResponse(response);
|
const apiResponse = await ApiResponseFactory.getApiResponse(response);
|
||||||
|
|
||||||
expect(apiResponse).to.not.be.undefined;
|
expect(apiResponse).to.not.be.undefined;
|
||||||
expect(apiResponse).to.have.property('statusCode');
|
expect(apiResponse).to.have.property('statusCode');
|
||||||
|
|||||||
Reference in New Issue
Block a user