API: Add programatically generated Provisioning API slice definitions

These definitions were generated using the RTKQ code generation tool and
will replace the existing definitions.
This commit is contained in:
lucasgarfield 2023-07-27 14:13:43 +02:00 committed by Lucas Garfield
parent 74528356fa
commit 702b667dc5
20 changed files with 2020 additions and 89 deletions

View file

@ -4,7 +4,7 @@ import { screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { rest } from 'msw';
import { PROVISIONING_SOURCES_ENDPOINT } from '../../../constants.js';
import { PROVISIONING_API } from '../../../constants.js';
import { server } from '../../mocks/server.js';
import { renderWithReduxRouter } from '../../testUtils';
@ -161,7 +161,7 @@ describe('Step Upload to Azure', () => {
test('component renders error state correctly', async () => {
setUp();
server.use(
rest.get(`${PROVISIONING_SOURCES_ENDPOINT}/sources`, (req, res, ctx) =>
rest.get(`${PROVISIONING_API}/sources`, (req, res, ctx) =>
res(ctx.status(500))
)
);

View file

@ -11,11 +11,7 @@ import userEvent from '@testing-library/user-event';
import { rest } from 'msw';
import api from '../../../api.js';
import {
RHEL_8,
RHEL_9,
PROVISIONING_SOURCES_ENDPOINT,
} from '../../../constants.js';
import { RHEL_8, RHEL_9, PROVISIONING_API } from '../../../constants.js';
import { mockComposesEmpty } from '../../fixtures/composes.js';
import { customizations, ids } from '../../fixtures/customizations.js';
import { mockPkgResultAlphaContentSources } from '../../fixtures/packages.js';
@ -127,7 +123,7 @@ describe('Step Upload to AWS', () => {
test('component renders error state correctly', async () => {
setUp();
server.use(
rest.get(`${PROVISIONING_SOURCES_ENDPOINT}/sources`, (req, res, ctx) =>
rest.get(`${PROVISIONING_API}/sources`, (req, res, ctx) =>
res(ctx.status(500))
)
);