56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
import { vi, describe, it, expect, beforeEach } from 'vitest';
|
|
import request from 'supertest';
|
|
import Crypto from 'crypto';
|
|
import app from '../../../../../app.js';
|
|
import createAuthTokenByUserId from '../../../../../helpers/create-auth-token-by-user-id.js';
|
|
import { createUser } from '../../../../../../test/factories/user.js';
|
|
import { createRole } from '../../../../../../test/factories/role.js';
|
|
import getOAuthClientMock from '../../../../../../test/mocks/rest/api/v1/admin/apps/get-oauth-client.js';
|
|
import { createOAuthClient } from '../../../../../../test/factories/oauth-client.js';
|
|
import * as license from '../../../../../helpers/license.ee.js';
|
|
|
|
describe('GET /api/v1/admin/apps/:appKey/oauth-clients/:oauthClientId', () => {
|
|
let currentUser, adminRole, currentOAuthClient, token;
|
|
|
|
beforeEach(async () => {
|
|
vi.spyOn(license, 'hasValidLicense').mockResolvedValue(true);
|
|
|
|
adminRole = await createRole({ name: 'Admin' });
|
|
currentUser = await createUser({ roleId: adminRole.id });
|
|
|
|
currentOAuthClient = await createOAuthClient({
|
|
appKey: 'deepl',
|
|
});
|
|
|
|
token = await createAuthTokenByUserId(currentUser.id);
|
|
});
|
|
|
|
it('should return specified oauth client', async () => {
|
|
const response = await request(app)
|
|
.get(`/api/v1/admin/apps/deepl/oauth-clients/${currentOAuthClient.id}`)
|
|
.set('Authorization', token)
|
|
.expect(200);
|
|
|
|
const expectedPayload = getOAuthClientMock(currentOAuthClient);
|
|
expect(response.body).toStrictEqual(expectedPayload);
|
|
});
|
|
|
|
it('should return not found response for not existing oauth client ID', async () => {
|
|
const notExistingOAuthClientUUID = Crypto.randomUUID();
|
|
|
|
await request(app)
|
|
.get(
|
|
`/api/v1/admin/apps/deepl/oauth-clients/${notExistingOAuthClientUUID}`
|
|
)
|
|
.set('Authorization', token)
|
|
.expect(404);
|
|
});
|
|
|
|
it('should return bad request response for invalid UUID', async () => {
|
|
await request(app)
|
|
.get('/api/v1/admin/apps/deepl/oauth-clients/invalidOAuthClientUUID')
|
|
.set('Authorization', token)
|
|
.expect(400);
|
|
});
|
|
});
|