generated from MeasureAuthoringTool/madie-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from MeasureAuthoringTool/MAT-6744/addCheckUse…
…rCanDeleteUtilFunction MAt-6744 added check user can delete function
- Loading branch information
Showing
4 changed files
with
60 additions
and
1 deletion.
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
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,40 @@ | ||
import useOktaTokens from "../hooks/useOktaTokens"; | ||
import useCheckUserCanDelete from "./useCheckCanDelete"; | ||
|
||
const JANE_DOE = "Jane doe"; | ||
const JOHN_DOE = "john doe"; | ||
|
||
jest.mock("../hooks/useOktaTokens", () => | ||
jest.fn(() => ({ | ||
getUserName: jest.fn(), | ||
})) | ||
); | ||
|
||
describe("Check user canEdit", () => { | ||
beforeEach(() => { | ||
jest.resetAllMocks(); | ||
(useOktaTokens as jest.Mock).mockImplementation(() => ({ | ||
getUserName: () => JANE_DOE, | ||
})); | ||
}); | ||
|
||
it("should return true when user name and createdBy are the same and draft is true", () => { | ||
const canEdit = useCheckUserCanDelete(JANE_DOE, true); | ||
expect(canEdit).toBeTruthy(); | ||
}); | ||
|
||
it("should return false when user name and createdBy are not the same", () => { | ||
const canEdit = useCheckUserCanDelete(JOHN_DOE, true); | ||
expect(canEdit).not.toBeTruthy(); | ||
}); | ||
|
||
it("should return false when user name and createdBy are same but it is not draft", () => { | ||
const canEdit = useCheckUserCanDelete(JANE_DOE, false); | ||
expect(canEdit).not.toBeTruthy(); | ||
}); | ||
|
||
it("should return true when user name and createdBy are the same ", () => { | ||
const canEdit = useCheckUserCanDelete(JANE_DOE); | ||
expect(canEdit).toBeTruthy(); | ||
}); | ||
}); |
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,17 @@ | ||
import useOktaTokens from "../hooks/useOktaTokens"; | ||
|
||
const useCheckUserCanDelete = ( | ||
user: string, | ||
draft: boolean = true | ||
): boolean => { | ||
const { getUserName } = useOktaTokens(); | ||
const loggedInUser = getUserName(); | ||
// versioned measures/libraries can never be deleted. | ||
if (!draft) { | ||
return false; | ||
} | ||
|
||
return user?.toLowerCase() === loggedInUser?.toLowerCase(); | ||
}; | ||
|
||
export default useCheckUserCanDelete; |
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