add tests to scaffoler-react
Signed-off-by: Paul Cowan <paul.cowan@cutting.scot>
This commit is contained in:
@@ -57,8 +57,8 @@
|
||||
"json-schema": "^0.4.0",
|
||||
"json-schema-library": "^7.3.9",
|
||||
"lodash": "^4.17.21",
|
||||
"react-use": "^17.2.4",
|
||||
"qs": "^6.9.4",
|
||||
"react-use": "^17.2.4",
|
||||
"zen-observable": "^0.10.0",
|
||||
"zod": "~3.18.0",
|
||||
"zod-to-json-schema": "~3.18.0"
|
||||
|
||||
@@ -26,7 +26,7 @@ import { ParsedTemplateSchema } from '../../hooks/useTemplateSchema';
|
||||
export interface ReviewStateProps {
|
||||
schemas: ParsedTemplateSchema[];
|
||||
formState: JsonObject;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* The component used by the {@link Stepper} to render the review step.
|
||||
|
||||
@@ -352,4 +352,42 @@ describe('Stepper', () => {
|
||||
// flush promises
|
||||
return new Promise(process.nextTick);
|
||||
});
|
||||
|
||||
it('should override the Create and Review button text', async () => {
|
||||
const manifest: TemplateParameterSchema = {
|
||||
title: 'Custom Fields',
|
||||
steps: [
|
||||
{
|
||||
title: 'Test',
|
||||
schema: {
|
||||
properties: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const { getByRole } = await renderInTestApp(
|
||||
<Stepper
|
||||
manifest={manifest}
|
||||
onComplete={jest.fn()}
|
||||
extensions={[]}
|
||||
createButtonText="Make"
|
||||
reviewButtonText="Inspect"
|
||||
/>,
|
||||
);
|
||||
|
||||
await act(async () => {
|
||||
await fireEvent.click(getByRole('button', { name: 'Inspect' }));
|
||||
});
|
||||
|
||||
expect(getByRole('button', { name: 'Make' })).toBeInTheDocument();
|
||||
|
||||
await act(async () => {
|
||||
await fireEvent.click(getByRole('button', { name: 'Make' }));
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -61,8 +61,9 @@ export type StepperProps = {
|
||||
initialState?: Record<string, JsonValue>;
|
||||
|
||||
onComplete: (values: Record<string, JsonValue>) => Promise<void>;
|
||||
initialFormState?: Record<string, JsonValue>;
|
||||
ReviewStateWrapper?: (props: ReviewStateProps) => JSX.Element;
|
||||
createButtonText?: string;
|
||||
reviewButtonText?: string;
|
||||
};
|
||||
|
||||
// TODO(blam): We require here, as the types in this package depend on @rjsf/core explicitly
|
||||
@@ -77,6 +78,8 @@ const Form = withTheme(require('@rjsf/material-ui-v5').Theme);
|
||||
|
||||
export const Stepper = ({
|
||||
ReviewStateWrapper = ReviewState,
|
||||
createButtonText = 'Create',
|
||||
reviewButtonText = 'Review',
|
||||
...props
|
||||
}: StepperProps) => {
|
||||
const analytics = useAnalytics();
|
||||
@@ -182,7 +185,7 @@ export const Stepper = ({
|
||||
Back
|
||||
</Button>
|
||||
<Button variant="contained" color="primary" type="submit">
|
||||
{activeStep === steps.length - 1 ? 'Review' : 'Next'}
|
||||
{activeStep === steps.length - 1 ? reviewButtonText : 'Next'}
|
||||
</Button>
|
||||
</div>
|
||||
</Form>
|
||||
@@ -211,7 +214,7 @@ export const Stepper = ({
|
||||
);
|
||||
}}
|
||||
>
|
||||
Create
|
||||
{createButtonText}
|
||||
</Button>
|
||||
</div>
|
||||
</>
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
/*
|
||||
* Copyright 2022 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { ApiProvider } from '@backstage/core-app-api';
|
||||
import {
|
||||
MockAnalyticsApi,
|
||||
renderInTestApp,
|
||||
TestApiRegistry,
|
||||
} from '@backstage/test-utils';
|
||||
import { act, fireEvent } from '@testing-library/react';
|
||||
import React from 'react';
|
||||
import { Workflow } from './Workflow';
|
||||
import { analyticsApiRef } from '@backstage/core-plugin-api';
|
||||
import { ScaffolderApi } from '../../../api/types';
|
||||
import { scaffolderApiRef } from '../../../api/ref';
|
||||
|
||||
const scaffolderApiMock: jest.Mocked<ScaffolderApi> = {
|
||||
scaffold: jest.fn(),
|
||||
getTemplateParameterSchema: jest.fn(),
|
||||
getIntegrationsList: jest.fn(),
|
||||
getTask: jest.fn(),
|
||||
streamLogs: jest.fn(),
|
||||
listActions: jest.fn(),
|
||||
listTasks: jest.fn(),
|
||||
};
|
||||
|
||||
const analyticsMock = new MockAnalyticsApi();
|
||||
const apis = TestApiRegistry.from(
|
||||
[scaffolderApiRef, scaffolderApiMock],
|
||||
[analyticsApiRef, analyticsMock],
|
||||
);
|
||||
|
||||
describe('<Workflow />', () => {
|
||||
it('should complete a workflow', async () => {
|
||||
const onComplete = jest.fn();
|
||||
const onError = jest.fn();
|
||||
scaffolderApiMock.scaffold.mockResolvedValue({ taskId: 'xyz' });
|
||||
|
||||
scaffolderApiMock.getTemplateParameterSchema.mockResolvedValue({
|
||||
steps: [
|
||||
{
|
||||
title: 'Step 1',
|
||||
schema: {
|
||||
properties: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
title: 'React JSON Schema Form Test',
|
||||
});
|
||||
|
||||
const { getByRole, getAllByRole, getByText } = await renderInTestApp(
|
||||
<ApiProvider apis={apis}>
|
||||
<Workflow
|
||||
title="Different title than template"
|
||||
description={`
|
||||
## This is markdown
|
||||
- overriding the template description
|
||||
`}
|
||||
onComplete={onComplete}
|
||||
onError={onError}
|
||||
namespace="default"
|
||||
templateName="docs-template"
|
||||
initialFormState={{
|
||||
name: 'prefilled-name',
|
||||
}}
|
||||
ReviewStateWrapper={() => (
|
||||
<h1>This is a different wrapper for the review page</h1>
|
||||
)}
|
||||
customFieldExtensions={[]}
|
||||
/>
|
||||
</ApiProvider>,
|
||||
);
|
||||
|
||||
// Test template title is overriden
|
||||
expect(getByRole('heading', { level: 2 }).innerHTML).toBe(
|
||||
'Different title than template',
|
||||
);
|
||||
|
||||
const input = getByRole('textbox') as HTMLInputElement;
|
||||
|
||||
expect(input).toBeInTheDocument();
|
||||
|
||||
expect(input.value).toBe('prefilled-name');
|
||||
|
||||
await act(async () => {
|
||||
fireEvent.click(getByRole('button', { name: 'Review' }));
|
||||
});
|
||||
|
||||
expect(
|
||||
getByText('This is a different wrapper for the review page'),
|
||||
).toBeDefined();
|
||||
|
||||
await act(async () => {
|
||||
fireEvent.click(getAllByRole('button')[1] as HTMLButtonElement);
|
||||
});
|
||||
|
||||
expect(onComplete).toHaveBeenCalledWith({ name: 'prefilled-name' });
|
||||
});
|
||||
});
|
||||
@@ -113,7 +113,7 @@ export const Workflow = ({
|
||||
extensions={props.customFieldExtensions}
|
||||
onComplete={props.onComplete}
|
||||
FormProps={FormProps}
|
||||
initialFormState={props.initialFormState}
|
||||
initialState={props.initialFormState}
|
||||
ReviewStateWrapper={ReviewStateWrapper}
|
||||
/>
|
||||
</InfoCard>
|
||||
|
||||
Reference in New Issue
Block a user