@testing-library/react#getByDisplayValue TypeScript Examples
The following examples show how to use
@testing-library/react#getByDisplayValue.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProjectConfigurationEditor.test.tsx From legend-studio with Apache License 2.0 | 6 votes |
test(integrationTest('Test Project Structure'), async () => {
const editPanel = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL_CONTENT,
);
await waitFor(() => getByText(editPanel, 'PROJECT STRUCTURE VERSION 10.1'));
await waitFor(() => getByText(editPanel, 'Update to version 11.1'));
await waitFor(() => getByDisplayValue(editPanel, 'org.finos.legend'));
await waitFor(() => getByDisplayValue(editPanel, 'dependency-test'));
// TODO: test update project structure
});
Example #2
Source File: UMLEditor.test.tsx From legend-studio with Apache License 2.0 | 6 votes |
test(integrationTest('Profile editor renders properly'), async () => {
await TEST__openElementFromExplorerTree(
'ui::test1::ProfileTest',
renderResult,
);
const editPanelHeader = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL__HEADER_TABS,
);
expect(getByText(editPanelHeader, 'ProfileTest')).not.toBeNull();
const editPanelContent = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL_CONTENT,
);
expect(getByText(editPanelContent, 'ProfileTest')).not.toBeNull();
const taggedValues = ['tag1', 'tag2', 'tag3'];
taggedValues.forEach((t) =>
expect(getByDisplayValue(editPanelContent, t)).not.toBeNull(),
);
fireEvent.click(getByText(editPanelContent, 'Stereotypes'));
const stereotypes = ['stereotype1', 'stereotype2'];
stereotypes.forEach((s) =>
expect(getByDisplayValue(editPanelContent, s)).not.toBeNull(),
);
});
Example #3
Source File: UMLEditor.test.tsx From legend-studio with Apache License 2.0 | 6 votes |
test(integrationTest('Enumeration editor'), async () => {
await TEST__openElementFromExplorerTree('ui::TestEnumeration', renderResult);
const editPanelHeader = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL__HEADER_TABS,
);
expect(getByText(editPanelHeader, 'TestEnumeration')).not.toBeNull();
const enumerationEditor = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.ENUMERATION_EDITOR,
);
const enums = ['enumA', 'enumB', 'enumC'];
enums.forEach((e) => getByDisplayValue(enumerationEditor, e));
fireEvent.click(getByText(enumerationEditor, 'Tagged Values'));
await waitFor(() => getByText(enumerationEditor, 'ProfileTest'));
getByDisplayValue(enumerationEditor, 'Enumeration Tag');
fireEvent.click(getByText(enumerationEditor, 'Stereotypes'));
await waitFor(() => getByText(enumerationEditor, 'stereotype2'));
fireEvent.click(getByText(enumerationEditor, 'Values'));
await waitFor(() => getByDisplayValue(enumerationEditor, 'enumA'));
const enumB = getByDisplayValue(enumerationEditor, 'enumA');
const parentElement = enumB.parentElement?.parentElement as HTMLElement;
const buttons = queryAllByRole(parentElement, 'button');
expect(buttons).toHaveLength(2);
fireEvent.click(guaranteeNonNullable(buttons[0])); // navigate
await waitFor(() => getByText(enumerationEditor, 'enum'));
const subPropertyPanel = getByTestId(
enumerationEditor,
LEGEND_STUDIO_TEST_ID.PANEL,
);
getByDisplayValue(subPropertyPanel, 'enumATag');
fireEvent.click(getByText(subPropertyPanel, 'Stereotypes'));
await waitFor(() => getByText(subPropertyPanel, 'stereotype1'));
fireEvent.click(
guaranteeNonNullable(queryAllByRole(subPropertyPanel, 'button')[0]),
);
fireEvent.click(guaranteeNonNullable(buttons[1])); // delete
expect(queryByText(enumerationEditor, 'enumA')).toBeNull();
});
Example #4
Source File: UMLEditor.test.tsx From legend-studio with Apache License 2.0 | 5 votes |
test(integrationTest('Association editor'), async () => {
await TEST__openElementFromExplorerTree('ui::TestAssociation', renderResult);
const editPanelHeader = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL__HEADER_TABS,
);
expect(getByText(editPanelHeader, 'TestAssociation')).not.toBeNull();
const associationEditor = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.ASSOCIATION_EDITOR,
);
const properties = ['testClassProp', 'testClassSibling'];
// input fields for association property name are present
properties.forEach((t) =>
expect(getByDisplayValue(associationEditor, t)).not.toBeNull(),
);
// Tagged Values
fireEvent.click(getByText(associationEditor, 'Tagged Values'));
await waitFor(() => getByText(associationEditor, 'ProfileTest'));
getByDisplayValue(associationEditor, 'Association Tag');
// Steretypes
fireEvent.click(getByText(associationEditor, 'Stereotypes'));
await waitFor(() => getByText(associationEditor, 'stereotype2'));
// Back to properties
fireEvent.click(getByText(associationEditor, 'Properties'));
await waitFor(() => getByDisplayValue(associationEditor, 'testClassProp'));
const inputA = getByDisplayValue(associationEditor, 'testClassProp');
const propertyTypeA = inputA.parentElement?.parentElement
?.parentElement as HTMLElement;
fireEvent.change(inputA, { target: { value: 'random' } });
await waitFor(() => getByDisplayValue(associationEditor, 'random'));
expect(getAllByDisplayValue(propertyTypeA, '1')).toHaveLength(2);
expect(getByText(propertyTypeA, 'TestClass')).not.toBeNull();
expect(getAllByRole(propertyTypeA, 'button')).toHaveLength(2);
// sub panel property
const inputB = getByDisplayValue(associationEditor, 'testClassSibling');
const propertyTypeB = inputB.parentElement?.parentElement
?.parentElement as HTMLElement;
const buttons = getAllByRole(propertyTypeB, 'button');
expect(buttons).toHaveLength(2);
expect(queryByDisplayValue(associationEditor, 'ProfileTest')).toBeNull();
fireEvent.click(guaranteeNonNullable(buttons[1])); // navigate
const subPropertyPanel = getByTestId(
associationEditor,
LEGEND_STUDIO_TEST_ID.PANEL,
);
getByDisplayValue(subPropertyPanel, 'association tag');
fireEvent.click(getByText(subPropertyPanel, 'Stereotypes'));
await waitFor(() => getByText(subPropertyPanel, 'stereotype1'));
fireEvent.click(
guaranteeNonNullable(queryAllByRole(subPropertyPanel, 'button')[0]),
);
});
Example #5
Source File: UMLEditor.test.tsx From legend-studio with Apache License 2.0 | 4 votes |
test(
integrationTest('Class editor without constraints and derived properties'),
async () => {
await TEST__openElementFromExplorerTree('ui::TestClass', renderResult);
const editPanelHeader = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.EDIT_PANEL__HEADER_TABS,
);
expect(getByText(editPanelHeader, 'TestClass')).not.toBeNull();
const classForm = renderResult.getByTestId(
LEGEND_STUDIO_TEST_ID.CLASS_FORM_EDITOR,
);
// Normal properties
const classProperties = ['a', 'b', 'name', 'person'];
classProperties.forEach((t) =>
expect(getByDisplayValue(classForm, t)).not.toBeNull(),
);
// Supertype propertes
const superTypeProperties = [
'legs',
'arms',
'planet',
'description',
'founder',
];
superTypeProperties.forEach((superTypeProperty) => {
// input fields for super type property name are not present/disabled
expect(queryByDisplayValue(classForm, superTypeProperty)).toBeNull();
expect(queryByText(classForm, superTypeProperty)).not.toBeNull();
});
// Association properties
const associationProperties = ['testClassSibling'];
associationProperties.forEach((associationProperty) => {
// input fields for association property name are not present/disabled
expect(queryByDisplayValue(classForm, associationProperty)).toBeNull();
expect(queryByText(classForm, associationProperty)).not.toBeNull();
});
// SuperTypes
fireEvent.click(getByText(classForm, 'Super Types'));
await waitFor(() => getByText(classForm, 'Animal'));
// TaggedValues
fireEvent.click(getByText(classForm, 'Tagged Values'));
await waitFor(() => getByText(classForm, 'ProfileTest'));
expect(getByText(classForm, 'tag1')).not.toBeNull();
expect(getByDisplayValue(classForm, 'test')).not.toBeNull();
// Stereotypes
fireEvent.click(getByText(classForm, 'Stereotypes'));
await waitFor(() => getByText(classForm, 'ProfileTest'));
expect(getByText(classForm, 'stereotype1')).not.toBeNull();
// Back to properties. Test more rigorous
fireEvent.click(getByText(classForm, 'Properties'));
await waitFor(() => getByText(classForm, 'founder'));
const inputA = getByDisplayValue(classForm, 'a');
const propertyA = inputA.parentElement?.parentElement
?.parentElement as HTMLElement;
fireEvent.change(inputA, { target: { value: 'abcdefg' } });
await waitFor(() => getByDisplayValue(classForm, 'abcdefg'));
expect(getAllByDisplayValue(propertyA, '1')).toHaveLength(2);
expect(getByText(propertyA, 'String')).not.toBeNull();
expect(getAllByRole(propertyA, 'button')).toHaveLength(2);
fireEvent.click(guaranteeNonNullable(getAllByRole(propertyA, 'button')[1]));
expect(queryByDisplayValue(classForm, 'abcdefg')).toBeNull();
// Sub Panel Property
const inputB = getByDisplayValue(classForm, 'b');
const propertyB = inputB.parentElement?.parentElement
?.parentElement as HTMLElement;
const buttons = getAllByRole(propertyB, 'button');
expect(buttons).toHaveLength(2);
expect(queryByDisplayValue(classForm, 'ProfileTest')).toBeNull();
const navigateToPropertyButton = guaranteeNonNullable(buttons[0]);
fireEvent.click(navigateToPropertyButton);
await waitFor(() => getByText(classForm, 'property'));
const subPropertyPanel = getByTestId(
classForm,
LEGEND_STUDIO_TEST_ID.PANEL,
);
expect(
getByDisplayValue(subPropertyPanel, 'lets write a tag'),
).not.toBeNull();
expect(getAllByText(subPropertyPanel, 'tag2')).not.toBeNull();
expect(getByText(subPropertyPanel, 'ProfileTest')).not.toBeNull();
fireEvent.click(getByText(subPropertyPanel, 'Stereotypes'));
await waitFor(() => getByText(subPropertyPanel, 'stereotype1'));
fireEvent.click(
guaranteeNonNullable(getAllByRole(subPropertyPanel, 'button')[0]),
);
expect(queryByRole(classForm, 'panel')).toBeNull();
},
);