-
Notifications
You must be signed in to change notification settings - Fork 838
Build selenium integration tests #26
Comments
@brockallen What do you want to do/test? I have some experience with selenium using protractor. If I can be of any assistance, let me know. |
We have a working integration test that uses JSDOM and mocked XHR. We are currently discussing how much it's connected to the implementation of oidc-client-js itself (and therefor be difficult to change), but considering that the mocks are touching the interfaces governed by the OIDC specs it feels an acceptable outcome. |
@cburgmer so what are you suggesting? do you think you have a way to do end to end testing? |
If by end-to-end you mean integrating with a real browser and a real OIDC provider, then no. However because of the long timeout between token renewals I was looking for a way to mock the token renewal time. What we now built on our side is a full orchestration of our OIDC flow inside the frontend by mocking out the integration points of oidc-client with the browser. Taking ideas from https://github.com/IdentityModel/oidc-client-js/blob/release/samples/VanillaJS/oidc.js we are mocking the OIDC responses by providing access and identity tokens signed via a key pair just generated for the test. The flow is as follows:
You should be logged in successfully now. Given a low value for the
A new token should now have been set. Big help to finding this flow was reading code from oidc-client-js and jsdom, and activating the following
|
Yea, seems like a lot of work. That's why for now I've just done manual testing with the samples. |
The problem with Login though is that its failure usually has a big impact. Also your release process might not have room for a lot of manual testing (ours doesn't), so we felt we wanted to have some safeguard in place. |
That model the sample app.
The text was updated successfully, but these errors were encountered: