158 lines
6.7 KiB
JavaScript
158 lines
6.7 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const vitest_1 = require("vitest");
|
|
const app_1 = require("../../src/app");
|
|
const metadataService = __importStar(require("../../src/services/metadataService"));
|
|
(0, vitest_1.describe)('Metadata API', () => {
|
|
let app;
|
|
(0, vitest_1.beforeEach)(async () => {
|
|
app = (0, app_1.buildApp)();
|
|
await app.ready();
|
|
});
|
|
(0, vitest_1.afterEach)(async () => {
|
|
await app.close();
|
|
vitest_1.vi.restoreAllMocks();
|
|
});
|
|
(0, vitest_1.describe)('GET /api/metadata/search', () => {
|
|
(0, vitest_1.it)('debería devolver múltiples resultados cuando se busca un juego existente', async () => {
|
|
const mockResults = [
|
|
{
|
|
source: 'igdb',
|
|
externalIds: { igdb: 1 },
|
|
name: 'The Legend of Zelda',
|
|
title: 'The Legend of Zelda',
|
|
slug: 'the-legend-of-zelda',
|
|
releaseDate: '1986-02-21',
|
|
genres: ['Adventure'],
|
|
coverUrl: 'https://example.com/cover.jpg',
|
|
platforms: undefined,
|
|
},
|
|
{
|
|
source: 'rawg',
|
|
externalIds: { rawg: 2 },
|
|
name: 'The Legend of Zelda: A Link to the Past',
|
|
title: 'The Legend of Zelda: A Link to the Past',
|
|
slug: 'the-legend-of-zelda-a-link-to-the-past',
|
|
releaseDate: '1991-11-21',
|
|
genres: ['Adventure'],
|
|
coverUrl: 'https://example.com/cover2.jpg',
|
|
platforms: undefined,
|
|
},
|
|
];
|
|
vitest_1.vi.spyOn(metadataService, 'searchGames').mockResolvedValue(mockResults);
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=zelda',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(200);
|
|
const body = res.json();
|
|
(0, vitest_1.expect)(Array.isArray(body)).toBe(true);
|
|
(0, vitest_1.expect)(body.length).toBeGreaterThan(0);
|
|
(0, vitest_1.expect)(body[0].name).toContain('Zelda');
|
|
});
|
|
(0, vitest_1.it)('debería devolver lista vacía cuando no hay resultados', async () => {
|
|
vitest_1.vi.spyOn(metadataService, 'searchGames').mockResolvedValue([]);
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=nonexistentgame12345',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(200);
|
|
const body = res.json();
|
|
(0, vitest_1.expect)(Array.isArray(body)).toBe(true);
|
|
(0, vitest_1.expect)(body.length).toBe(0);
|
|
});
|
|
(0, vitest_1.it)('debería devolver 400 si falta el parámetro query', async () => {
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(400);
|
|
(0, vitest_1.expect)(res.json()).toHaveProperty('error');
|
|
});
|
|
(0, vitest_1.it)('debería devolver 400 si el parámetro query está vacío', async () => {
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(400);
|
|
});
|
|
(0, vitest_1.it)('debería pasar el parámetro platform a searchGames si se proporciona', async () => {
|
|
const searchSpy = vitest_1.vi.spyOn(metadataService, 'searchGames').mockResolvedValue([]);
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=mario&platform=Nintendo%2064',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(200);
|
|
(0, vitest_1.expect)(searchSpy).toHaveBeenCalledWith({
|
|
title: 'mario',
|
|
platform: 'Nintendo 64',
|
|
year: undefined,
|
|
});
|
|
});
|
|
(0, vitest_1.it)('debería pasar el parámetro year a searchGames si se proporciona', async () => {
|
|
const searchSpy = vitest_1.vi.spyOn(metadataService, 'searchGames').mockResolvedValue([]);
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=mario&year=1990',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(200);
|
|
(0, vitest_1.expect)(searchSpy).toHaveBeenCalledWith({
|
|
title: 'mario',
|
|
platform: undefined,
|
|
year: 1990,
|
|
});
|
|
});
|
|
(0, vitest_1.it)('debería pasar todos los parámetros a searchGames', async () => {
|
|
const searchSpy = vitest_1.vi.spyOn(metadataService, 'searchGames').mockResolvedValue([]);
|
|
const res = await app.inject({
|
|
method: 'GET',
|
|
url: '/api/metadata/search?q=mario&platform=NES&year=1985',
|
|
});
|
|
(0, vitest_1.expect)(res.statusCode).toBe(200);
|
|
(0, vitest_1.expect)(searchSpy).toHaveBeenCalledWith({
|
|
title: 'mario',
|
|
platform: 'NES',
|
|
year: 1985,
|
|
});
|
|
});
|
|
});
|
|
});
|
|
/**
|
|
* Metadatos:
|
|
* Autor: GitHub Copilot
|
|
* Última actualización: 2026-02-11
|
|
*/
|