This is a promotion branch for the release v1.9.44 --------- Co-authored-by: NandanAnantharamu <67676905+NandanAnantharamu@users.noreply.github.com> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Anagh Hegde <anagh@appsmith.com> Co-authored-by: Nilesh Sarupriya <nilesh@appsmith.com> Co-authored-by: Nilesh Sarupriya <20905988+nsarupr@users.noreply.github.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: Dhruvik Neharia <dhruvik@appsmith.com> Co-authored-by: Pawan Kumar <pawan.stardust@gmail.com> Co-authored-by: Appsmith Bot <74705725+appsmith-bot@users.noreply.github.com> Co-authored-by: Nilansh Bansal <nilansh@appsmith.com> Co-authored-by: arunvjn <32433245+arunvjn@users.noreply.github.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com> Co-authored-by: Hetu Nandu <hetu@appsmith.com> Co-authored-by: Preet Sidhu <preetsidhu.bits@gmail.com> Co-authored-by: Nidhi <nidhi@appsmith.com> Co-authored-by: Nayan <nayan@appsmith.com> Co-authored-by: Aman Agarwal <aman@appsmith.com> Co-authored-by: Guilherme Ventura <1488378+danguilherme@users.noreply.github.com> Co-authored-by: Aishwarya-U-R <91450662+Aishwarya-U-R@users.noreply.github.com> Co-authored-by: Ayush Pahwa <ayush@appsmith.com> Co-authored-by: Favour Ohanekwu <fohanekwu@gmail.com> Co-authored-by: Manish Kumar <107841575+sondermanish@users.noreply.github.com> Co-authored-by: Nikhil Nandagopal <nikhil.nandagopal@gmail.com> Co-authored-by: Saroj <43822041+sarojsarab@users.noreply.github.com> Co-authored-by: sneha122 <sneha@appsmith.com> Co-authored-by: “sneha122” <“sneha@appsmith.com”> Co-authored-by: Ankita Kinger <ankita@appsmith.com> Co-authored-by: danceAndJive <99446612+danceAndJive@users.noreply.github.com> Co-authored-by: Kyle Zhang <u6133716@anu.edu.au> Co-authored-by: Rishabh Rathod <rishabh.rathod@appsmith.com> Co-authored-by: sharanya-appsmith <135708039+sharanya-appsmith@users.noreply.github.com> Co-authored-by: Diljit <diljit@appsmith.com> Co-authored-by: Vemparala Surya Vamsi <121419957+vsvamsi1@users.noreply.github.com> Co-authored-by: Rahul Barwal <rahul.barwal@appsmith.com> Co-authored-by: Jacques Ikot <jacquesikot@gmail.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Victor Kostyuk <torcoste@gmail.com> Co-authored-by: Rudraprasad Das <rudra@appsmith.com> Co-authored-by: manish kumar <manish@appsmith.com>
160 lines
4.6 KiB
TypeScript
160 lines
4.6 KiB
TypeScript
import "cypress-wait-until";
|
|
import { ObjectsRegistry } from "../Objects/Registry";
|
|
import { ReusableHelper } from "../Objects/ReusableHelper";
|
|
|
|
export const EntityItems = {
|
|
Page: 0,
|
|
Query: 1,
|
|
Api: 2,
|
|
JSObject: 3,
|
|
Widget: 4,
|
|
Datasource: 5,
|
|
} as const;
|
|
|
|
export type EntityItemsType = (typeof EntityItems)[keyof typeof EntityItems];
|
|
|
|
export class AssertHelper extends ReusableHelper {
|
|
public _modifierKey = Cypress.platform === "darwin" ? "meta" : "ctrl";
|
|
|
|
public isMac = Cypress.platform === "darwin";
|
|
|
|
public Sleep(timeout = 1000) {
|
|
cy.wait(timeout);
|
|
}
|
|
|
|
public AssertDocumentReady() {
|
|
cy.waitUntil(() =>
|
|
//cy.document().then((doc) => doc.readyState === "complete"),
|
|
cy.document().should((doc) => {
|
|
expect(doc.readyState).to.equal("complete");
|
|
}),
|
|
);
|
|
//cy.window({ timeout: 60000 }).should("have.property", "onload");//commenting to reduce time
|
|
}
|
|
|
|
public AssertDelete(entityType: EntityItemsType) {
|
|
let networkCall = "";
|
|
switch (entityType) {
|
|
case EntityItems.Api:
|
|
case EntityItems.Query:
|
|
networkCall = "deleteAction";
|
|
break;
|
|
case EntityItems.Widget:
|
|
networkCall = "updateLayout";
|
|
break;
|
|
case EntityItems.JSObject:
|
|
networkCall = "deleteJSCollection";
|
|
this.AssertContains("deleted successfully");
|
|
break;
|
|
case EntityItems.Datasource:
|
|
networkCall = "deleteDatasource";
|
|
break;
|
|
case EntityItems.Page:
|
|
networkCall = "deletePage";
|
|
break;
|
|
|
|
default:
|
|
networkCall && this.AssertNetworkStatus(networkCall);
|
|
}
|
|
}
|
|
|
|
public GetAliasName(aliasName: string) {
|
|
aliasName = aliasName.startsWith("@") ? aliasName : "@" + aliasName;
|
|
return aliasName;
|
|
}
|
|
|
|
public WaitForNetworkCall(aliasName: string, responseTimeout = 150000) {
|
|
// cy.wait(aliasName).then(($apiCall: any) => {
|
|
// expect($apiCall.response.body.responseMeta.status).to.eq(expectedStatus);
|
|
// });
|
|
|
|
this.Sleep(); //wait a bit to avoid flaky tests
|
|
return cy
|
|
.wait(this.GetAliasName(aliasName), { timeout: responseTimeout })
|
|
.then((interceptions) => {
|
|
return cy
|
|
.get(this.GetAliasName(aliasName), { timeout: responseTimeout })
|
|
.its("response");
|
|
});
|
|
}
|
|
|
|
public AssertNetworkStatus(
|
|
aliasName: string,
|
|
expectedStatus: number | number[] = 200,
|
|
waitForNetworkCall = true,
|
|
) {
|
|
if (waitForNetworkCall) {
|
|
// If waitForNetworkCall is true, then use the response from WaitForNetworkCall call
|
|
return this.WaitForNetworkCall(aliasName).then((response: any) =>
|
|
this.processNetworkStatus(response, expectedStatus),
|
|
);
|
|
} else {
|
|
// If interception is not available, directly get the alias & use it
|
|
return cy
|
|
.get(this.GetAliasName(aliasName))
|
|
.its("response")
|
|
.then((interception: any) =>
|
|
this.processNetworkStatus(interception, expectedStatus),
|
|
);
|
|
}
|
|
}
|
|
|
|
private processNetworkStatus(
|
|
response: any,
|
|
expectedStatus: number | number[],
|
|
) {
|
|
const responseStatus = Number(response.body.responseMeta.status);
|
|
const expectedStatusArray = Array.isArray(expectedStatus)
|
|
? expectedStatus
|
|
: [expectedStatus];
|
|
|
|
expect(expectedStatusArray).to.include(responseStatus);
|
|
return responseStatus;
|
|
}
|
|
|
|
public AssertNetworkResponseData(
|
|
aliasName: string,
|
|
waitForNetworkCall = true,
|
|
) {
|
|
if (waitForNetworkCall) {
|
|
// If waitForNetworkCall is true, then use the interception from received call
|
|
this.WaitForNetworkCall(aliasName).then((interception: any) => {
|
|
this.processNetworkResponseData(interception);
|
|
});
|
|
} else {
|
|
// If interception is not available, directly get the alias & use it
|
|
cy.get(this.GetAliasName(aliasName))
|
|
.its("response")
|
|
.then((interception: any) => {
|
|
this.processNetworkResponseData(interception);
|
|
});
|
|
}
|
|
}
|
|
|
|
private processNetworkResponseData(response: any) {
|
|
expect(response.body.data).to.not.be.empty;
|
|
}
|
|
|
|
public AssertNetworkExecutionSuccess(
|
|
aliasName: string,
|
|
expectedRes = true,
|
|
waitForNetworkCall = true,
|
|
) {
|
|
waitForNetworkCall && this.WaitForNetworkCall(aliasName);
|
|
cy.get(aliasName)
|
|
.its("response.body.data.isExecutionSuccess")
|
|
.should("eq", expectedRes);
|
|
}
|
|
|
|
public AssertContains(
|
|
text: string | RegExp,
|
|
exists: "exist" | "not.exist" | "be.visible" = "exist",
|
|
selector?: string,
|
|
) {
|
|
if (selector) {
|
|
return cy.contains(selector, text).should(exists);
|
|
}
|
|
return cy.contains(text).should(exists);
|
|
}
|
|
}
|