-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Add s3 support for generate CRUD #6264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
986570b
Add s3 support for generate CRUD
258bfd8
Refactor the prop name
1e4d1a9
Merge branch 'release' into feature/add-s3-crud-support
836ae3a
Merge branch 'release' into feature/add-s3-crud-support
f1e1e74
Add useS3BucketList hook WIP
6438b05
Dropdown enchancement & Fix small issues
dce1ed5
Add fetch all sheets query
b67a926
Add Query to get all S3 buckets
67c9d9e
Fix dropdown open issue
99317bb
Remove defaultIsOpen prop from dropdown
eae53b9
Resolve comments
e2411c0
Merge branch 'release' into feature/add-s3-crud-support
a8e6669
Merge branch 'release' into feature/add-s3-crud-support
9a1a57d
Add S3 cypress test
37f55b0
Fix cypress test yml config
1a4fa6b
Fix generate page cypress test
e16e353
Merge branch 'release' into feature/add-s3-crud-support
0f49354
Merge branch 'release' into feature/add-s3-crud-support
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
...ient/cypress/integration/Smoke_TestSuite/ClientSideTests/GenerateCRUD/S3_CRUDPage_Spec.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| const pages = require("../../../../locators/Pages.json"); | ||
| const generatePage = require("../../../../locators/GeneratePage.json"); | ||
|
|
||
| describe("Generate New CRUD Page Inside from entity explorer", function() { | ||
| let datasourceName; | ||
| before(() => { | ||
| cy.startRoutesForDatasource(); | ||
| cy.createAmazonS3Datasource(); | ||
|
|
||
| cy.get("@createDatasource").then((httpResponse) => { | ||
| datasourceName = httpResponse.response.body.data.name; | ||
| }); | ||
| }); | ||
|
|
||
| it("Add new Page and generate CRUD template using existing supported datasource", function() { | ||
| cy.get(pages.AddPage) | ||
| .first() | ||
| .click(); | ||
| cy.wait("@createPage").should( | ||
| "have.nested.property", | ||
| "response.body.responseMeta.status", | ||
| 201, | ||
| ); | ||
|
|
||
| cy.get(generatePage.generateCRUDPageActionCard).click(); | ||
|
|
||
| cy.get(generatePage.selectDatasourceDropdown).click(); | ||
|
|
||
| cy.get(generatePage.datasourceDropdownOption) | ||
| .contains(datasourceName) | ||
| .click(); | ||
|
|
||
| // fetch bucket | ||
| cy.wait("@datasourceQuery").should( | ||
| "have.nested.property", | ||
| "response.body.responseMeta.status", | ||
| 200, | ||
| ); | ||
|
|
||
| cy.get(generatePage.selectTableDropdown).click(); | ||
|
|
||
| cy.get(generatePage.dropdownOption) | ||
| .contains("assets-test.appsmith.com") | ||
| .scrollIntoView() | ||
| .should("be.visible") | ||
| .click(); | ||
| // skip optional search column selection. | ||
| cy.get(generatePage.generatePageFormSubmitBtn).click(); | ||
|
|
||
| cy.wait("@replaceLayoutWithCRUDPage").should( | ||
| "have.nested.property", | ||
| "response.body.responseMeta.status", | ||
| 201, | ||
| ); | ||
| cy.wait("@getActions"); | ||
| cy.wait("@postExecute").should( | ||
| "have.nested.property", | ||
| "response.body.responseMeta.status", | ||
| 200, | ||
| ); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.