|
|
|
import BasePage from '../Base';
|
|
|
|
import { AccountPage } from './index';
|
|
|
|
import * as assert from 'assert';
|
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
|
|
|
|
export class AccountAuthenticationPage extends BasePage {
|
|
|
|
private accountPage: AccountPage;
|
|
|
|
|
|
|
|
constructor(accountPage: AccountPage) {
|
|
|
|
super(accountPage.rootPage);
|
|
|
|
this.accountPage = accountPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
async goto() {
|
|
|
|
await this.waitForResponse({
|
|
|
|
uiAction: () => this.rootPage.goto('/#/account/authentication', { waitUntil: 'networkidle' }),
|
|
|
|
httpMethodsToMatch: ['GET'],
|
|
|
|
requestUrlPathToMatch: '/api/v2/sso-client',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get() {
|
|
|
|
return this.accountPage.get().locator(`[data-test-id="nc-authentication"]`);
|
|
|
|
}
|
|
|
|
|
|
|
|
async verifySAMLProviderCount({ count }: { count: number }) {
|
|
|
|
expect(await this.get().locator('.nc-saml-provider').count()).toBe(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
async verifyOIDCProviderCount({ count }: { count: number }) {
|
|
|
|
expect(await this.get().locator('.nc-oidc-provider').count()).toBe(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getProvider(provider: 'saml' | 'oidc', title: string) {
|
|
|
|
return this.rootPage.locator(`[data-test-id="nc-${provider}-provider-${title}"]`);
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteProvider(provider: 'saml' | 'oidc', title: string) {
|
|
|
|
await this.rootPage.locator(`.nc-${provider}-${title}-more-option`).click();
|
|
|
|
await this.waitForResponse({
|
|
|
|
uiAction: () => this.rootPage.locator(`[data-test-id="nc-${provider}-delete"]`).click(),
|
|
|
|
httpMethodsToMatch: ['DELETE'],
|
|
|
|
requestUrlPathToMatch: `/api/v2/sso-client/`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async toggleProvider(provider: 'saml' | 'oidc', title: string) {
|
|
|
|
await this.waitForResponse({
|
|
|
|
uiAction: () => this.get().locator(`.nc-${provider}-${title}-enable .nc-switch`).click(),
|
|
|
|
httpMethodsToMatch: ['PATCH'],
|
|
|
|
requestUrlPathToMatch: `/api/v2/sso-client/`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async selectScope({ type, locator }: { type: string[] }) {
|
|
|
|
await this.rootPage.locator('.ant-select-selector').click();
|
|
|
|
|
|
|
|
await this.rootPage.locator('.ant-select-selection-search-input[aria-expanded="true"]').waitFor();
|
|
|
|
for (const t of type) {
|
|
|
|
await this.rootPage.locator('.rc-virtual-list-holder-inner > div').locator(`text="${t}"`).click();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async createSAMLProvider(
|
|
|
|
p: { title: string; url?: string; xml?: string },
|
|
|
|
setupRedirectUrlCbk?: ({ redirectUrl: string, audience: string }) => Promise<void>
|
|
|
|
) {
|
|
|
|
const newSamlBtn = this.get().locator('[data-test-id="nc-new-saml-provider"]');
|
|
|
|
|
|
|
|
await newSamlBtn.click();
|
|
|
|
|
|
|
|
const samlModal = this.accountPage.rootPage.locator('.nc-saml-modal');
|
|
|
|
|
|
|
|
if (setupRedirectUrlCbk) {
|
|
|
|
const redirectUrl = (
|
|
|
|
await samlModal.locator('[data-test-id="nc-saml-redirect-url"]:has-text("http://")').textContent()
|
|
|
|
).trim();
|
|
|
|
const audience = (
|
|
|
|
await samlModal.locator('[data-test-id="nc-saml-issuer-url"]:has-text("http://")').textContent()
|
|
|
|
).trim();
|
|
|
|
await setupRedirectUrlCbk({ redirectUrl, audience });
|
|
|
|
}
|
|
|
|
|
|
|
|
await samlModal.locator('[data-test-id="nc-saml-title"]').fill(p.title);
|
|
|
|
if (p.url) {
|
|
|
|
await samlModal.locator('[data-test-id="nc-saml-metadata-url"]').fill(p.url);
|
|
|
|
}
|
|
|
|
if (p.xml) {
|
|
|
|
await samlModal.locator('[data-test-id="nc-saml-xml"]').fill(p.xml);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.waitForResponse({
|
|
|
|
uiAction: () => samlModal.locator('[data-test-id="nc-saml-submit"]').click(),
|
|
|
|
httpMethodsToMatch: ['GET'],
|
|
|
|
requestUrlPathToMatch: '/api/v2/sso-client',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async createOIDCProvider(
|
|
|
|
p: {
|
|
|
|
issuer: string;
|
|
|
|
title: string;
|
|
|
|
clientId: string;
|
|
|
|
clientSecret: string;
|
|
|
|
authUrl: string;
|
|
|
|
userInfoUrl: string;
|
|
|
|
tokenUrl: string;
|
|
|
|
jwkUrl: string;
|
|
|
|
scopes: Array<string>;
|
|
|
|
userAttributes: string;
|
|
|
|
},
|
|
|
|
setupRedirectUrlCbk?: ({ redirectUrl: string }) => Promise<void>
|
|
|
|
) {
|
|
|
|
const newOIDCBtn = this.get().locator('[data-test-id="nc-new-oidc-provider"]');
|
|
|
|
|
|
|
|
await newOIDCBtn.click();
|
|
|
|
|
|
|
|
const oidcModal = this.accountPage.rootPage.locator('.nc-oidc-modal');
|
|
|
|
|
|
|
|
if (setupRedirectUrlCbk) {
|
|
|
|
const redirectUrl = (
|
|
|
|
await oidcModal.locator('[data-test-id="nc-openid-redirect-url"]:has-text("http://")').textContent()
|
|
|
|
).trim();
|
|
|
|
await setupRedirectUrlCbk({ redirectUrl });
|
|
|
|
}
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-title"]').fill(p.title);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-issuer"]').fill(p.issuer);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-client-id"]').fill(p.clientId);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-client-secret"]').fill(p.clientSecret);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-authUrl"]').fill(p.authUrl);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-tokenUrl"]').fill(p.tokenUrl);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-userInfoUrl"]').fill(p.userInfoUrl);
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-jwkUrl"]').fill(p.jwkUrl);
|
|
|
|
|
|
|
|
await this.selectScope({
|
|
|
|
type: p.scopes,
|
|
|
|
locator: oidcModal.locator('[data-test-id="nc-oidc-scope"]'),
|
|
|
|
});
|
|
|
|
|
|
|
|
await oidcModal.locator('[data-test-id="nc-oidc-user-attribute"]').fill(p.userAttributes);
|
|
|
|
|
|
|
|
await this.waitForResponse({
|
|
|
|
uiAction: () => oidcModal.locator('[data-test-id="nc-oidc-save-btn"]').click(),
|
|
|
|
httpMethodsToMatch: ['GET'],
|
|
|
|
requestUrlPathToMatch: '/api/v2/sso-client',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|