45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
import { vi, describe, it, expect, beforeEach } from 'vitest';
|
|
import request from 'supertest';
|
|
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 getAuthClientsMock from '../../../../../../test/mocks/rest/api/v1/admin/apps/get-auth-clients.js';
|
|
import { createAppAuthClient } from '../../../../../../test/factories/app-auth-client.js';
|
|
import * as license from '../../../../../helpers/license.ee.js';
|
|
|
|
describe('GET /api/v1/admin/apps/:appKey/auth-clients', () => {
|
|
let currentUser, adminRole, token;
|
|
|
|
beforeEach(async () => {
|
|
vi.spyOn(license, 'hasValidLicense').mockResolvedValue(true);
|
|
|
|
adminRole = await createRole({ name: 'Admin' });
|
|
currentUser = await createUser({ roleId: adminRole.id });
|
|
|
|
token = await createAuthTokenByUserId(currentUser.id);
|
|
});
|
|
|
|
it('should return specified app auth client info', async () => {
|
|
const appAuthClientOne = await createAppAuthClient({
|
|
appKey: 'deepl',
|
|
});
|
|
|
|
const appAuthClientTwo = await createAppAuthClient({
|
|
appKey: 'deepl',
|
|
});
|
|
|
|
const response = await request(app)
|
|
.get('/api/v1/admin/apps/deepl/auth-clients')
|
|
.set('Authorization', token)
|
|
.expect(200);
|
|
|
|
const expectedPayload = getAuthClientsMock([
|
|
appAuthClientTwo,
|
|
appAuthClientOne,
|
|
]);
|
|
|
|
expect(response.body).toStrictEqual(expectedPayload);
|
|
});
|
|
});
|