-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/smtp-bridge
- Loading branch information
Showing
2 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
apps/meteor/client/views/room/hooks/useRetentionPolicy.spec.ts
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,87 @@ | ||
import { mockAppRoot } from '@rocket.chat/mock-providers'; | ||
import { renderHook } from '@testing-library/react'; | ||
|
||
import { createFakeRoom } from '../../../../tests/mocks/data'; | ||
import { useRetentionPolicy } from './useRetentionPolicy'; | ||
|
||
const getGlobalSettings = ({ | ||
enabled = false, | ||
filesOnly = false, | ||
doNotPrunePinned = false, | ||
ignoreThreads = false, | ||
appliesToChannels = false, | ||
appliesToGroups = false, | ||
appliesToDMs = false, | ||
}) => { | ||
return mockAppRoot() | ||
.withSetting('RetentionPolicy_Enabled', enabled) | ||
.withSetting('RetentionPolicy_FilesOnly', filesOnly) | ||
.withSetting('RetentionPolicy_DoNotPrunePinned', doNotPrunePinned) | ||
.withSetting('RetentionPolicy_DoNotPruneThreads', ignoreThreads) | ||
.withSetting('RetentionPolicy_AppliesToChannels', appliesToChannels) | ||
.withSetting('RetentionPolicy_AppliesToGroups', appliesToGroups) | ||
.withSetting('RetentionPolicy_AppliesToDMs', appliesToDMs); | ||
}; | ||
|
||
const defaultValue = { | ||
enabled: false, | ||
isActive: false, | ||
filesOnly: false, | ||
excludePinned: false, | ||
ignoreThreads: false, | ||
}; | ||
|
||
const roomTypeConfig = { | ||
c: { appliesToChannels: true }, | ||
p: { appliesToGroups: true }, | ||
d: { appliesToDMs: true }, | ||
}; | ||
|
||
const CHANNELS_TYPE = 'c'; | ||
|
||
it('should return the default value if global retention is not enabled', async () => { | ||
const fakeRoom = createFakeRoom({ t: CHANNELS_TYPE }); | ||
|
||
const { result } = renderHook(() => useRetentionPolicy(fakeRoom), { | ||
legacyRoot: true, | ||
wrapper: getGlobalSettings({}).build(), | ||
}); | ||
|
||
expect(result.current).toEqual(expect.objectContaining(defaultValue)); | ||
}); | ||
|
||
it('should return enabled true if global retention is enabled', async () => { | ||
const fakeRoom = createFakeRoom({ t: CHANNELS_TYPE }); | ||
|
||
const { result } = renderHook(() => useRetentionPolicy(fakeRoom), { | ||
legacyRoot: true, | ||
wrapper: getGlobalSettings({ enabled: true }).build(), | ||
}); | ||
|
||
expect(result.current).toEqual(expect.objectContaining({ ...defaultValue, enabled: true })); | ||
}); | ||
|
||
it('should return enabled and active true global retention is active for rooms of the type', async () => { | ||
const fakeRoom = createFakeRoom({ t: CHANNELS_TYPE }); | ||
|
||
const { result } = renderHook(() => useRetentionPolicy(fakeRoom), { | ||
legacyRoot: true, | ||
wrapper: getGlobalSettings({ enabled: true, ...roomTypeConfig[CHANNELS_TYPE] }).build(), | ||
}); | ||
|
||
expect(result.current).toEqual(expect.objectContaining({ ...defaultValue, enabled: true, isActive: true })); | ||
}); | ||
|
||
it.failing( | ||
'should isActive be false if global retention is active for rooms of the type and room has retention.enabled false', | ||
async () => { | ||
const fakeRoom = createFakeRoom({ t: CHANNELS_TYPE, retention: { enabled: false } }); | ||
|
||
const { result } = renderHook(() => useRetentionPolicy(fakeRoom), { | ||
legacyRoot: true, | ||
wrapper: getGlobalSettings({ enabled: true, ...roomTypeConfig[CHANNELS_TYPE] }).build(), | ||
}); | ||
|
||
expect(result.current?.isActive).toBe(false); | ||
}, | ||
); |
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