Skip to content

test: fix test data migration issue#38118

Closed
AnaghHegde wants to merge 5 commits intopgfrom
test/fix-test-data-migration-issue
Closed

test: fix test data migration issue#38118
AnaghHegde wants to merge 5 commits intopgfrom
test/fix-test-data-migration-issue

Conversation

@AnaghHegde
Copy link
Contributor

@AnaghHegde AnaghHegde commented Dec 12, 2024

Description

Fixes #Issue Number
or
Fixes Issue URL

Warning

If no issue exists, please create an issue first, and check with the maintainers if the issue is valid.

Automation

/ok-to-test tags=""

🔍 Cypress test results

Warning

Tests have not run on the HEAD 17a7e25 yet


Thu, 12 Dec 2024 20:59:41 UTC

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

  • Bug Fixes

    • Updated database cleanup process to exclude 'user', 'tenant', 'flyway_schema_history', 'theme', 'config', and 'permission_group' tables from deletion.
    • Changed the method of handling tables from dropping to truncating, preserving table structures while clearing data.
  • Documentation

    • Improved logging during the cleanup process for better traceability.

@AnaghHegde AnaghHegde self-assigned this Dec 12, 2024
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 12, 2024

Walkthrough

The changes involve modifications to the AfterAllCleanUpExtension and DBCleanup classes. In AfterAllCleanUpExtension, the cleanup methods for extensions and routines have been commented out while retaining logging functionality. In DBCleanup, the deleteAllTables method has been updated to exclude 'user', 'tenant', 'flyway_schema_history', 'theme', 'config', and 'permission_group' tables from deletion and now truncates tables instead of dropping them. These adjustments focus on refining the database cleanup process post-testing.

Changes

File Change Summary
app/server/appsmith-server/src/test/java/com/appsmith/server/extensions/AfterAllCleanUpExtension.java Commented out deleteAllExtensions(jdbcTemplate) and deleteAllRoutines(jdbcTemplate) calls in afterAll.
app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java Updated deleteAllTables method to exclude 'user', 'tenant', 'flyway_schema_history', 'theme', 'config', and 'permission_group' tables and changed operation from DROP to TRUNCATE.

Possibly related PRs

Suggested labels

Bug, ok-to-test, Test

Suggested reviewers

  • abhvsn
  • sharat87

🎉 In the realm of code where tests do play,
Cleanup was needed, come what may!
Extensions now silent, tables kept whole,
Truncating with care, that's the goal!
A fresh start awaits, let the tests run free,
In the world of cleanup, we dance with glee! 🎊


📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ab0b1e8 and 17a7e25.

📒 Files selected for processing (1)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (2)
app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java (2)

19-19: Consider documenting the TRUNCATE CASCADE implications

Using TRUNCATE with CASCADE is more efficient than DROP, but it's important to document that this will also clear dependent tables.

Add a comment explaining the CASCADE behavior:

-            jdbcTemplate.execute("TRUNCATE TABLE \"" + tableName + "\" CASCADE");
+            // Using CASCADE to ensure all dependent tables are also truncated
+            jdbcTemplate.execute("TRUNCATE TABLE \"" + tableName + "\" CASCADE");

19-19: Consider using prepared statements for table names

Even in test code, it's good practice to avoid SQL injection risks from string concatenation.

Consider using a prepared statement or proper escaping:

-            jdbcTemplate.execute("TRUNCATE TABLE \"" + tableName + "\" CASCADE");
+            jdbcTemplate.execute(String.format("TRUNCATE TABLE %s CASCADE", 
+                    jdbcTemplate.getJdbcOperations().quote(tableName)));
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fd74c54 and 88a02cf.

📒 Files selected for processing (2)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/extensions/AfterAllCleanUpExtension.java (1 hunks)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java (1 hunks)
🔇 Additional comments (2)
app/server/appsmith-server/src/test/java/com/appsmith/server/extensions/AfterAllCleanUpExtension.java (1)

39-40: ⚠️ Potential issue

