23 lines
823 B
JavaScript
23 lines
823 B
JavaScript
import { vi, expect, describe, it } from 'vitest';
|
|
import request from 'supertest';
|
|
import appConfig from '../../../../config/app.js';
|
|
import app from '../../../../app.js';
|
|
import infoMock from '../../../../../test/mocks/rest/api/v1/automatisch/info.js';
|
|
import * as license from '../../../../helpers/license.ee.js';
|
|
|
|
describe('GET /api/v1/automatisch/info', () => {
|
|
it('should return Automatisch info', async () => {
|
|
vi.spyOn(appConfig, 'isCloud', 'get').mockReturnValue(false);
|
|
vi.spyOn(appConfig, 'isMation', 'get').mockReturnValue(false);
|
|
vi.spyOn(license, 'hasValidLicense').mockResolvedValue(true);
|
|
|
|
const response = await request(app)
|
|
.get('/api/v1/automatisch/info')
|
|
.expect(200);
|
|
|
|
const expectedPayload = infoMock();
|
|
|
|
expect(response.body).toEqual(expectedPayload);
|
|
});
|
|
});
|