2022-03-02 16:54:43 +00:00
|
|
|
import datasourceFormData from "../../fixtures/datasources.json";
|
2022-05-18 10:39:42 +00:00
|
|
|
import { ObjectsRegistry } from "../Objects/Registry";
|
2022-07-29 08:48:25 +00:00
|
|
|
|
2022-09-19 05:32:06 +00:00
|
|
|
const DataSourceKVP = {
|
2022-07-29 08:48:25 +00:00
|
|
|
Postgres: "PostgreSQL",
|
|
|
|
|
Mongo: "MongoDB",
|
|
|
|
|
MySql: "MySQL",
|
2022-08-04 04:48:15 +00:00
|
|
|
}; //DataSources KeyValuePair
|
2022-07-29 08:48:25 +00:00
|
|
|
|
2022-03-02 16:54:43 +00:00
|
|
|
export class DataSources {
|
2022-05-18 10:39:42 +00:00
|
|
|
private agHelper = ObjectsRegistry.AggregateHelper;
|
2022-05-31 05:33:59 +00:00
|
|
|
private table = ObjectsRegistry.Table;
|
2022-05-18 10:39:42 +00:00
|
|
|
private ee = ObjectsRegistry.EntityExplorer;
|
2022-05-31 05:33:59 +00:00
|
|
|
private locator = ObjectsRegistry.CommonLocators;
|
2022-05-18 10:39:42 +00:00
|
|
|
|
|
|
|
|
private _dsCreateNewTab = "[data-cy=t--tab-CREATE_NEW]";
|
2022-08-28 23:06:17 +00:00
|
|
|
private _addNewDataSource = ".t--entity-add-btn.datasources";
|
2022-05-18 10:39:42 +00:00
|
|
|
private _createNewPlgin = (pluginName: string) =>
|
|
|
|
|
".t--plugin-name:contains('" + pluginName + "')";
|
|
|
|
|
private _host = "input[name='datasourceConfiguration.endpoints[0].host']";
|
|
|
|
|
private _port = "input[name='datasourceConfiguration.endpoints[0].port']";
|
2022-08-24 14:23:41 +00:00
|
|
|
_databaseName =
|
2022-05-18 10:39:42 +00:00
|
|
|
"input[name='datasourceConfiguration.authentication.databaseName']";
|
|
|
|
|
private _username =
|
|
|
|
|
"input[name='datasourceConfiguration.authentication.username']";
|
|
|
|
|
private _sectionAuthentication = "[data-cy=section-Authentication]";
|
|
|
|
|
private _password =
|
|
|
|
|
"input[name = 'datasourceConfiguration.authentication.password']";
|
|
|
|
|
private _testDs = ".t--test-datasource";
|
|
|
|
|
private _saveDs = ".t--save-datasource";
|
|
|
|
|
private _datasourceCard = ".t--datasource";
|
2022-08-27 12:40:11 +00:00
|
|
|
_activeDS = "[data-testid='active-datasource-name']";
|
2022-05-18 10:39:42 +00:00
|
|
|
_templateMenu = ".t--template-menu";
|
2022-07-29 08:48:25 +00:00
|
|
|
_templateMenuOption = (action: string) =>
|
|
|
|
|
"//div[contains(@class, 't--template-menu')]//div[text()='" + action + "']";
|
2022-05-18 10:39:42 +00:00
|
|
|
private _createQuery = ".t--create-query";
|
|
|
|
|
_visibleTextSpan = (spanText: string) =>
|
|
|
|
|
"//span[contains(text(),'" + spanText + "')]";
|
|
|
|
|
_dropdownTitle = (ddTitle: string) =>
|
|
|
|
|
"//p[contains(text(),'" +
|
|
|
|
|
ddTitle +
|
2022-10-06 11:06:29 +00:00
|
|
|
"')]/ancestor::div[@class='form-config-top']/following-sibling::div[@class='t--form-control-DROP_DOWN']//div[@role='listbox']";
|
2022-05-18 10:39:42 +00:00
|
|
|
_reconnectModal = "div.reconnect-datasource-modal";
|
|
|
|
|
_activeDSListReconnectModal = (dbName: string) =>
|
|
|
|
|
"//div[contains(@class, 't--ds-list')]//span[text()='" + dbName + "']";
|
2022-05-23 05:20:27 +00:00
|
|
|
_runQueryBtn = ".t--run-query";
|
|
|
|
|
_newDatabases = "#new-datasources";
|
|
|
|
|
_selectDatasourceDropdown = "[data-cy=t--datasource-dropdown]";
|
|
|
|
|
_selectTableDropdown = "[data-cy=t--table-dropdown]";
|
feat: Simplified Google Sheets queries (#14869)
* Client changes 1
* add DSL functionality
* Temp commit for refactoring changes
* Do I even know what I'm doing here?
* chore: Second GS layout
* Update: Visibility conditional outputs for schemas
- Added the output from conditional outputs for schema children too
* Update: Entity selector visibility control
- Added logic for controlling visibility of sub components via the JS expressions system
* Update: Passing disabled prop to toggle button
* Update: Passing disabled prop to toggle btn
* Update: Styled component for toggle button
- Added disabled styles based on the disabled prop sent to the toggle form view JSON button
* Update: configProperty role in Entity Selector
- Removed dependance of the configProperty of the entity selector children to it's parent component
* Update: type of placeholder key
- Made placeholder key from form config JSON to accept either string or an object
- Earlier only string was accepted
- This is for pagination component
* Update: Added placeholder control for pagination
* Client changes 1
* add DSL functionality
* Do I even know what I'm doing here?
* fix: updated uqi forms ui, clubbed JS switch button to ads, updated tooltip design
* fix: updated tooltip component for wrong ui on entity explore
* temp triggers
* fix: updated uqi forms ui, clubbed JS switch button to ads, updated tooltip design (#12395)
* fix: updated uqi forms ui, clubbed JS switch button to ads, updated tooltip design
* fix: updated tooltip component for wrong ui on entity explore
* fix: updated tooltip ui, where condition placement, sort by ui
* temp form data access logic
* fix: updated sorting type width ui
* fix: updated ui for spacing, width and text issues
* Update: Type for tooltip of UQI forms
- Added option to send an object to the tooltipText object.
- This allows for composite components like pagination to have tooltips for each sub component
* Update: tooltip for pagination component
- Added handling to parse the tooltip for multiple components.
- This allows for composite components like pagination to have tooltips for each sub component
* Update: Type cast for tooltip component
- Made the content passed to tooltip component as a string only
* Update: Fixed tooltip component CSS
* Update: Dropdown option component
- Added a tooltip wrapper to each option
- This is to show on hover text like disabled state
* fix: updated ẇhere clause broken ui for condition
* Add: functions to check and extract expressions
- Loop through the formConfig and find any keys that have a value that is bindable
- Used pre defined regex to check if value is a moustache binding
* Add: Types for evaluated form configs
- Added types for the form configs to be evaluated and their output post eval
* Add: Flow to run the form config
- Run the form config and update the result to the redux state
* Update: Name of the type for formconfigs
- Updated since it was clashing with a component of the same name
* Add: Function to enforce config type checks
- This is done so that the improper configs can be weeded out and the rest of the form can be shown
* Add: Function to update evaluated config
- Added option to update the config if it's values needed evaluation
* Add: Type check for schema sections
* Update: Error handling for invalid control type
- We were throwing an exception till now, changed it to a warning text
* Add: Exposed tooltip for dropdown option disabled state
* Update: switch to json mode functionality
- Added logic to convert data to a string rather than an object when the first switch to JSON mode happens
* Update: Added key to tooltip for dropdown options
* Trigger API modification
* Add: function to fetch default trigger URL
* Update: Made URL optional in dynamic trigger config
* Update: Dynamic trigger API call
- Made the API call for dynamic triggers have URL as optional field
- Added type check to the response of the API call
* Update: resp type for trigger APIs
* Update: Moved code to utils folder
- Moved functions for UQI form eval processing to utils file
* Update: passing original controltype to JS switch
* Update: config for JSON editor mode
- Updated the config to have different options for JSON mode depending on the original control type
* Update: Connected line numbers flag to config
* Revert: CSS changes for tooltip
* Refactor: Removed consle
* Add: type for the config of dynamic values
* Add: Feature to evaluate config for triggers
* Refactor: fix type check errors
* fix: dropdown ui width with text alignment
* Update: fixed selector for dynamic values
* Update: selector call for fetchDynamicValues
* Add table header index prop for columns selector
* migration partial commit
* migration partial commit
* Refactor: removed unused import
* Update: reused function for checking dynamic value
* Update: removed unused import
* Fix format JSON issues
* Retrieve binding paths from entity selector components
* Fixes 6 remaining issues with UQI implementation
* Fix dropdown issues
* Fix dropdown height issues and fixes triggering of APIs when option is deselected
* Migration changes
* Fix QA generated UQI issues
* Fix projection component height and route change logic
* Fix multi select dropdown placeholder text issue and json stringify issue with switching view types
* Reset entity type value when command value changes
* Test changes
* Review comments
* Moved migrations around
* Corrected import statement
* Added JSON schema migration
* Updated schema version
* perf improvements and filter dropdown options feature
* Fix Code mirror component config for toggleComponentToJson input fields.
* Fix prettier issues
* fix prettier issues
* Fix style issues as a result of the merged conflicts
* Fix failing test case
* Fixed a few other flows (#14225)
* Fixed a few other flows
* Review comments
* Fix generate CRUD, fix evaluation of dynamic bindings and fix various styling issues.
* More fixes (#14367)
* Factor in the root formconfig parent key.
* Fix flickering issues, and evaluatedFormConfig issues
* fix: Teeny bugs (#14455)
* Teeny bugs
* Added previous functionality as is
* Improvements in the way we fetch dynamic values
* Fix stringiification issue and cyclic dependency issues
* Resolve projection component values deletion
* Resolve merge conflicts and fix prettier issues
* fix: Tsc issues
* Fix property pane connection navigation
* updating ee locator
* updating inputfield locator
* dropdown locator update
* Merge conflict not properly resolved.
* Fix s3 spec
* Fix Mongo Spec
* Fix some more tests
* fix: prevent cyclic dependency when switching to js mode (#14668)
* add delete events for change from array to string in diff
* add test to assert absence of cyclic dependency error when switching to js in switchgroup widget
* Assert that evaluation is not disabled when no cyclic dependency happens
* Cypress test preparations for google sheets and form controls
* Fixed a few test errors (#14874)
* Add: unit tests for uqi UI updates
- view type tests
- conditional output extraction
- processing conditional output to handle view/enabled state of the component
* Add: completed isValidFormConfig test
* Update: improved tests for update config
- These tests cover the functionality to update a section config after it's components are done evaluating
* Fix failing cypress tests and cyclic dependency issue
* Fixes some more tests
* Fixed migration of row objects (#14896)
* Bumped the version of design system package
* Update: reverted change to EE selector
* Fix deletion pointer
* Update: selector for js on load spec
- Synced with changes related to ADS dropdown
* Fix mongoDBShoppingCart spec
* Remove comments
* Fix: mongo shopping cart test failures
* fix: mongo shopping cart spec
* Dummy push to retrigger vercel
* fix: mongo shopping cart spec
* Update MongoDBShoppingCart_spec.js
* fix: removed unused click away
* dummy commit
* Update: moved helper functions to separate file
* Add: added tests for saga functions
- Worked on testing for
- extractFetchDynamicValueFormConfigs
- extractQueueOfValuesToBeFetched
* Add if check for queueOfValuesToBeFetched
* Resolve review comments
* Empty-Commit
Co-authored-by: Irongade <adeoluayangade@yahoo.com>
Co-authored-by: Ayush Pahwa <ayush@appsmith.com>
Co-authored-by: Aman Agarwal <aman@appsmith.com>
Co-authored-by: Ayangade Adeoluwa <37867493+Irongade@users.noreply.github.com>
Co-authored-by: Aishwarya UR <aishwarya@appsmith.com>
Co-authored-by: Favour Ohanekwu <fohanekwu@gmail.com>
Co-authored-by: Albin <albin@appsmith.com>
2022-07-04 05:43:27 +00:00
|
|
|
_selectSheetNameDropdown = "[data-cy=t--sheetName-dropdown]";
|
|
|
|
|
_selectTableHeaderIndexInput = "[data-cy=t--tableHeaderIndex]";
|
2022-05-31 05:33:59 +00:00
|
|
|
_dropdownOption = ".bp3-popover-content .t--dropdown-option";
|
2022-05-23 05:20:27 +00:00
|
|
|
_generatePageBtn = "[data-cy=t--generate-page-form-submit]";
|
2022-05-31 05:33:59 +00:00
|
|
|
_selectedRow = ".tr.selected-row";
|
|
|
|
|
_activeTab = "span:contains('Active')";
|
|
|
|
|
_contextMenuDatasource = "span[name='comment-context-menu']";
|
|
|
|
|
_contextMenuDelete = ".t--datasource-option-delete";
|
|
|
|
|
_datasourceCardGeneratePageBtn = ".t--generate-template";
|
|
|
|
|
_queryTableResponse =
|
|
|
|
|
"//div[@data-guided-tour-id='query-table-response']//div[@class='tbody']//div[@class ='td']";
|
2022-06-17 11:31:40 +00:00
|
|
|
_queryResponseHeader = (header: string) =>
|
|
|
|
|
"//div[@data-guided-tour-id='query-table-response']//div[@class='table']//div[@role ='columnheader']//span[text()='" +
|
|
|
|
|
header +
|
|
|
|
|
"']";
|
2022-05-31 05:33:59 +00:00
|
|
|
_refreshIcon = "button .bp3-icon-refresh";
|
|
|
|
|
_addIcon = "button .bp3-icon-add";
|
2022-06-06 05:59:15 +00:00
|
|
|
_queryError = "span.t--query-error";
|
|
|
|
|
_queryResponse = (responseType: string) =>
|
|
|
|
|
"li[data-cy='t--tab-" + responseType + "']";
|
|
|
|
|
_queryRecordResult = (recordCount: number) =>
|
2022-10-20 12:08:48 +00:00
|
|
|
`//div/span[text()='Result:']/span[contains(text(),' ${recordCount} Record')]`;
|
2022-06-16 06:50:02 +00:00
|
|
|
_noRecordFound = "span[data-testid='no-data-table-message']";
|
2022-06-17 06:12:18 +00:00
|
|
|
_usePreparedStatement =
|
|
|
|
|
"input[name='actionConfiguration.pluginSpecifiedTemplates[0].value'][type='checkbox']";
|
2022-07-16 10:41:17 +00:00
|
|
|
_queriesOnPageText = (dsName: string) =>
|
|
|
|
|
".t--datasource-name:contains('" + dsName + "') .t--queries-for-DB";
|
2022-07-29 08:48:25 +00:00
|
|
|
_mockDB = (dbName: string) =>
|
|
|
|
|
"//span[text()='" +
|
|
|
|
|
dbName +
|
|
|
|
|
"']/ancestor::div[contains(@class, 't--mock-datasource')][1]";
|
2022-09-09 15:59:47 +00:00
|
|
|
private _createGraphQLDatasource = ".t--createBlankApi-graphql-plugin";
|
|
|
|
|
_graphqlQueryEditor = ".t--graphql-query-editor .CodeMirror textarea";
|
|
|
|
|
_graphqlVariableEditor = ".t--graphql-variable-editor .CodeMirror textarea";
|
|
|
|
|
_graphqlPagination = {
|
|
|
|
|
_limitVariable: ".t--apiFormPaginationLimitVariable",
|
|
|
|
|
_limitValue: ".t--apiFormPaginationLimitValue .CodeMirror textarea",
|
|
|
|
|
_offsetVariable: ".t--apiFormPaginationOffsetVariable",
|
|
|
|
|
_offsetValue: ".t--apiFormPaginationOffsetValue .CodeMirror textarea",
|
|
|
|
|
_prevLimitVariable: ".t--apiFormPaginationPrevLimitVariable",
|
|
|
|
|
_prevLimitValue: ".t--apiFormPaginationPrevLimitValue .CodeMirror textarea",
|
|
|
|
|
_prevCursorVariable: ".t--apiFormPaginationPrevCursorVariable",
|
|
|
|
|
_prevCursorValue:
|
|
|
|
|
".t--apiFormPaginationPrevCursorValue .CodeMirror textarea",
|
|
|
|
|
_nextLimitVariable: ".t--apiFormPaginationNextLimitVariable",
|
|
|
|
|
_nextLimitValue: ".t--apiFormPaginationNextLimitValue .CodeMirror textarea",
|
|
|
|
|
_nextCursorVariable: ".t--apiFormPaginationNextCursorVariable",
|
|
|
|
|
_nextCursorValue:
|
|
|
|
|
".t--apiFormPaginationNextCursorValue .CodeMirror textarea",
|
|
|
|
|
};
|
2022-08-04 04:48:15 +00:00
|
|
|
_queryDoc = ".t--datasource-documentation-link";
|
|
|
|
|
_globalSearchModal = ".t--global-search-modal";
|
|
|
|
|
_globalSearchInput = (inputText: string) =>
|
|
|
|
|
"//input[@id='global-search'][@value='" + inputText + "']";
|
|
|
|
|
_gsScopeDropdown =
|
|
|
|
|
"[data-cy='datasourceConfiguration.authentication.scopeString']";
|
|
|
|
|
_gsScopeOptions = ".ads-dropdown-options-wrapper div > span div span";
|
2022-08-24 14:23:41 +00:00
|
|
|
private _queryTimeout =
|
|
|
|
|
"//input[@name='actionConfiguration.timeoutInMillisecond']";
|
2022-05-31 05:33:59 +00:00
|
|
|
|
|
|
|
|
public StartDataSourceRoutes() {
|
|
|
|
|
cy.intercept("PUT", "/api/v1/datasources/*").as("saveDatasource");
|
|
|
|
|
cy.intercept("POST", "/api/v1/datasources/test").as("testDatasource");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private ReplaceApplicationIdForInterceptPages(fixtureFile: any) {
|
|
|
|
|
let currentAppId, currentURL;
|
|
|
|
|
cy.readFile(
|
|
|
|
|
fixtureFile,
|
|
|
|
|
// (err: string) => {
|
|
|
|
|
// if (err) {
|
|
|
|
|
// return console.error(err);
|
|
|
|
|
// }}
|
|
|
|
|
).then((data) => {
|
|
|
|
|
cy.url().then((url) => {
|
|
|
|
|
currentURL = url;
|
|
|
|
|
const myRegexp = /applications(.*)/;
|
|
|
|
|
const match = myRegexp.exec(currentURL);
|
|
|
|
|
cy.log(currentURL + "currentURL from intercept is");
|
|
|
|
|
currentAppId = match ? match[1].split("/")[1] : null;
|
|
|
|
|
data.data.page.applicationId = currentAppId;
|
|
|
|
|
cy.writeFile(fixtureFile, JSON.stringify(data));
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-13 20:28:46 +00:00
|
|
|
public startRoutesForDatasource() {
|
|
|
|
|
cy.server();
|
|
|
|
|
cy.route("PUT", "/api/v1/datasources/*").as("saveDatasource");
|
|
|
|
|
cy.route("POST", "/api/v1/datasources/test").as("testDatasource");
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-31 05:33:59 +00:00
|
|
|
public StartInterceptRoutesForMySQL() {
|
|
|
|
|
//All stubbing - updating app id to current app id for Delete app by api call to be successfull:
|
|
|
|
|
|
|
|
|
|
this.ReplaceApplicationIdForInterceptPages(
|
|
|
|
|
"cypress/fixtures/mySQL_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
cy.intercept("POST", "/api/v1/datasources/test", {
|
|
|
|
|
fixture: "testAction.json",
|
|
|
|
|
}).as("testDatasource");
|
|
|
|
|
cy.intercept("GET", "/api/v1/datasources/*/structure?ignoreCache=*", {
|
|
|
|
|
fixture: "mySQL_GET_selectTableDropdown.json",
|
|
|
|
|
}).as("getDatasourceStructure");
|
|
|
|
|
cy.intercept("PUT", "/api/v1/pages/crud-page/*", {
|
|
|
|
|
fixture: "mySQL_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
}).as("replaceLayoutWithCRUDPage");
|
|
|
|
|
cy.intercept("GET", "/api/v1/actions*", {
|
|
|
|
|
fixture: "mySQL_GET_Actions.json",
|
|
|
|
|
}).as("getActions");
|
|
|
|
|
cy.intercept("POST", "/api/v1/actions/execute", {
|
|
|
|
|
fixture: "mySQL_POST_Execute.json",
|
|
|
|
|
}).as("postExecute");
|
|
|
|
|
cy.intercept("POST", "/api/v1/pages/crud-page", {
|
|
|
|
|
fixture: "mySQL_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
}).as("replaceLayoutWithCRUDPage");
|
|
|
|
|
}
|
2022-05-18 10:39:42 +00:00
|
|
|
|
2022-06-06 05:59:15 +00:00
|
|
|
public StartInterceptRoutesForMongo() {
|
|
|
|
|
//All stubbing
|
|
|
|
|
this.ReplaceApplicationIdForInterceptPages(
|
|
|
|
|
"cypress/fixtures/mongo_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
cy.intercept("POST", "/api/v1/datasources/test", {
|
|
|
|
|
fixture: "testAction.json",
|
|
|
|
|
}).as("testDatasource");
|
|
|
|
|
cy.intercept("GET", "/api/v1/datasources/*/structure?ignoreCache=*", {
|
|
|
|
|
fixture: "mongo_GET_selectTableDropdown.json",
|
|
|
|
|
}).as("getDatasourceStructure");
|
|
|
|
|
cy.intercept("PUT", "/api/v1/pages/crud-page/*", {
|
|
|
|
|
fixture: "mongo_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
}).as("replaceLayoutWithCRUDPage");
|
|
|
|
|
cy.intercept("GET", "/api/v1/actions*", {
|
|
|
|
|
fixture: "mongo_GET_Actions.json",
|
|
|
|
|
}).as("getActions");
|
|
|
|
|
cy.intercept("POST", "/api/v1/actions/execute", {
|
|
|
|
|
fixture: "mongo_POST_Actions.json",
|
|
|
|
|
}).as("postExecute");
|
|
|
|
|
cy.intercept("POST", "/api/v1/pages/crud-page", {
|
|
|
|
|
fixture: "mongo_PUT_replaceLayoutWithCRUD.json",
|
|
|
|
|
}).as("post_replaceLayoutCRUDStub");
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-04 04:48:15 +00:00
|
|
|
public StartInterceptRoutesForFirestore() {
|
|
|
|
|
//All stubbing
|
|
|
|
|
cy.intercept("POST", "/api/v1/datasources/test", {
|
|
|
|
|
fixture: "testAction.json",
|
|
|
|
|
}).as("testDatasource");
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-24 14:23:41 +00:00
|
|
|
public CreatePlugIn(pluginName: string, waitForToastDisappear = false) {
|
2022-05-31 05:33:59 +00:00
|
|
|
cy.get(this._createNewPlgin(pluginName))
|
|
|
|
|
.parent("div")
|
|
|
|
|
.trigger("click", { force: true });
|
2022-09-12 04:18:44 +00:00
|
|
|
this.agHelper.WaitUntilEleAppear(this.locator._toastMsg);
|
2022-09-07 18:25:55 +00:00
|
|
|
this.agHelper.AssertElementAbsence(
|
|
|
|
|
this.locator._specificToast("Duplicate key error"),
|
|
|
|
|
);
|
2022-08-24 14:23:41 +00:00
|
|
|
if (waitForToastDisappear)
|
|
|
|
|
this.agHelper.WaitUntilToastDisappear("datasource created");
|
|
|
|
|
else this.agHelper.AssertContains("datasource created");
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public NavigateToDSCreateNew() {
|
2022-08-28 23:06:17 +00:00
|
|
|
this.agHelper.GetNClick(this._addNewDataSource);
|
2022-05-23 05:20:27 +00:00
|
|
|
// cy.get(this._dsCreateNewTab)
|
|
|
|
|
// .should("be.visible")
|
|
|
|
|
// .click({ force: true });
|
|
|
|
|
cy.get(this._newDatabases).should("be.visible");
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
2022-10-20 12:08:48 +00:00
|
|
|
CreateMockDB(dbName: "Users" | "Movies"): Cypress.Chainable<string> {
|
|
|
|
|
this.NavigateToDSCreateNew();
|
|
|
|
|
this.agHelper.GetNClick(this._mockDB(dbName));
|
|
|
|
|
return cy
|
|
|
|
|
.wait("@getMockDb")
|
|
|
|
|
.then(($createdMock) => $createdMock.response?.body.data.name);
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-20 18:01:50 +00:00
|
|
|
public FillPostgresDSForm(
|
|
|
|
|
shouldAddTrailingSpaces = false,
|
|
|
|
|
username = "",
|
|
|
|
|
password = "",
|
|
|
|
|
) {
|
2022-05-18 10:39:42 +00:00
|
|
|
const hostAddress = shouldAddTrailingSpaces
|
|
|
|
|
? datasourceFormData["postgres-host"] + " "
|
|
|
|
|
: datasourceFormData["postgres-host"];
|
|
|
|
|
const databaseName = shouldAddTrailingSpaces
|
|
|
|
|
? datasourceFormData["postgres-databaseName"] + " "
|
|
|
|
|
: datasourceFormData["postgres-databaseName"];
|
|
|
|
|
cy.get(this._host).type(hostAddress);
|
|
|
|
|
cy.get(this._port).type(datasourceFormData["postgres-port"].toString());
|
|
|
|
|
cy.get(this._databaseName)
|
|
|
|
|
.clear()
|
|
|
|
|
.type(databaseName);
|
|
|
|
|
cy.get(this._sectionAuthentication).click();
|
2022-07-20 18:01:50 +00:00
|
|
|
cy.get(this._username).type(
|
|
|
|
|
username == "" ? datasourceFormData["postgres-username"] : username,
|
|
|
|
|
);
|
|
|
|
|
cy.get(this._password).type(
|
|
|
|
|
password == "" ? datasourceFormData["postgres-password"] : password,
|
|
|
|
|
);
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
2022-05-23 05:20:27 +00:00
|
|
|
public FillMongoDSForm(shouldAddTrailingSpaces = false) {
|
|
|
|
|
const hostAddress = shouldAddTrailingSpaces
|
|
|
|
|
? datasourceFormData["mongo-host"] + " "
|
|
|
|
|
: datasourceFormData["mongo-host"];
|
|
|
|
|
cy.get(this._host).type(hostAddress);
|
|
|
|
|
cy.get(this._port).type(datasourceFormData["mongo-port"].toString());
|
|
|
|
|
cy.get(this._sectionAuthentication).click();
|
|
|
|
|
cy.get(this._databaseName)
|
|
|
|
|
.clear()
|
|
|
|
|
.type(datasourceFormData["mongo-databaseName"]);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-31 05:33:59 +00:00
|
|
|
public FillMySqlDSForm(shouldAddTrailingSpaces = false) {
|
|
|
|
|
const hostAddress = shouldAddTrailingSpaces
|
|
|
|
|
? datasourceFormData["mysql-host"] + " "
|
|
|
|
|
: datasourceFormData["mysql-host"];
|
|
|
|
|
const databaseName = shouldAddTrailingSpaces
|
|
|
|
|
? datasourceFormData["mysql-databaseName"] + " "
|
|
|
|
|
: datasourceFormData["mysql-databaseName"];
|
|
|
|
|
cy.get(this._host).type(hostAddress);
|
|
|
|
|
cy.get(this._port).type(datasourceFormData["mysql-port"].toString());
|
|
|
|
|
cy.get(this._databaseName)
|
|
|
|
|
.clear()
|
|
|
|
|
.type(databaseName);
|
|
|
|
|
cy.get(this._sectionAuthentication).click();
|
|
|
|
|
cy.get(this._username).type(datasourceFormData["mysql-username"]);
|
|
|
|
|
cy.get(this._password).type(datasourceFormData["mysql-password"]);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-09 15:59:47 +00:00
|
|
|
public FillGraphQLDSForm(datasourceName?: string) {
|
|
|
|
|
if (datasourceName) {
|
|
|
|
|
// Change the Graphql Datasource name
|
|
|
|
|
cy.get(".t--edit-datasource-name").click();
|
|
|
|
|
cy.get(".t--edit-datasource-name input")
|
|
|
|
|
.clear()
|
|
|
|
|
.type(datasourceName, { force: true })
|
|
|
|
|
.should("have.value", datasourceName)
|
|
|
|
|
.blur();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Adding Graphql Url
|
|
|
|
|
cy.get("input[name='url']").type(datasourceFormData.graphqlApiUrl);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-04 04:48:15 +00:00
|
|
|
public FillFirestoreDSForm() {
|
|
|
|
|
cy.xpath(this.locator._inputFieldByName("Database URL") + "//input").type(
|
|
|
|
|
datasourceFormData["database-url"],
|
|
|
|
|
);
|
|
|
|
|
cy.xpath(this.locator._inputFieldByName("Project Id") + "//input").type(
|
|
|
|
|
datasourceFormData["projectID"],
|
|
|
|
|
);
|
|
|
|
|
cy.xpath(
|
|
|
|
|
this.locator._inputFieldByName("Service Account Credentials") + "//input",
|
|
|
|
|
).type(datasourceFormData["serviceAccCredentials"]);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-18 10:39:42 +00:00
|
|
|
public TestSaveDatasource(expectedRes = true) {
|
|
|
|
|
this.TestDatasource(expectedRes);
|
|
|
|
|
this.SaveDatasource();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TestDatasource(expectedRes = true) {
|
2022-08-24 14:23:41 +00:00
|
|
|
this.agHelper.GetNClick(this._testDs, 0, false, 0);
|
2022-05-18 10:39:42 +00:00
|
|
|
this.agHelper.ValidateNetworkDataSuccess("@testDatasource", expectedRes);
|
2022-08-24 14:23:41 +00:00
|
|
|
this.agHelper.AssertContains("datasource is valid");
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SaveDatasource() {
|
|
|
|
|
cy.get(this._saveDs).click();
|
|
|
|
|
this.agHelper.ValidateNetworkStatus("@saveDatasource", 200);
|
2022-08-24 14:23:41 +00:00
|
|
|
this.agHelper.AssertContains("datasource updated successfully");
|
2022-05-18 10:39:42 +00:00
|
|
|
|
|
|
|
|
// cy.wait("@saveDatasource")
|
|
|
|
|
// .then((xhr) => {
|
|
|
|
|
// cy.log(JSON.stringify(xhr.response!.body));
|
|
|
|
|
// }).should("have.nested.property", "response.body.responseMeta.status", 200);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-31 05:33:59 +00:00
|
|
|
public DeleteDatasouceFromActiveTab(
|
|
|
|
|
datasourceName: string,
|
|
|
|
|
expectedRes = 200,
|
|
|
|
|
) {
|
2022-07-16 10:41:17 +00:00
|
|
|
this.NavigateToActiveTab();
|
2022-05-18 10:39:42 +00:00
|
|
|
cy.get(this._datasourceCard)
|
|
|
|
|
.contains(datasourceName)
|
|
|
|
|
.scrollIntoView()
|
|
|
|
|
.should("be.visible")
|
|
|
|
|
.closest(this._datasourceCard)
|
|
|
|
|
.within(() => {
|
2022-05-31 05:33:59 +00:00
|
|
|
cy.get(this._contextMenuDatasource).click({ force: true });
|
2022-05-18 10:39:42 +00:00
|
|
|
});
|
2022-05-31 05:33:59 +00:00
|
|
|
this.agHelper.GetNClick(this._contextMenuDelete);
|
|
|
|
|
this.agHelper.GetNClick(this._visibleTextSpan("Are you sure?"));
|
|
|
|
|
this.agHelper.ValidateNetworkStatus("@deleteDatasource", expectedRes);
|
2022-08-24 14:23:41 +00:00
|
|
|
if (expectedRes == 200)
|
|
|
|
|
this.agHelper.AssertContains("datasource deleted successfully");
|
|
|
|
|
else this.agHelper.AssertContains("action(s) using it.");
|
2022-05-31 05:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
2022-06-06 05:59:15 +00:00
|
|
|
public DeleteDatasouceFromWinthinDS(
|
|
|
|
|
datasourceName: string,
|
2022-08-24 14:23:41 +00:00
|
|
|
expectedRes = 200,
|
2022-06-06 05:59:15 +00:00
|
|
|
) {
|
2022-07-16 10:41:17 +00:00
|
|
|
this.NavigateToActiveTab();
|
2022-05-31 05:33:59 +00:00
|
|
|
cy.get(this._datasourceCard)
|
|
|
|
|
.contains(datasourceName)
|
|
|
|
|
.scrollIntoView()
|
|
|
|
|
.should("be.visible")
|
|
|
|
|
.click();
|
|
|
|
|
this.agHelper.Sleep(2000); //for the Datasource page to open
|
|
|
|
|
this.agHelper.ClickButton("Delete");
|
|
|
|
|
this.agHelper.ClickButton("Are you sure?");
|
2022-08-24 14:23:41 +00:00
|
|
|
this.agHelper.ValidateNetworkStatus("@deleteDatasource", expectedRes);
|
|
|
|
|
if (expectedRes == 200)
|
|
|
|
|
this.agHelper.AssertContains("datasource deleted successfully");
|
|
|
|
|
else this.agHelper.AssertContains("action(s) using it.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DeleteDSDirectly() {
|
|
|
|
|
this.agHelper.ClickButton("Delete");
|
|
|
|
|
this.agHelper.ClickButton("Are you sure?");
|
|
|
|
|
this.agHelper.AssertContains("deleted successfully");
|
2022-05-31 05:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
2022-07-16 10:41:17 +00:00
|
|
|
public NavigateToActiveTab() {
|
|
|
|
|
this.NavigateToDSCreateNew();
|
|
|
|
|
this.agHelper.GetNClick(this._activeTab);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-31 05:33:59 +00:00
|
|
|
public NavigateFromActiveDS(datasourceName: string, createQuery: boolean) {
|
2022-09-19 05:32:06 +00:00
|
|
|
const btnLocator =
|
2022-05-31 05:33:59 +00:00
|
|
|
createQuery == true
|
|
|
|
|
? this._createQuery
|
|
|
|
|
: this._datasourceCardGeneratePageBtn;
|
|
|
|
|
|
2022-07-06 05:54:00 +00:00
|
|
|
this.ee.NavigateToSwitcher("explorer");
|
2022-09-05 04:52:39 +00:00
|
|
|
this.ee.ExpandCollapseEntity("Datasources", false);
|
|
|
|
|
//this.ee.SelectEntityByName(datasourceName, "Datasources");
|
2022-07-06 05:54:00 +00:00
|
|
|
//this.ee.ExpandCollapseEntity(datasourceName, false);
|
2022-07-16 10:41:17 +00:00
|
|
|
this.NavigateToActiveTab();
|
2022-05-31 05:33:59 +00:00
|
|
|
cy.get(this._datasourceCard)
|
|
|
|
|
.contains(datasourceName)
|
|
|
|
|
.scrollIntoView()
|
|
|
|
|
.should("be.visible")
|
|
|
|
|
.closest(this._datasourceCard)
|
|
|
|
|
.within(() => {
|
|
|
|
|
cy.get(btnLocator).click({ force: true });
|
|
|
|
|
});
|
|
|
|
|
this.agHelper.Sleep(2000); //for the CreateQuery/GeneratePage page to load
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
2022-07-29 08:48:25 +00:00
|
|
|
public CreateQuery(datasourceName: string) {
|
2022-08-27 12:40:11 +00:00
|
|
|
cy.get(this._datasourceCard, { withinSubject: null })
|
|
|
|
|
.find(this._activeDS)
|
2022-07-29 08:48:25 +00:00
|
|
|
.contains(datasourceName)
|
|
|
|
|
.scrollIntoView()
|
|
|
|
|
.should("be.visible")
|
|
|
|
|
.closest(this._datasourceCard)
|
|
|
|
|
.within(() => {
|
|
|
|
|
cy.get(this._createQuery).click({ force: true });
|
|
|
|
|
});
|
|
|
|
|
this.agHelper.Sleep(2000); //for the CreateQuery
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-20 12:08:48 +00:00
|
|
|
DeleteQuery(queryName: string) {
|
|
|
|
|
this.ee.ExpandCollapseEntity("Queries/JS");
|
|
|
|
|
this.ee.ActionContextMenuByEntityName(queryName, "Delete", "Are you sure?");
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-18 10:39:42 +00:00
|
|
|
public ValidateNSelectDropdown(
|
|
|
|
|
ddTitle: string,
|
|
|
|
|
currentValue = "",
|
|
|
|
|
newValue = "",
|
|
|
|
|
) {
|
|
|
|
|
let toChange = false;
|
|
|
|
|
if (currentValue)
|
|
|
|
|
cy.xpath(this._visibleTextSpan(currentValue))
|
|
|
|
|
.scrollIntoView()
|
|
|
|
|
.should("be.visible", currentValue + " dropdown value not present");
|
|
|
|
|
if (newValue) toChange = true;
|
|
|
|
|
if (toChange) {
|
|
|
|
|
cy.xpath(this._dropdownTitle(ddTitle)).click(); //to expand the dropdown
|
|
|
|
|
cy.xpath(this._visibleTextSpan(newValue))
|
|
|
|
|
.last()
|
|
|
|
|
.click({ force: true }); //to select the new value
|
2022-04-03 16:43:20 +00:00
|
|
|
}
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
2022-07-29 08:48:25 +00:00
|
|
|
public ReconnectDataSource(dbName: string, dsName: "PostgreSQL" | "MySQL") {
|
2022-05-31 05:33:59 +00:00
|
|
|
this.agHelper.AssertElementVisible(this._reconnectModal);
|
2022-07-29 08:48:25 +00:00
|
|
|
cy.xpath(this._activeDSListReconnectModal(dsName)).should("be.visible");
|
2022-05-18 10:39:42 +00:00
|
|
|
cy.xpath(this._activeDSListReconnectModal(dbName)).should("be.visible"); //.click()
|
|
|
|
|
this.ValidateNSelectDropdown("Connection Mode", "", "Read / Write");
|
2022-07-29 08:48:25 +00:00
|
|
|
if (dsName == "PostgreSQL") this.FillPostgresDSForm();
|
|
|
|
|
else if (dsName == "MySQL") this.FillMySqlDSForm();
|
2022-05-18 10:39:42 +00:00
|
|
|
cy.get(this._saveDs).click();
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-24 14:23:41 +00:00
|
|
|
RunQuery(
|
|
|
|
|
expectedStatus = true,
|
|
|
|
|
toValidateResponse = true,
|
|
|
|
|
waitTimeInterval = 500,
|
|
|
|
|
) {
|
|
|
|
|
this.agHelper.GetNClick(this._runQueryBtn, 0, true, waitTimeInterval);
|
|
|
|
|
if (toValidateResponse) {
|
2022-09-07 18:25:55 +00:00
|
|
|
this.agHelper.Sleep(1000);
|
2022-08-24 14:23:41 +00:00
|
|
|
this.agHelper.ValidateNetworkExecutionSuccess(
|
|
|
|
|
"@postExecute",
|
|
|
|
|
expectedStatus,
|
|
|
|
|
);
|
|
|
|
|
}
|
2022-05-31 05:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ReadQueryTableResponse(index: number, timeout = 100) {
|
|
|
|
|
//timeout can be sent higher values incase of larger tables
|
|
|
|
|
this.agHelper.Sleep(timeout); //Settling time for table!
|
|
|
|
|
return cy
|
|
|
|
|
.xpath(this._queryTableResponse)
|
|
|
|
|
.eq(index)
|
|
|
|
|
.invoke("text");
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-17 11:31:40 +00:00
|
|
|
public AssertQueryResponseHeaders(columnHeaders: string[]) {
|
|
|
|
|
columnHeaders.forEach(($header) =>
|
|
|
|
|
this.agHelper.AssertElementVisible(this._queryResponseHeader($header)),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-31 05:33:59 +00:00
|
|
|
public AssertJSONFormHeader(
|
|
|
|
|
rowindex: number,
|
|
|
|
|
colIndex: number,
|
|
|
|
|
headerString: string,
|
|
|
|
|
validateCellData: "" | string = "",
|
2022-06-06 05:59:15 +00:00
|
|
|
isMongo = false,
|
2022-05-31 05:33:59 +00:00
|
|
|
) {
|
2022-06-06 05:59:15 +00:00
|
|
|
let jsonHeaderString = "";
|
2022-05-31 05:33:59 +00:00
|
|
|
this.table.ReadTableRowColumnData(rowindex, colIndex).then(($cellData) => {
|
|
|
|
|
if (validateCellData) expect($cellData).to.eq(validateCellData);
|
2022-06-06 05:59:15 +00:00
|
|
|
|
|
|
|
|
jsonHeaderString =
|
|
|
|
|
isMongo == true
|
|
|
|
|
? "Update Document " + headerString + ": " + $cellData
|
|
|
|
|
: "Update Row " + headerString + ": " + $cellData;
|
2022-05-31 05:33:59 +00:00
|
|
|
this.agHelper
|
|
|
|
|
.GetText(this.locator._jsonFormHeader)
|
2022-06-06 05:59:15 +00:00
|
|
|
.then(($header: any) => expect($header).to.eq(jsonHeaderString));
|
2022-05-31 05:33:59 +00:00
|
|
|
});
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|
2022-06-17 06:12:18 +00:00
|
|
|
|
|
|
|
|
public ToggleUsePreparedStatement(enable = true || false) {
|
|
|
|
|
if (enable)
|
|
|
|
|
cy.get(this._usePreparedStatement).check({
|
|
|
|
|
force: true,
|
|
|
|
|
});
|
|
|
|
|
else
|
|
|
|
|
cy.get(this._usePreparedStatement).uncheck({
|
|
|
|
|
force: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.agHelper.AssertAutoSave();
|
|
|
|
|
}
|
2022-07-06 05:54:00 +00:00
|
|
|
|
|
|
|
|
public EnterQuery(query: string) {
|
|
|
|
|
cy.get(this.locator._codeEditorTarget).then(($field: any) => {
|
|
|
|
|
this.agHelper.UpdateCodeInput($field, query);
|
|
|
|
|
});
|
|
|
|
|
this.agHelper.AssertAutoSave();
|
2022-08-28 23:06:17 +00:00
|
|
|
this.agHelper.Sleep(500); //waiting a bit before proceeding!
|
2022-07-06 05:54:00 +00:00
|
|
|
}
|
2022-07-16 10:41:17 +00:00
|
|
|
|
|
|
|
|
public RunQueryNVerifyResponseViews(
|
2022-10-20 12:08:48 +00:00
|
|
|
expectedRecordsCount = 1,
|
2022-07-16 10:41:17 +00:00
|
|
|
tableCheck = true,
|
|
|
|
|
) {
|
|
|
|
|
this.RunQuery();
|
|
|
|
|
tableCheck &&
|
|
|
|
|
this.agHelper.AssertElementVisible(this._queryResponse("TABLE"));
|
|
|
|
|
this.agHelper.AssertElementVisible(this._queryResponse("JSON"));
|
|
|
|
|
this.agHelper.AssertElementVisible(this._queryResponse("RAW"));
|
2022-10-20 12:08:48 +00:00
|
|
|
this.CheckResponseRecordsCount(expectedRecordsCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CheckResponseRecordsCount(expectedRecordCount: number) {
|
2022-07-16 10:41:17 +00:00
|
|
|
this.agHelper.AssertElementVisible(
|
2022-10-20 12:08:48 +00:00
|
|
|
this._queryRecordResult(expectedRecordCount),
|
2022-07-16 10:41:17 +00:00
|
|
|
);
|
|
|
|
|
}
|
2022-07-29 08:48:25 +00:00
|
|
|
|
2022-08-04 04:48:15 +00:00
|
|
|
public CreateDataSource(
|
|
|
|
|
dsType: "Postgres" | "Mongo" | "MySql",
|
|
|
|
|
navigateToCreateNewDs = true,
|
2022-09-19 05:32:06 +00:00
|
|
|
verifyBeforeSave = true,
|
2022-08-04 04:48:15 +00:00
|
|
|
) {
|
2022-07-29 08:48:25 +00:00
|
|
|
let guid: any;
|
2022-09-19 05:32:06 +00:00
|
|
|
let dataSourceName = "";
|
2022-07-29 08:48:25 +00:00
|
|
|
this.agHelper.GenerateUUID();
|
|
|
|
|
cy.get("@guid").then((uid) => {
|
|
|
|
|
navigateToCreateNewDs && this.NavigateToDSCreateNew();
|
|
|
|
|
this.CreatePlugIn(DataSourceKVP[dsType]);
|
|
|
|
|
guid = uid;
|
2022-09-19 05:32:06 +00:00
|
|
|
dataSourceName = dsType + " " + guid;
|
|
|
|
|
this.agHelper.RenameWithInPane(dataSourceName, false);
|
2022-07-29 08:48:25 +00:00
|
|
|
if (DataSourceKVP[dsType] == "PostgreSQL") this.FillPostgresDSForm();
|
|
|
|
|
else if (DataSourceKVP[dsType] == "MySQL") this.FillMySqlDSForm();
|
|
|
|
|
else if (DataSourceKVP[dsType] == "MongoDB") this.FillMongoDSForm();
|
2022-09-19 05:32:06 +00:00
|
|
|
|
|
|
|
|
if (verifyBeforeSave) {
|
|
|
|
|
this.TestSaveDatasource();
|
|
|
|
|
} else {
|
|
|
|
|
this.SaveDatasource();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cy.wrap(dataSourceName).as("dsName");
|
2022-07-29 08:48:25 +00:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-19 05:32:06 +00:00
|
|
|
public CreateNewQueryInDS(dsName: string, query = "", queryName = "") {
|
2022-07-29 08:48:25 +00:00
|
|
|
this.ee.CreateNewDsQuery(dsName);
|
2022-09-19 05:32:06 +00:00
|
|
|
|
2022-07-29 08:48:25 +00:00
|
|
|
if (queryName) this.agHelper.RenameWithInPane(queryName);
|
2022-09-19 05:32:06 +00:00
|
|
|
|
|
|
|
|
if (query) {
|
|
|
|
|
this.agHelper.GetNClick(this._templateMenu);
|
|
|
|
|
this.EnterQuery(query);
|
|
|
|
|
}
|
2022-07-29 08:48:25 +00:00
|
|
|
}
|
2022-08-24 14:23:41 +00:00
|
|
|
|
2022-09-09 15:59:47 +00:00
|
|
|
public CreateGraphqlDatasource(datasourceName: string) {
|
|
|
|
|
this.NavigateToDSCreateNew();
|
|
|
|
|
//Click on Authenticated Graphql API
|
|
|
|
|
cy.get(this._createGraphQLDatasource).click({ force: true });
|
|
|
|
|
//Verify weather Authenticated Graphql Datasource is successfully created.
|
|
|
|
|
cy.wait("@createDatasource").should(
|
|
|
|
|
"have.nested.property",
|
|
|
|
|
"response.body.responseMeta.status",
|
|
|
|
|
201,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.FillGraphQLDSForm(datasourceName);
|
|
|
|
|
|
|
|
|
|
// save datasource
|
|
|
|
|
cy.get(".t--save-datasource").click({ force: true });
|
|
|
|
|
cy.wait("@saveDatasource").should(
|
|
|
|
|
"have.nested.property",
|
|
|
|
|
"response.body.responseMeta.status",
|
|
|
|
|
200,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public UpdateGraphqlQueryAndVariable(options?: {
|
|
|
|
|
query?: string;
|
|
|
|
|
variable?: string;
|
|
|
|
|
}) {
|
|
|
|
|
if (options?.query) {
|
|
|
|
|
cy.get(this._graphqlQueryEditor)
|
|
|
|
|
.first()
|
|
|
|
|
.focus()
|
|
|
|
|
.type("{selectAll}{backspace}", { force: true })
|
|
|
|
|
.type("{backspace}", { force: true })
|
|
|
|
|
.type(options.query);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (options?.variable) {
|
|
|
|
|
cy.get(this._graphqlVariableEditor)
|
|
|
|
|
.first()
|
|
|
|
|
.focus()
|
|
|
|
|
.type("{selectAll}{backspace}", { force: true })
|
|
|
|
|
.type("{backspace}", { force: true })
|
|
|
|
|
.type(options.variable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.agHelper.Sleep();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public UpdateGraphqlPaginationParams(options: {
|
|
|
|
|
limit?: {
|
|
|
|
|
variable: string;
|
|
|
|
|
value: any;
|
|
|
|
|
};
|
|
|
|
|
offset?: {
|
|
|
|
|
variable: string;
|
|
|
|
|
value: any;
|
|
|
|
|
};
|
|
|
|
|
}) {
|
|
|
|
|
if (options.limit) {
|
|
|
|
|
// Select Limit Variable from dropdown
|
|
|
|
|
cy.get(this._graphqlPagination._limitVariable).click({
|
|
|
|
|
force: true,
|
|
|
|
|
});
|
|
|
|
|
cy.get(this._graphqlPagination._limitVariable)
|
|
|
|
|
.contains(options.limit.variable)
|
|
|
|
|
.click({ force: true });
|
|
|
|
|
|
|
|
|
|
// Set the Limit Value as 1
|
|
|
|
|
cy.get(this._graphqlPagination._limitValue)
|
|
|
|
|
.first()
|
|
|
|
|
.focus()
|
|
|
|
|
.type(options.limit.value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (options.offset) {
|
|
|
|
|
// Select Offset Variable from dropdown
|
|
|
|
|
cy.get(this._graphqlPagination._offsetVariable).click({
|
|
|
|
|
force: true,
|
|
|
|
|
});
|
|
|
|
|
cy.get(this._graphqlPagination._offsetVariable)
|
|
|
|
|
.contains(options.offset.variable)
|
|
|
|
|
.click({ force: true });
|
|
|
|
|
|
|
|
|
|
// Set the Limit Value as 1
|
|
|
|
|
cy.get(this._graphqlPagination._offsetValue)
|
|
|
|
|
.first()
|
|
|
|
|
.focus()
|
|
|
|
|
.type(options.offset.value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.agHelper.Sleep();
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-24 14:23:41 +00:00
|
|
|
public SetQueryTimeout(queryTimeout = 20000) {
|
|
|
|
|
this.agHelper.GetNClick(this._queryResponse("SETTINGS"));
|
|
|
|
|
cy.xpath(this._queryTimeout)
|
|
|
|
|
.clear()
|
|
|
|
|
.type(queryTimeout.toString(), { delay: 0 }); //Delay 0 to work like paste!
|
|
|
|
|
this.agHelper.AssertAutoSave();
|
|
|
|
|
this.agHelper.GetNClick(this._queryResponse("QUERY"));
|
|
|
|
|
}
|
2022-05-18 10:39:42 +00:00
|
|
|
}
|