Verify impact of disabling extension and routine cleanup

Commenting out these cleanup operations might leave test database objects in an inconsistent state. This could affect other tests that depend on a clean database state.

Let's check for test classes that might be affected:

Consider:

  1. Adding a comment explaining why these cleanups are disabled
  2. Verifying if any tests depend on these cleanup operations
app/server/appsmith-server/src/test/java/com/appsmith/server/testhelpers/cleanup/DBCleanup.java (1)

15-16: LGTM: Excluding user and tenant tables

Good approach to preserve critical tables while cleaning test data. This should help maintain consistent test environments.

@appsmithorg appsmithorg deleted a comment from github-actions bot Dec 12, 2024
@appsmithorg appsmithorg deleted a comment from github-actions bot Dec 12, 2024
@appsmithorg appsmithorg deleted a comment from github-actions bot Dec 12, 2024
@appsmithorg appsmithorg deleted a comment from github-actions bot Dec 12, 2024
@github-actions
Copy link

Failed server tests

  • com.appsmith.server.git.CommonGitServiceCETest#importArtifactFromGit_validRequestWithDuplicateDatasourceOfDifferentType_ThrowError
  • com.appsmith.server.git.CommonGitServiceCETest#importArtifactFromGit_validRequestWithDuplicateDatasourceOfSameTypeCancelledMidway_Success
  • com.appsmith.server.git.CommonGitServiceCETest#importArtifactFromGit_validRequestWithDuplicateDatasourceOfSameType_Success
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#saveGitRepo_ImportAndThenExport_diffOccurs
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContextHasRightCredentialsAfterVariableReplacement
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContext_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterRemoval
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterUpdate
  • com.appsmith.server.services.DatasourceServiceTest#getErrorOnCreatingEmptyDatasource
  • com.appsmith.server.services.DatasourceServiceTest#get_WhenDatasourcesPresent_SortedAndIsRecentlyCreatedFlagSet
  • com.appsmith.server.services.DatasourceServiceTest#verifyTestDatasourceWithSavedDatasourceButNoDatasourceStorageSucceeds
  • com.appsmith.server.services.DatasourceServiceTest#verifyTestDatasourceWithoutSavedDatasource
  • com.appsmith.server.services.DatasourceServiceTest#verifyTestDatasource_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceServiceTest#verifyUpdateDatasourceStorageWithoutDatasourceId
  • com.appsmith.server.services.DatasourceServiceTest#verifyUpdateNameReturnsNullStorages
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyFindByDatasourceAndStorageIdGivesErrorWhenNoConfigurationIsPresent
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationErrorsOutWhenStorageAlreadyExists
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationSucceedsWithDifferentEnvironmentId
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.ce.ActionServiceCE_Test#checkActionInViewMode
  • com.appsmith.server.services.ce.ActionServiceCE_Test#checkNewActionAndNewDatasourceAnonymousPermissionInPublicApp
  • com.appsmith.server.services.ce.ActionServiceCE_Test#createActionWithBranchName_withNullPageId_throwException
  • com.appsmith.server.services.ce.ActionServiceCE_Test#createValidActionAndCheckPermissions
  • com.appsmith.server.services.ce.ActionServiceCE_Test#createValidActionNullActionConfiguration
  • com.appsmith.server.services.ce.ActionServiceCE_Test#createValidActionWithJustName
  • com.appsmith.server.services.ce.ActionServiceCE_Test#createValidAction_forGitConnectedApp_getValidPermissionAndDefaultIds
  • com.appsmith.server.services.ce.ActionServiceCE_Test#findByIdAndBranchName_forGitConnectedAction_getBranchedAction
  • com.appsmith.server.services.ce.ActionServiceCE_Test#getActionInViewMode
  • com.appsmith.server.services.ce.ActionServiceCE_Test#getActionsExecuteOnLoadPaginatedApi
  • com.appsmith.server.services.ce.ActionServiceCE_Test#invalidCreateActionInvalidPageId
  • com.appsmith.server.services.ce.ActionServiceCE_Test#invalidCreateActionNullName
  • com.appsmith.server.services.ce.ActionServiceCE_Test#invalidCreateActionNullPageId
  • com.appsmith.server.services.ce.ActionServiceCE_Test#moveAction_forGitConnectedApp_defaultResourceIdsUpdateSuccess
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testActionHasPathKeyEntryWhenActionIsUpdated
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testActionWithGraphQLDatasourceMoustacheBinding
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testActionWithNonAPITypeDatasourceMoustacheBinding
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testCreateActionWithOutOfRangeTimeout
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testCreateActionWithValidRangeTimeout
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testExecuteOnLoadParamOnActionCreateWithClonePageContext
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testExecuteOnLoadParamOnActionCreateWithDefaultContext
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testUpdateActionWithOutOfRangeTimeout
  • com.appsmith.server.services.ce.ActionServiceCE_Test#testUpdateActionWithValidRangeTimeout
  • com.appsmith.server.services.ce.ActionServiceCE_Test#updateActionShouldSetUpdatedAtField
  • com.appsmith.server.services.ce.ActionServiceCE_Test#updateShouldNotResetUserSetOnLoad
  • com.appsmith.server.services.ce.ActionServiceCE_Test#validMoveAction
  • com.appsmith.server.services.ce.ActionServiceCE_Test#validateAndSaveActionToRepository_ActionDTOHasCreatedAtUpdatedAtFieldsPresent
  • com.appsmith.server.services.ce.ActionServiceCE_Test#validateAndSaveActionToRepository_noDatasourceEditPermission
  • com.appsmith.server.services.ce.ApplicationServiceCETest#basicPublishApplicationTest
  • com.appsmith.server.services.ce.ApplicationServiceCETest#changeDefaultPageForAPublishedApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_WhenClonedSuccessfully_InternalFieldsResetToNull
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_WithCustomSavedTheme_ThemesAlsoCopied
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_applicationWithGitMetadataAndActions_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_applicationWithGitMetadata_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_noDatasourceCreateActionPermissions
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_noPageEditPermissions
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_withActionAndActionCollection_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneApplication_withDeletedActionInActionCollection_deletedActionIsNotCloned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#cloneGitConnectedApplication_withUpdatedDefaultBranch_sucess
  • com.appsmith.server.services.ce.ApplicationServiceCETest#createApplicationWithDuplicateName
  • com.appsmith.server.services.ce.ApplicationServiceCETest#createApplicationWithNullName
  • com.appsmith.server.services.ce.ApplicationServiceCETest#createValidApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#defaultPageCreateOnCreateApplicationTest
  • com.appsmith.server.services.ce.ApplicationServiceCETest#deleteApplication_WithDeployKeysNotConnectedToRemote_Success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#deleteApplication_withNullGitData_Success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#deleteApplication_withPagesActionsAndActionCollections_resourcesArchived
  • com.appsmith.server.services.ce.ApplicationServiceCETest#deleteUnpublishedPageFromApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#deleteUnpublishedPage_FromApplicationConnectedToGit_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#generateSshKeyPair_WhenDefaultApplicationIdNotSet_CurrentAppUpdated
  • com.appsmith.server.services.ce.ApplicationServiceCETest#generateSshKeyPair_WhenDefaultApplicationIdSet_DefaultApplicationUpdated
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationByDefaultIdAndBranchName_emptyBranchName_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationByDefaultIdAndBranchName_invalidBranchName_throwException
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationByDefaultIdAndBranchName_validBranchName_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationConnectedToGit_defaultBranchUpdated_returnBranchSpecificApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationInViewMode
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationInvalidId
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationNullId
  • com.appsmith.server.services.ce.ApplicationServiceCETest#getApplicationsByBranchName_validBranchName_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#invalidUpdateApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#makeApplicationPrivate_applicationWithGitMetadata_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#makeApplicationPublic_applicationWithGitMetadata_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#newApplicationShouldHavePublishedState
  • com.appsmith.server.services.ce.ApplicationServiceCETest#publishApplication_noPageEditPermissions
  • com.appsmith.server.services.ce.ApplicationServiceCETest#publishApplication_withArchivedUnpublishedResources_resourcesArchived
  • com.appsmith.server.services.ce.ApplicationServiceCETest#publishApplication_withGitConnectedApp_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#publishApplication_withPageIconSet_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#reuseDeletedAppName
  • com.appsmith.server.services.ce.ApplicationServiceCETest#saveLastEditInformation_WhenUserHasPermission_Updated
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testCacheEviction_whenPagesDeletedInEditModeFollowedByAppPublish_shouldInvalidateCache
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testCreatePage_lastModifiedByShouldGetChanged
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testPublicApp_whenMultiplePublicAppsInWorkspaceAndOneAccessRevoked_otherPublicAppRetainsAccessToWorkspaceLevelResources
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testUpdateApplication_modifiedByShouldUpdate
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testUploadAndDeleteNavigationLogo_validImage
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testUploadNavigationLogo_invalidImageFormat
  • com.appsmith.server.services.ce.ApplicationServiceCETest#testUploadNavigationLogo_invalidImageSize
  • com.appsmith.server.services.ce.ApplicationServiceCETest#updateApplicationByIdAndBranchName_validBranchName_success
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validChangeViewAccessCancelledMidWay
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validCloneApplicationWhenCancelledMidWay
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validGetApplicationById
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validGetApplicationPagesMultiPageApp
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validGetApplications
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validMakeApplicationPrivate
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validMakeApplicationPublic
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validMakeApplicationPublicWithActions
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validPrivateAppUpdateApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validPublicAppUpdateApplication
  • com.appsmith.server.services.ce.ApplicationServiceCETest#validUpdateApplication
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyCaseWhereNoEnvironmentProvided
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyDatasourceStorageStructureEntriesWithTwoEnvironmentId
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyDatasourceStorageStructureGettingSaved
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyDuplicateKeyErrorOnSave
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyEmptyDatasourceStructureObjectIfDatasourceIsInvalid
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyEmptyStructureForPluginsWithNoGetStructureImplementation
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyGenerateNewStructureWhenNotPresent
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyUseCachedStructureWhenStructurePresent
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyUseCachedStructureWhenStructurePresentWithNoEnvironment
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#verifyUseNewStructureWhenIgnoreCacheSetTrue
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#checkRecoveryFromStaleConnections
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#executeActionNoStorageFound
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#executeActionWithExternalDatasource
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#executeAction_actionOnMockDatasource_success
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#suggestWidget_ArrayListDataEmpty_SuggestTextWidget
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#suggestWidget_ArrayListData_SuggestTableTextChartDropDownWidget
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#suggestWidget_ArrayListData_SuggestTableTextDropDownWidget
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecute
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteDbQuery
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteErrorResponse
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteNullPaginationParameters
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteNullRequestBody
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteReturnTypeWithNullResultBody
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteSecondaryStaleConnection
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteTimeout
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteWithJsonReturnType
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteWithPreAssignedReturnType
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testActionExecuteWithTableReturnType
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testVariableSubstitution
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testVariableSubstitutionWithNewline
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithArrayOfArray
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithArrayOfStringsDropDownWidget
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithChartWidgetData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithDropdownWidgetData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithEmptyData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithJsonArrayObjectData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithJsonNodeData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithJsonObjectData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithListWidgetData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithNumericData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionAfterExecutionWithTableWidgetData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionNestedData
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#testWidgetSuggestionNestedDataEmpty

@github-actions
Copy link

This PR has not seen activitiy for a while. It will be closed in 7 days unless further activity is detected.

@github-actions github-actions bot added the Stale label Dec 20, 2024
@github-actions
Copy link

This PR has been closed because of inactivity.

@github-actions github-actions bot closed this Dec 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant