-
Notifications
You must be signed in to change notification settings - Fork 4.5k
fix: adding new test cases for git auto-commit #34913
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
11 commits
Select commit
Hold shift + click to select a range
bfa01e0
fix: adding new test cases for autocommit
273f98d
Merge branch 'release' of github.com:appsmithorg/appsmith into fix/au…
6b4a73f
fix: changing repo name
9e3eac1
Merge branch 'release' of github.com:appsmithorg/appsmith into fix/au…
b211260
removed feature flag for eligibility
sondermanish 9729958
Merge branch 'release' of github.com:appsmithorg/appsmith into fix/au…
0a1f7b5
added logs
sondermanish b893e7a
fix: minor changes in autocommit spec
f396112
added more logs
sondermanish 52a84d0
removed excess logs
sondermanish 3dda836
Merge branch 'release' of github.com:appsmithorg/appsmith into fix/au…
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
57 changes: 57 additions & 0 deletions
57
app/client/cypress/e2e/Regression/ClientSide/Git/GitAutocommit_spec.ts
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,57 @@ | ||
| import ReconnectLocators from "../../../../locators/ReconnectLocators"; | ||
| import { featureFlagIntercept } from "../../../../support/Objects/FeatureFlags"; | ||
| import { | ||
| agHelper, | ||
| gitSync, | ||
| homePage, | ||
| } from "../../../../support/Objects/ObjectsCore"; | ||
|
|
||
| let wsName: string; | ||
| let repoName: string = "TED-testrepo1"; | ||
|
|
||
| describe( | ||
| "Git Autocommit", | ||
| { tags: ["@tag.Git", "@tag.GitAutocommit"] }, | ||
| function () { | ||
| it("Check if autocommit progress bar is visible and network requests are properly called", function () { | ||
| featureFlagIntercept({ | ||
| release_git_autocommit_feature_enabled: true, | ||
| }); | ||
| agHelper.GenerateUUID(); | ||
| cy.get("@guid").then((uid) => { | ||
| wsName = "GitAC-" + uid; | ||
| homePage.CreateNewWorkspace(wsName, true); | ||
brayn003 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| cy.intercept({ | ||
| method: "POST", | ||
| url: "/api/v1/git/auto-commit/app/*", | ||
| }).as("gitAutocommitTriggerApi"); | ||
|
|
||
| cy.intercept( | ||
| { | ||
| method: "GET", | ||
| url: "/api/v1/git/auto-commit/progress/app/*", | ||
| }, | ||
| (req) => { | ||
| req.on("response", (res) => { | ||
| res.setDelay(500); | ||
| }); | ||
| }, | ||
| ).as("gitAutocommitProgressApi"); | ||
|
|
||
| gitSync.ImportAppFromGit(wsName, repoName); | ||
| agHelper.GetNClick(ReconnectLocators.SkipToAppBtn); | ||
brayn003 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| cy.wait("@gitAutocommitTriggerApi").then((interception) => { | ||
| expect(interception?.response?.statusCode).to.equal(200); | ||
| expect( | ||
| interception?.response?.body?.data?.autoCommitResponse, | ||
| ).to.equal("PUBLISHED"); | ||
| agHelper.WaitUntilEleAppear(gitSync._autocommitStatusbar); | ||
| }); | ||
| cy.wait("@gitAutocommitProgressApi").then((interceptions) => { | ||
| expect(interceptions?.response?.statusCode).to.equal(200); | ||
| }); | ||
| }); | ||
brayn003 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }); | ||
| }, | ||
| ); | ||
brayn003 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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
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
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.