Use `vitest` for backend tests: - `bench` script now uses [vitest's `bench`](https://vitest.dev/api/#bench) - e2e test fails with same error happening now with jest:`data-testid` attribute not present. vitest left, jest right <img width="1264" height="603" alt="image" src="https://github.com/user-attachments/assets/56fc43a6-e143-4208-bf14-7e016aae7fa9" />
120 lines
3.1 KiB
JavaScript
120 lines
3.1 KiB
JavaScript
import axios from "axios";
|
|
import MockAdapter from "axios-mock-adapter";
|
|
import { afterEach, describe, expect, it } from "vitest";
|
|
|
|
import { fetchGist } from "../src/fetchers/gist.js";
|
|
|
|
import "@testing-library/jest-dom/vitest";
|
|
|
|
const gist_data = {
|
|
data: {
|
|
viewer: {
|
|
gist: {
|
|
description:
|
|
"List of countries and territories in English and Spanish: name, continent, capital, dial code, country codes, TLD, and area in sq km. Lista de países y territorios en Inglés y Español: nombre, continente, capital, código de teléfono, códigos de país, dominio y área en km cuadrados. Updated 2023",
|
|
owner: {
|
|
login: "Yizack",
|
|
},
|
|
stargazerCount: 33,
|
|
forks: {
|
|
totalCount: 11,
|
|
},
|
|
files: [
|
|
{
|
|
name: "countries.json",
|
|
language: {
|
|
name: "JSON",
|
|
},
|
|
size: 85858,
|
|
},
|
|
{
|
|
name: "territories.txt",
|
|
language: {
|
|
name: "Text",
|
|
},
|
|
size: 87858,
|
|
},
|
|
{
|
|
name: "countries_spanish.json",
|
|
language: {
|
|
name: "JSON",
|
|
},
|
|
size: 85858,
|
|
},
|
|
{
|
|
name: "territories_spanish.txt",
|
|
language: {
|
|
name: "Text",
|
|
},
|
|
size: 87858,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const gist_not_found_data = {
|
|
data: {
|
|
viewer: {
|
|
gist: null,
|
|
},
|
|
},
|
|
};
|
|
|
|
const gist_errors_data = {
|
|
errors: [
|
|
{
|
|
message: "Some test GraphQL error",
|
|
},
|
|
],
|
|
};
|
|
|
|
const mock = new MockAdapter(axios);
|
|
|
|
afterEach(() => {
|
|
mock.reset();
|
|
});
|
|
|
|
describe("Test fetchGist", () => {
|
|
it("should fetch gist correctly", async () => {
|
|
mock.onPost("https://api.github.com/graphql").reply(200, gist_data);
|
|
|
|
let gist = await fetchGist("bbfce31e0217a3689c8d961a356cb10d");
|
|
|
|
expect(gist).toStrictEqual({
|
|
name: "countries.json",
|
|
nameWithOwner: "Yizack/countries.json",
|
|
description:
|
|
"List of countries and territories in English and Spanish: name, continent, capital, dial code, country codes, TLD, and area in sq km. Lista de países y territorios en Inglés y Español: nombre, continente, capital, código de teléfono, códigos de país, dominio y área en km cuadrados. Updated 2023",
|
|
language: "Text",
|
|
starsCount: 33,
|
|
forksCount: 11,
|
|
});
|
|
});
|
|
|
|
it("should throw correct error if gist not found", async () => {
|
|
mock
|
|
.onPost("https://api.github.com/graphql")
|
|
.reply(200, gist_not_found_data);
|
|
|
|
await expect(fetchGist("bbfce31e0217a3689c8d961a356cb10d")).rejects.toThrow(
|
|
"Gist not found",
|
|
);
|
|
});
|
|
|
|
it("should throw error if response contains them", async () => {
|
|
mock.onPost("https://api.github.com/graphql").reply(200, gist_errors_data);
|
|
|
|
await expect(fetchGist("bbfce31e0217a3689c8d961a356cb10d")).rejects.toThrow(
|
|
"Some test GraphQL error",
|
|
);
|
|
});
|
|
|
|
it("should throw error if id is not provided", async () => {
|
|
await expect(fetchGist()).rejects.toThrow(
|
|
'Missing params "id" make sure you pass the parameters in URL',
|
|
);
|
|
});
|
|
});
|