mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
681541f41b
adds possibilities to cap authenticated requests and execution seconds of actions on a defined intervall
33 lines
842 B
TypeScript
33 lines
842 B
TypeScript
import { requestHeaders } from './apiauth';
|
|
import { API, Entity, SearchResult, Token } from './types';
|
|
|
|
export function searchSomething(
|
|
token: Token,
|
|
searchPath: string,
|
|
method: string,
|
|
mapResult: (body: any) => SearchResult,
|
|
orgId?: string,
|
|
): Cypress.Chainable<SearchResult> {
|
|
return cy
|
|
.request({
|
|
method: method,
|
|
url: searchPath,
|
|
headers: requestHeaders(token, orgId),
|
|
failOnStatusCode: method == 'POST',
|
|
})
|
|
.then((res) => {
|
|
return mapResult(res.body);
|
|
});
|
|
}
|
|
|
|
export function findFromList(find: (entity: Entity) => boolean, idField: string = 'id'): (body: any) => SearchResult {
|
|
return (b) => {
|
|
const entity = b.result?.find(find);
|
|
return {
|
|
entity: entity,
|
|
sequence: parseInt(<string>b.details.processedSequence),
|
|
id: entity?.[idField],
|
|
};
|
|
};
|
|
}
|