-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* UICAL-220: Created test for MCLRowFormatter * UICAL -228: Test for TImeField * added newlines to end of files
- Loading branch information
1 parent
aea8d54
commit 6290e2d
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { render, screen } from '@testing-library/react' | ||
import React from 'react' | ||
import MCLRowFormatter from './MCLRowFormatter' | ||
import { MCLContentsType } from './ExceptionFieldTypes'; | ||
import RowType from './RowType'; | ||
|
||
describe('MCLRowFormatter', () => { | ||
it('Renders the formatter correctly', async () => { | ||
render( | ||
<MCLRowFormatter<MCLContentsType> | ||
rowClass='test-classname' | ||
rowWidth={1} | ||
rowIndex={1} | ||
labelStrings={['foo']} | ||
cells={[<h1 key='foo'>test</h1>]} | ||
rowData={ | ||
{ rowState: | ||
{ i: 1, | ||
name: 'foo', | ||
type: RowType.Open, | ||
lastRowI: 1, | ||
rows: [{ | ||
i: 1, | ||
startDate: undefined, | ||
startTime: undefined, | ||
endDate: undefined, | ||
endTime: undefined | ||
}] | ||
}, | ||
name: undefined, | ||
status: undefined, | ||
startDate: undefined, | ||
startTime: undefined, | ||
endDate: undefined, | ||
endTime: undefined, | ||
actions: undefined, | ||
isConflicted: false | ||
} | ||
} | ||
rowProps={{} as any} | ||
/> | ||
); | ||
|
||
expect(await screen.findByRole('heading')).toBeInTheDocument(); | ||
expect((await screen.findByRole('heading')).textContent).toBe('test'); | ||
expect((await screen.findByRole('heading')).parentElement?.className).toBe('test-classname'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { fireEvent, render, screen } from "@testing-library/react"; | ||
import React from 'react' | ||
import { IntlProvider } from "react-intl"; | ||
import TimeField from "./TimeField"; | ||
import userEvent from "@testing-library/user-event"; | ||
|
||
describe('TimeField', () => { | ||
it('Renders the TimeField correctly', async () => { | ||
render( | ||
<IntlProvider locale="en"> | ||
<TimeField | ||
display={true} | ||
value={undefined} | ||
inputRef={() => {}} | ||
error={undefined} | ||
onBlur={() => {}} | ||
onChange={() => {}} | ||
/> | ||
</IntlProvider> | ||
); | ||
|
||
expect(await screen.findByRole('textbox')).toBeInTheDocument(); | ||
expect(await screen.findByRole('textbox')).toHaveValue(''); | ||
}); | ||
|
||
it('Renders nothing when display is false', async () => { | ||
render( | ||
<IntlProvider locale="en"> | ||
<TimeField | ||
display={false} | ||
value='test' | ||
inputRef={() => {}} | ||
error={undefined} | ||
onBlur={() => {}} | ||
onChange={() => {}} | ||
/> | ||
</IntlProvider> | ||
); | ||
|
||
expect(await screen.queryByRole('textbox')).toBeNull(); | ||
}); | ||
|
||
it('Formatse time correctly', async () => { | ||
render( | ||
<IntlProvider locale="en"> | ||
<TimeField | ||
display={true} | ||
value='12:30:00' | ||
inputRef={() => {}} | ||
error={undefined} | ||
onBlur={() => {}} | ||
onChange={() => {}} | ||
/> | ||
</IntlProvider> | ||
); | ||
|
||
expect(await screen.findByRole('textbox')).toHaveValue('12:30 PM'); | ||
}); | ||
}); |