Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCJ-654: Sign-in via OIDC #2667

Merged
merged 32 commits into from
Sep 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
db33dbc
feat: sign-in via OIDC
rushtong Sep 9, 2024
386d0f2
feat: re-add register metrics
rushtong Sep 9, 2024
456cb7f
feat: rm unused
rushtong Sep 9, 2024
9bf40f3
feat: fix typo
rushtong Sep 9, 2024
d79a57e
feat: configs
rushtong Sep 9, 2024
924b8ee
feat: update test
rushtong Sep 9, 2024
becd2c8
feat: styling
rushtong Sep 9, 2024
1115338
feat: auth test cleanup
rushtong Sep 10, 2024
907746f
Merge branch 'refs/heads/develop' into gr-DCJ-654-sign-in
rushtong Sep 10, 2024
a3eaeba
feat: sign-in test fix
rushtong Sep 10, 2024
2e4e93b
Merge branch 'refs/heads/develop' into gr-DCJ-654-sign-in
rushtong Sep 12, 2024
7deecc4
feat: handle errors, simplify login options
rushtong Sep 12, 2024
df09f44
feat: cleanup
rushtong Sep 12, 2024
dfa721a
feat: auth tests
rushtong Sep 13, 2024
59cd7be
feat: oidc client tests
rushtong Sep 13, 2024
20dad74
feat: sign-in tests and cleanup
rushtong Sep 13, 2024
25d21fd
Merge branch 'refs/heads/develop' into gr-DCJ-654-sign-in
rushtong Sep 13, 2024
f2bb354
feat: merge fix
rushtong Sep 14, 2024
28b4231
feat: docs and cleanup
rushtong Sep 14, 2024
c5c67a0
feat: test cleanup
rushtong Sep 14, 2024
1c1288b
feat: revert comment
rushtong Sep 14, 2024
e100a0f
feat: test cleanup
rushtong Sep 14, 2024
14176ab
feat: tos path test
rushtong Sep 16, 2024
a45492f
Merge branch 'refs/heads/develop' into gr-DCJ-654-sign-in
rushtong Sep 16, 2024
b035073
feat: fix new user registration path
rushtong Sep 16, 2024
a0b9fba
feat: rm duplicated metrics calls
rushtong Sep 17, 2024
18e7b13
feat: registration test
rushtong Sep 17, 2024
8944f48
feat: minor rename
rushtong Sep 17, 2024
9e5f497
feat: revert comment change
rushtong Sep 17, 2024
3c59ed3
Merge branch 'refs/heads/develop' into gr-DCJ-654-sign-in
rushtong Sep 17, 2024
ad2d8ed
feat: PR feedback
rushtong Sep 18, 2024
54f025b
feat: additional documentation
rushtong Sep 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: PR feedback
rushtong committed Sep 18, 2024
commit ad2d8eda09aa7fc72fd9e9a5e7658fbbf3a4e9e4
7 changes: 4 additions & 3 deletions cypress/component/Auth/auth.spec.ts
Original file line number Diff line number Diff line change
@@ -13,9 +13,10 @@ describe('Auth Failure', function () {
cy.on('fail', (err) => {
return err.message !== Auth.signInError();
});
Auth.signIn();
expect(Storage.getOidcUser()).to.be.null;
expect(Storage.userIsLogged()).to.be.false;
Auth.signIn().then(() => {
expect(Storage.getOidcUser()).to.be.null;
expect(Storage.userIsLogged()).to.be.false;
});
});
});