mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
6e89b7d0a1
* rename org * add data-e2e * e2e test * restore state after * use ngIf instead of hasrole directive and initialized regex * rm h2 check * Update e2e/cypress/e2e/organization/organizations.cy.ts Co-authored-by: Elio Bischof <eliobischof@gmail.com> * Update console/src/assets/i18n/de.json Co-authored-by: Elio Bischof <eliobischof@gmail.com> * Update console/src/assets/i18n/de.json Co-authored-by: Elio Bischof <eliobischof@gmail.com> * Update console/src/assets/i18n/en.json Co-authored-by: Elio Bischof <eliobischof@gmail.com> * change e2e test * org param * reintroduct org param * use org query param * org rename test * no initial focus on button * contain name Co-authored-by: Elio Bischof <eliobischof@gmail.com>
31 lines
987 B
TypeScript
31 lines
987 B
TypeScript
import { ensureSomething } from './ensure';
|
|
import { searchSomething } from './search';
|
|
import { API } from './types';
|
|
import { host } from '../login/users';
|
|
|
|
export function ensureOrgExists(api: API, name: string): Cypress.Chainable<number> {
|
|
return ensureSomething(
|
|
api,
|
|
() =>
|
|
searchSomething(
|
|
api,
|
|
encodeURI(`${api.mgmtBaseURL}/global/orgs/_by_domain?domain=${name}.${host(Cypress.config('baseUrl'))}`),
|
|
'GET',
|
|
(res) => {
|
|
return { entity: res.org, id: res.org?.id, sequence: res.org?.details?.sequence };
|
|
},
|
|
),
|
|
() => `${api.mgmtBaseURL}/orgs`,
|
|
'POST',
|
|
{ name: name },
|
|
(org) => org?.name === name,
|
|
(res) => res.id,
|
|
);
|
|
}
|
|
|
|
export function getOrgUnderTest(api: API): Cypress.Chainable<number> {
|
|
return searchSomething(api, `${api.mgmtBaseURL}/orgs/me`, 'GET', (res) => {
|
|
return { entity: res.org, id: res.org.id, sequence: res.org.details.sequence };
|
|
}).then((res) => res.entity.id);
|
|
}
|