Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fredx87/cypress-keycloak-commands
Cypress commands for login with Keycloak
https://github.com/fredx87/cypress-keycloak-commands
auth cypress e2e keycloak login oauth openid testing
Last synced: 9 days ago
JSON representation
Cypress commands for login with Keycloak
- Host: GitHub
- URL: https://github.com/fredx87/cypress-keycloak-commands
- Owner: Fredx87
- License: mit
- Created: 2020-01-20T09:36:51.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-26T13:48:01.000Z (7 months ago)
- Last Synced: 2024-10-23T14:02:57.381Z (15 days ago)
- Topics: auth, cypress, e2e, keycloak, login, oauth, openid, testing
- Language: TypeScript
- Size: 771 KB
- Stars: 69
- Watchers: 8
- Forks: 31
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cypress-keycloak-commands
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
Cypress commands for login with [Keycloak](https://www.keycloak.org/).
- Setup Keycloak configuration from Cypress configuration or environment variables
- Use Fixtures to store users data
- Returns you the tokens of the logged user for calling backend APIs from your test code
- Fake login command for integration testing
- Tested with Keycloak 4.8, 5, 6, 7 and 8## Usage
### Installing
Install the package using npm:
```
npm i -D cypress-keycloak-commands
```or Yarn:
```
yarn add -D cypress-keycloak-commands
```Import the package in the file `cypress/support/commands.js` (or `cypress/support/commands.ts`):
```typescript
import "cypress-keycloak-commands";
```### Setup Keycloak configuration
Setup the Keycloak configuration in `cypress.json` configuration file:
```json
{
"env": {
"auth_base_url": "https://auth.server/auth",
"auth_realm": "my_realm",
"auth_client_id": "my_client_id"
}
}
```You can override this settings for some tests using [Enviroment variabiles](https://docs.cypress.io/guides/guides/environment-variables.html).
### Login commands for E2E Tests
For logging in with Keycloak you must create a [fixture](https://docs.cypress.io/api/commands/fixture.html) containing the user credentials under the directory `cypress/fixtures/users`. For example you can create a file `cypress/fixtures/users/user.json` with this content:
```json
{
"username": "user",
"password": "password"
}
```When you have a fixture you can login using the `kcLogin` command, passing the name of the fixture, and you can perform a logout using the `kcLogout` command:
```typescript
describe("Keycloak Login", () => {
beforeEach(() => {
cy.kcLogout();
cy.kcLogin("user");
cy.visit("/");
});
});
```You should always perform logout _before_ logging in a user, following the best practice of [cleaning the state in the beforeEach hook](https://docs.cypress.io/guides/references/best-practices.html#Using-after-or-afterEach-hooks).
#### Get user tokens for calling APIs from E2E tests
If you need to call backend APIs from your tests using the token of the logged user (for example to [set up the state bypassing the UI](https://docs.cypress.io/guides/getting-started/testing-your-app.html#Bypassing-your-UI)) you can get the retrieved user tokes from the kcLogin command:
```typescript
describe("Keycloak Login", () => {
beforeEach(() => {
cy.kcLogout();
cy.kcLogin("user").as("tokens");
cy.visit("/");
});it("should call an API with the token", () => {
cy.get("@tokens").then(tokens => {
cy.request({
url: "/my_api"
auth: {
bearer: tokens.access_token
}
});
});
});
});
```Note: if you use Typescript you have to specify the return type of the `cy.get` command:
```typescript
cy.get("@tokens");
```### Fake Login for Integration testing
If you are doing an integration test that doesn't call a real backend API, maybe you don't need to authenticate a real user to a running Keycloak instance, but if your app uses the Keycloak Javascript Adapter to check if a user is logged in, you will need to have a mocked user.
To create mocked user data, you need three tokens (access token, refresh token, id token) of a real user returned by your Keycloak instance. You can get them for example from the Dev Tools of your browser, searching for calls to the `token` endpoint of Keycloak. If your app calls the `/account` endpoint to retrieve user information you will also need to have the response returned for the API. Then you can create the fixture with the fake user data:
```json
{
"fakeLogin": {
"access_token": "...",
"refresh_token": "...",
"id_token": "...",
"account": {
"username": "user",
"firstName": "Sample",
"lastName": "User",
"email": "sample-user@example",
"emailVerified": false,
"attributes": {}
}
}
}
```With the fixture in place, you can use the `kcFakeLogin` command to perform a fake login without hitting a real Keycloak instance.
The Fake Login is performed loading a page and passing some keycloak initialization parameters in the URL. If you need to visit a page different from the homepage you must pass its url to the `kcFakeLogin` command as second parameter (instead of using `cy.visit`):
```typescript
describe("Keycloak Fake Login", () => {
beforeEach(() => {
cy.kcFakeLogin("user", "pageToVisit");
});
});
```#### Session Status iframe
At the moment within Cypress is not possible to mock iframe loading and APIs called from an iframe. For this reason, when you use `kcFakeLogin` you have to disable the Session Status iframe, otherwise the Javascript adapter will redirect you to the real Keyacloak instance. You can disable it only when the app is running inside Cypress:
```typescript
const checkLoginIframe = window.Cypress ? false : true;var initOptions = {
responseMode: "fragment",
flow: "standard",
onLoad: "login-required",
checkLoginIframe
};
```## Acknowledgements
Other solutions that have inspired this library:
- https://vrockai.github.io/blog/2017/10/28/cypress-keycloak-intregration/
- https://www.npmjs.com/package/cypress-keycloak## License
MIT
## Contributors ✨
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Gianluca Frediani
🚇 🔧 ⚠️ 📖 🤔 💻
Ilkka Harmanen
💻
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!