-
-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
168 additions
and
7 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
161 changes: 161 additions & 0 deletions
161
...ature/FeatureView/FeatureOverview/FeatureLifecycle/LegacyFeatureLifecycleTooltip.test.tsx
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,161 @@ | ||
import { screen } from '@testing-library/react'; | ||
import { FeatureLifecycleTooltip } from './LegacyFeatureLifecycleTooltip'; | ||
import { render } from 'utils/testRenderer'; | ||
import userEvent from '@testing-library/user-event'; | ||
import { vi } from 'vitest'; | ||
import type { LifecycleStage } from './LifecycleStage'; | ||
import { | ||
DELETE_FEATURE, | ||
UPDATE_FEATURE, | ||
} from 'component/providers/AccessProvider/permissions'; | ||
|
||
const currentTime = '2024-04-25T08:05:00.000Z'; | ||
const twoMinutesAgo = '2024-04-25T08:03:00.000Z'; | ||
const oneHourAgo = '2024-04-25T07:05:00.000Z'; | ||
const twoHoursAgo = '2024-04-25T06:05:00.000Z'; | ||
|
||
const renderOpenTooltip = ( | ||
stage: LifecycleStage, | ||
onArchive = () => {}, | ||
onComplete = () => {}, | ||
onUncomplete = () => {}, | ||
loading = false, | ||
) => { | ||
render( | ||
<FeatureLifecycleTooltip | ||
stage={stage} | ||
onArchive={onArchive} | ||
onComplete={onComplete} | ||
onUncomplete={onUncomplete} | ||
loading={loading} | ||
project={'default'} | ||
> | ||
<span>child</span> | ||
</FeatureLifecycleTooltip>, | ||
{ | ||
permissions: [ | ||
{ permission: DELETE_FEATURE }, | ||
{ permission: UPDATE_FEATURE }, | ||
], | ||
}, | ||
); | ||
|
||
const child = screen.getByText('child'); | ||
|
||
userEvent.hover(child); | ||
}; | ||
|
||
test('render initial stage', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
|
||
renderOpenTooltip({ name: 'initial', enteredStageAt }); | ||
|
||
await screen.findByText('initial'); | ||
await screen.findByText('2 minutes'); | ||
await screen.findByText( | ||
'This feature flag is currently in the initial phase of its lifecycle.', | ||
); | ||
}); | ||
|
||
test('render pre-live stage', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
const lastSeenAt = oneHourAgo; | ||
|
||
renderOpenTooltip({ | ||
name: 'pre-live', | ||
environments: [{ name: 'development', lastSeenAt }], | ||
enteredStageAt, | ||
}); | ||
|
||
await screen.findByText('pre-live'); | ||
await screen.findByText('development'); | ||
await screen.findByText('1 hour ago'); | ||
}); | ||
|
||
test('render live stage', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
const lastSeenAt = twoHoursAgo; | ||
|
||
renderOpenTooltip({ | ||
name: 'live', | ||
environments: [{ name: 'production', lastSeenAt }], | ||
enteredStageAt, | ||
}); | ||
|
||
await screen.findByText('Is this feature complete?'); | ||
await screen.findByText('live'); | ||
await screen.findByText('production'); | ||
await screen.findByText('2 hours ago'); | ||
}); | ||
|
||
test('render completed stage with still active', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
const lastSeenAt = twoHoursAgo; | ||
|
||
renderOpenTooltip({ | ||
name: 'completed', | ||
status: 'kept', | ||
environments: [{ name: 'production', lastSeenAt }], | ||
enteredStageAt, | ||
}); | ||
|
||
await screen.findByText('completed'); | ||
await screen.findByText('production'); | ||
await screen.findByText('2 hours ago'); | ||
expect(screen.queryByText('Archive feature')).not.toBeInTheDocument(); | ||
}); | ||
|
||
test('render completed stage safe to archive', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
let onArchiveInvoked = false; | ||
const onArchive = () => { | ||
onArchiveInvoked = true; | ||
}; | ||
|
||
renderOpenTooltip( | ||
{ | ||
name: 'completed', | ||
status: 'kept', | ||
environments: [], | ||
enteredStageAt, | ||
}, | ||
onArchive, | ||
); | ||
|
||
await screen.findByText('completed'); | ||
const button = await screen.findByText('Archive feature'); | ||
button.click(); | ||
|
||
expect(onArchiveInvoked).toBe(true); | ||
}); | ||
|
||
test('mark completed button gets activated', async () => { | ||
vi.setSystemTime(currentTime); | ||
const enteredStageAt = twoMinutesAgo; | ||
const lastSeenAt = twoHoursAgo; | ||
let onCompleteInvoked = false; | ||
const onComplete = () => { | ||
onCompleteInvoked = true; | ||
}; | ||
|
||
renderOpenTooltip( | ||
{ | ||
name: 'live', | ||
environments: [{ name: 'production', lastSeenAt }], | ||
enteredStageAt, | ||
}, | ||
() => {}, | ||
onComplete, | ||
); | ||
|
||
await screen.findByText('live'); | ||
const button = await screen.findByText('Mark completed'); | ||
button.click(); | ||
|
||
expect(onCompleteInvoked).toBe(true); | ||
}); |