-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: configure unit tests with jest runner and add unit tests for Nu…
…tripatrol wrapper (#540) * test: configure unit tests with jest runner * test: add unit tests for nutripatrol wrapper * chore: improve tsconfig to ignore test files
- Loading branch information
Showing
25 changed files
with
2,707 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { Config } from "@jest/types"; | ||
|
||
const config: Config.InitialOptions = { | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
roots: ["<rootDir>/tests"], | ||
verbose: true, | ||
transform: { | ||
"^.+\\.tsx?$": "ts-jest", | ||
}, | ||
testMatch: ["**/tests/**/*.spec.ts"], | ||
coverageDirectory: "coverage", | ||
coverageReporters: ["text", "lcov"], | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,8 @@ | |
"lint": "prettier --check . && eslint .", | ||
"format": "prettier --write .", | ||
"fix": "standard --fix", | ||
"test": "mocha test/**/*.ts" | ||
"test": "jest", | ||
"test:coverage": "jest --coverage" | ||
}, | ||
"standard": { | ||
"env": [ | ||
|
@@ -55,18 +56,19 @@ | |
"devDependencies": { | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@types/chai": "^4.3.11", | ||
"@types/mocha": "^10.0.6", | ||
"@jest/globals": "^29.7.0", | ||
"@types/jest": "^29.5.14", | ||
"@typescript-eslint/eslint-plugin": "^7.0.0", | ||
"@typescript-eslint/parser": "^7.8.0", | ||
"chai": "^4.3.10", | ||
"eslint": "^9.1.1", | ||
"formdata-node": "^6.0.3", | ||
"mocha": "^10.2.0", | ||
"jest": "^29.7.0", | ||
"openapi-typescript": "^6.7.4", | ||
"prettier": "^3.1.1", | ||
"ts-jest": "^29.2.5", | ||
"ts-node": "^10.9.2", | ||
"typedoc": "^0.26.10", | ||
"typescript": "^5.3.3" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,283 @@ | ||
import { Flag, NutriPatrol, Ticket } from "../src/nutripatrol"; | ||
import { NutriPatrolError } from "../src/error"; | ||
|
||
describe("NutriPatrol Wrapper", () => { | ||
let fetchMock: jest.Mock; | ||
let client: NutriPatrol; | ||
|
||
beforeEach(() => { | ||
fetchMock = jest.fn(); | ||
global.fetch = fetchMock; | ||
client = new NutriPatrol(fetchMock); | ||
}); | ||
|
||
afterEach(() => { | ||
jest.resetAllMocks(); | ||
}); | ||
|
||
afterAll(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
const mockResponse = (data: any, ok = true, status = 200) => { | ||
return { | ||
ok, | ||
status, | ||
headers: { | ||
get: (header: string) => { | ||
const headers: { [key: string]: string } = { | ||
"Content-Type": "application/json", | ||
}; | ||
return headers[header]; | ||
}, | ||
}, | ||
json: async () => data, | ||
clone: () => ({ json: async () => data }), | ||
}; | ||
}; | ||
|
||
describe("Flags", () => { | ||
it("should fetch flags successfully", async () => { | ||
const data = { flags: [{ id: 1 }] }; | ||
fetchMock.mockResolvedValue(mockResponse(data)); | ||
|
||
const result = await client.getFlags(); | ||
expect(result).toEqual([{ id: 1 }]); | ||
}); | ||
|
||
it("should handle error when fetching flags", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 500)); | ||
|
||
const result = await client.getFlags(); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(500); | ||
}); | ||
|
||
it("should fetch a flag by ID successfully", async () => { | ||
const data = { __data__: { id: 1, name: "Test Flag" } }; | ||
fetchMock.mockResolvedValue(mockResponse(data)); | ||
|
||
const result = await client.getFlagById(1); | ||
expect(result).toEqual(data.__data__); | ||
}); | ||
|
||
it("should handle error when fetching a flag by ID", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 404)); | ||
|
||
const result = await client.getFlagById(1); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(404); | ||
}); | ||
|
||
it("should handle error when fetching a flag by a wrong ID", async () => { | ||
const data = { | ||
detail: [ | ||
{ | ||
type: "int_parsing", | ||
loc: [ | ||
"path", | ||
"ticket_id" | ||
], | ||
msg: "Input should be a valid integer, unable to parse string as an integer", | ||
input: "a", | ||
url: "https://errors.pydantic.dev/2.9/v/int_parsing" | ||
} | ||
] | ||
} | ||
fetchMock.mockResolvedValue(mockResponse(data, false, 422)); | ||
|
||
const result = await client.getFlagById("wrong-id" as any); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(422); | ||
expect((result as NutriPatrolError).error.details[0]).toBe("Input should be a valid integer, unable to parse string as an integer"); | ||
}); | ||
|
||
it("should create a flag successfully", async () => { | ||
const flagData: Flag = { | ||
barcode: "barcode-test", | ||
type: "product", | ||
url: "url-test", | ||
image_id: "1", | ||
flavor: "off", | ||
created_at: "2024-10-12T15:49:28.485Z", | ||
user_id: "1", | ||
source: "web" | ||
}; | ||
fetchMock.mockResolvedValue(mockResponse(flagData)); | ||
|
||
const result = await client.createFlag(flagData); | ||
expect(result).toEqual(flagData); | ||
}); | ||
|
||
it("should handle error when creating a flag", async () => { | ||
const data = { | ||
detail: [ | ||
{ | ||
type: "enum", | ||
loc: [ | ||
"body", | ||
"type" | ||
], | ||
msg: "Input should be 'product', 'image' or 'search'", | ||
input: "producst", | ||
ctx: { | ||
expected: "'product', 'image' or 'search'" | ||
}, | ||
url: "https://errors.pydantic.dev/2.9/v/enum" | ||
} | ||
] | ||
} | ||
fetchMock.mockResolvedValue(mockResponse(data, false, 422)); | ||
|
||
const flagData: Flag = { | ||
barcode: "barcode-test", | ||
type: "product", | ||
url: "url-test", | ||
image_id: "1", | ||
flavor: "off", | ||
created_at: "2024-10-12T15:49:28.485Z", | ||
user_id: "1", | ||
source: "web" | ||
};; | ||
const result = await client.createFlag(flagData); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(422); | ||
expect((result as NutriPatrolError).error.details[0]).toBe("Input should be 'product', 'image' or 'search'"); | ||
}); | ||
|
||
it("should fetch flags by ticket batch successfully", async () => { | ||
const data = { ticket_id_to_flags: { "1": [{ id: 1, name: "Test Flag" }] } }; | ||
fetchMock.mockResolvedValue(mockResponse(data)); | ||
|
||
const result = await client.getFlagsByTicketBatch([1]); | ||
expect(result).toEqual(data.ticket_id_to_flags); | ||
}); | ||
|
||
it("should handle error when fetching flags by ticket batch", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 500)); | ||
|
||
const result = await client.getFlagsByTicketBatch([1]); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(500); | ||
}); | ||
}); | ||
|
||
describe("Tickets", () => { | ||
|
||
it("should fetch tickets successfully", async () => { | ||
const data = { tickets: [{ id: 1, status: "open" }] }; | ||
fetchMock.mockResolvedValue(mockResponse(data)); | ||
|
||
const result = await client.getTickets({ status: "open" }); | ||
expect(result).toEqual(data.tickets); | ||
}); | ||
|
||
it("should handle error when fetching tickets", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 404)); | ||
|
||
const result = await client.getTickets({ status: "open" }); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(404); | ||
}); | ||
|
||
it("should fetch a ticket by ID successfully", async () => { | ||
const ticketData: Ticket = { | ||
id: 1, | ||
barcode: "barcode-test", | ||
type: "image", | ||
url: "url-test", | ||
status: "open", | ||
image_id: "2", | ||
flavor: "off", | ||
created_at: "2024-03-25T14:33:41.785848" | ||
}; | ||
fetchMock.mockResolvedValue(mockResponse(ticketData)); | ||
|
||
const result = await client.getTicketById(1); | ||
expect(result).toEqual(ticketData); | ||
}); | ||
|
||
it("should handle error when fetching a ticket by ID", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 500)); | ||
|
||
const result = await client.getTicketById(1); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(500); | ||
}); | ||
|
||
it("should create a ticket successfully", async () => { | ||
const ticketData: Omit<Ticket, "id"> = { | ||
type: "product", | ||
barcode: "barcode-test", | ||
url: "url-test", | ||
status: "open", | ||
image_id: "1", | ||
flavor: "off" | ||
}; | ||
fetchMock.mockResolvedValue(mockResponse(ticketData)); | ||
|
||
const result = await client.createTicket(ticketData); | ||
expect(result).toEqual(ticketData); | ||
}); | ||
|
||
it("should handle error when creating a ticket", async () => { | ||
const data = { | ||
detail: [ | ||
{ | ||
type: "enum", | ||
loc: [ | ||
"body", | ||
"status" | ||
], | ||
msg: "Input should be 'open' or 'closed'", | ||
input: "opsen", | ||
ctx: { | ||
"expected": "'open' or 'closed'" | ||
}, | ||
url: "https://errors.pydantic.dev/2.9/v/enum" | ||
} | ||
] | ||
} | ||
|
||
fetchMock.mockResolvedValue(mockResponse(data, false, 422)); | ||
|
||
const ticketData: Ticket = { status: "opsen" } as any; | ||
const result = await client.createTicket(ticketData); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(422); | ||
expect((result as NutriPatrolError).error.details[0]).toBe("Input should be 'open' or 'closed'"); | ||
}); | ||
|
||
it("should update a ticket status successfully", async () => { | ||
const updatedTicketData: Ticket = { | ||
id: 1, | ||
barcode: "barcode-test", | ||
type: "product", | ||
url: "url-test", | ||
status: "open", | ||
image_id: "1", | ||
flavor: "off" | ||
}; | ||
fetchMock.mockResolvedValue(mockResponse(updatedTicketData)); | ||
|
||
const result = await client.updateTicketStatus(1, "closed"); | ||
expect(result).toEqual(updatedTicketData); | ||
}); | ||
|
||
it("should handle error when updating a ticket status", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 404)); | ||
|
||
const result = await client.updateTicketStatus(1, "closed"); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(404); | ||
}); | ||
}); | ||
|
||
describe("API Status", () => { | ||
it("should get API status successfully", async () => { | ||
const data = { status: "ok" }; | ||
fetchMock.mockResolvedValue(mockResponse(data)); | ||
|
||
const result = await client.getApiStatus(); | ||
expect(result).toEqual(data); | ||
}); | ||
|
||
it("should handle error when getting API status", async () => { | ||
fetchMock.mockResolvedValue(mockResponse(null, false, 500)); | ||
|
||
const result = await client.getApiStatus(); | ||
expect((result as NutriPatrolError).error.statusCode).toBe(500); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
{ | ||
"compilerOptions": { | ||
"paths": { | ||
"$schemas/*": [ | ||
"./src/schemas/*" | ||
], | ||
"$schemas/*": ["./src/schemas/*"] | ||
}, | ||
"forceConsistentCasingInFileNames": true, | ||
"target": "ES2015", | ||
"rootDir": "./src", | ||
"module": "CommonJS", | ||
"lib": [ | ||
"ES2022", | ||
"DOM" | ||
], | ||
"lib": ["ES2022", "DOM"], | ||
"declaration": true, | ||
"outDir": "./dist", | ||
"strict": true, | ||
"esModuleInterop": true | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"dist", | ||
"test" | ||
], | ||
"exclude": ["node_modules", "dist", "tests", "jest.config.ts"] | ||
} |
Oops, something went wrong.