mirror of
https://github.com/langgenius/dify.git
synced 2026-08-28 17:32:13 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: fatelei <fatelei@gmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: Charles Yao <chongbinyao33@gmail.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: yunlu.wen <yunlu.wen@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com> Co-authored-by: gigglewang <gigglewang@dify.ai> Co-authored-by: chariri <w@chariri.moe> Co-authored-by: Evan <2869018789@qq.com> Co-authored-by: zyssyz123 <916125788@qq.com>
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
|
|
import { act, renderHook, waitFor } from '@testing-library/react'
|
|
import { get, put } from '@/service/base'
|
|
import { commonQueryKeys } from '@/service/use-common'
|
|
import { useRolesOfMember, useUpdateRolesOfMember } from '../use-member-roles'
|
|
|
|
vi.mock('@/service/base', () => ({
|
|
get: vi.fn(),
|
|
put: vi.fn(),
|
|
}))
|
|
|
|
const createQueryClient = () => new QueryClient({
|
|
defaultOptions: {
|
|
queries: { retry: false },
|
|
mutations: { retry: false },
|
|
},
|
|
})
|
|
|
|
const createWrapper = (queryClient = createQueryClient()) => {
|
|
return ({ children }: { children: ReactNode }) => (
|
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
|
)
|
|
}
|
|
|
|
describe('use-member-roles', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
vi.mocked(get).mockResolvedValue({ account_id: 'member-1', roles: [] })
|
|
vi.mocked(put).mockResolvedValue({})
|
|
})
|
|
|
|
// Queries load roles for one workspace member.
|
|
describe('Queries', () => {
|
|
it('should fetch roles for a member id', async () => {
|
|
renderHook(() => useRolesOfMember('member-1', 'en'), { wrapper: createWrapper() })
|
|
|
|
await waitFor(() => {
|
|
expect(get).toHaveBeenCalledWith('/workspaces/current/rbac/members/member-1/rbac-roles', {
|
|
params: { language: 'en' },
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
// Mutations update role ids using the API contract body shape.
|
|
describe('Mutations', () => {
|
|
it('should update roles for a member id', async () => {
|
|
const { result } = renderHook(() => useUpdateRolesOfMember(), { wrapper: createWrapper() })
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({
|
|
memberId: 'member-1',
|
|
roleIds: ['role-1'],
|
|
})
|
|
})
|
|
|
|
expect(put).toHaveBeenCalledWith('/workspaces/current/rbac/members/member-1/rbac-roles', {
|
|
body: { role_ids: ['role-1'] },
|
|
})
|
|
})
|
|
|
|
it('should invalidate members after updating roles', async () => {
|
|
const queryClient = createQueryClient()
|
|
const membersQueryKey = [...commonQueryKeys.members, 'en-US']
|
|
queryClient.setQueryData(membersQueryKey, { accounts: [] })
|
|
const { result } = renderHook(() => useUpdateRolesOfMember(), { wrapper: createWrapper(queryClient) })
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({
|
|
memberId: 'member-1',
|
|
roleIds: ['role-1'],
|
|
})
|
|
})
|
|
|
|
expect(queryClient.getQueryState(membersQueryKey)?.isInvalidated).toBe(true)
|
|
})
|
|
})
|
|
})
|