Skip to content
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

chore: setup for server test changes and fixing few #33847

Merged
merged 4 commits into from
May 30, 2024

Conversation

vivonk
Copy link
Contributor

@vivonk vivonk commented May 30, 2024

Description

Tip

Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team).

Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR.

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

Caution

If you modify the content in this section, you are likely to disrupt the CI result for your PR.

Communication

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

  • Yes
  • No

@vivonk vivonk requested review from nidhi-nair, sondermanish and a team as code owners May 30, 2024 11:08
@vivonk vivonk requested a review from abhvsn May 30, 2024 11:08
@@ -56,6 +57,8 @@ public enum AuthenticationStatus {
@JsonView(Views.Internal.class)
AuthenticationResponse authenticationResponse;

@JsonView(Views.Public.class)
@Transient
public Mono<Boolean> hasExpired() {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

persistence fails so making is transient

@@ -141,14 +139,5 @@ public void updateForBulkWriteOperation() {
this.setUpdatedAt(Instant.now());
}

@PrePersist
Copy link
Contributor Author

Choose a reason for hiding this comment

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

not needed anymore as we are assigning id now in save method itself

@@ -32,6 +32,7 @@ public enum TableType {

@Data
@AllArgsConstructor
@NoArgsConstructor
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Needed as serde was failing in few tests

@@ -256,7 +256,7 @@ private Mono<Application> createSuffixedApplication(Application application, Str
return super.create(application).onErrorResume(DataIntegrityViolationException.class, error -> {
if (error.getMessage() != null
// Catch only if error message contains workspace_app_deleted_git_application_metadata mongo error
&& error.getMessage().contains("workspace_app_deleted_git_application_metadata")) {
&& (error.getMessage().contains("u_workspace_app"))) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

index name has changed

Copy link
Contributor

Choose a reason for hiding this comment

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

Should we keep the nomenclature same for the indexes? That way we don't have to look into different branches if we face some issues in future.

Set<Policy> policies = mapObject(policiesJson, new TypeReference<Set<Policy>>() {});
TenantConfiguration tenantConfiguration =
Copy link
Contributor Author

Choose a reason for hiding this comment

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

updated after found yesterday that tenantconfiguration was setting up null if not provided here

Copy link
Contributor

Choose a reason for hiding this comment

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

Let's add this in the docs as well seems to be something which can be missed by other devs.

@@ -26,15 +27,16 @@ private void addAnonymousUser() throws JsonProcessingException {
return;
}
String insertUserQuery =
"INSERT INTO \"user\" (id, email, name, current_workspace_id, workspace_ids, is_anonymous, tenant_id, is_system_generated, created_at, updated_at) VALUES (gen_random_uuid(), ?, ?, ?, cast(? as jsonb), ?, ?, true, now() ,now())";
"INSERT INTO \"user\" (id, email, name, current_workspace_id, workspace_ids, is_anonymous, tenant_id, source, is_system_generated, created_at, updated_at) VALUES (gen_random_uuid(), ?, ?, ?, cast(? as jsonb), ?, ?, ?, true, now() ,now())";
Copy link
Contributor Author

Choose a reason for hiding this comment

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

login source was missing earlier

public Mono<T> save(T entity) {
return Mono.fromSupplier(() -> repository.save(entity)).subscribeOn(Schedulers.boundedElastic());
return Mono.fromSupplier(() -> {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

updates save method so that we can deal with save failures ourselves

if (error.getMessage() != null
&& error.getMessage().contains("workspace_datasource_deleted_compound_index")
&& error.getMessage().contains("u_workspace_datasource")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

index name changes

Copy link
Contributor

Choose a reason for hiding this comment

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

Same as above

@@ -6,6 +6,10 @@ create unique index if not exists u_email on password_reset_token(email);
create unique index if not exists plugin_name_package_name_version_index on plugin(plugin_name, package_name, version);
create unique index if not exists u_user_id on user_data(user_id);
create unique index if not exists u_workspace_datasource_deleted on datasource(workspace_id, name, deleted_at);
CREATE UNIQUE INDEX if not exists u_workspace_datasource ON datasource (workspace_id, name) WHERE deleted_at IS NULL;
create unique index if not exists u_workspace_app_deleted on application(workspace_id, name, deleted_at) where git_application_metadata is null;
create unique index if not exists u_workspace_app on application(workspace_id, name) where deleted_at is null and git_application_metadata is null;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

new index addition based on the fact that null values aren't treated same in postgres and we need different indexes if a value part of index is null

Copy link
Contributor

Choose a reason for hiding this comment

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

Can you share more details on this, just a ref should be enough?


@Profile("test")
@Configuration
public class TestDatabaseConfig {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

config specific to tests

Copy link
Contributor

Choose a reason for hiding this comment

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

Let's add the javadoc comment to define the purpose, and also provide the reason why this is needed in tests against the production environment.

Copy link
Contributor

@abhvsn abhvsn left a comment

Choose a reason for hiding this comment

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

Looks fine, added few minor comment for clarification.

@@ -256,7 +256,7 @@ private Mono<Application> createSuffixedApplication(Application application, Str
return super.create(application).onErrorResume(DataIntegrityViolationException.class, error -> {
if (error.getMessage() != null
// Catch only if error message contains workspace_app_deleted_git_application_metadata mongo error
&& error.getMessage().contains("workspace_app_deleted_git_application_metadata")) {
&& (error.getMessage().contains("u_workspace_app"))) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we keep the nomenclature same for the indexes? That way we don't have to look into different branches if we face some issues in future.

@@ -28,7 +30,7 @@ public ResolvedMigration getResolvedMigration(Configuration config, StatementInt
public final void migrate(Context context) throws Exception {
JdbcTemplate jdbcTemplate =
new JdbcTemplate(new SingleConnectionDataSource(context.getConnection(), true), false);

log.info("Running migration: {}", this.getClass().getSimpleName());
Copy link
Contributor

Choose a reason for hiding this comment

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

What are the expected logs here? Does logs from flyway not sufficient for us.

Set<Policy> policies = mapObject(policiesJson, new TypeReference<Set<Policy>>() {});
TenantConfiguration tenantConfiguration =
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's add this in the docs as well seems to be something which can be missed by other devs.

if (error.getMessage() != null
&& error.getMessage().contains("workspace_datasource_deleted_compound_index")
&& error.getMessage().contains("u_workspace_datasource")
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as above

@@ -159,6 +159,7 @@ public void testGetMockDataSets() {

@Test
@WithUserDetails(value = "api_user")
@Order(1)
Copy link
Contributor

Choose a reason for hiding this comment

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

Any specific need for this ordering? We ideally want each test to be self sufficient.

@@ -48,7 +48,7 @@

import static org.assertj.core.api.Assertions.assertThat;

@ExtendWith(SpringExtension.class)
@ExtendWith(AfterAllCleanUpExtension.class)
@SpringBootTest
public class AuthenticationServiceTest {
Copy link
Contributor

Choose a reason for hiding this comment

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

Don't we require @DirtiesContext here?

@@ -49,11 +49,10 @@
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.doReturn;

@ExtendWith(SpringExtension.class)
@ExtendWith(AfterAllCleanUpExtension.class)
@SpringBootTest
@Slf4j
public class DatasourceStructureSolutionTest {
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here @DirtiesContext is missing.

@@ -61,10 +61,9 @@
import static org.assertj.core.api.Assertions.assertThat;

@Slf4j
@ExtendWith(SpringExtension.class)
@ExtendWith(AfterAllCleanUpExtension.class)
@SpringBootTest
public class PartialExportServiceTest {
Copy link
Contributor

Choose a reason for hiding this comment

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

@DirtiesContext is missing.

@@ -91,7 +91,7 @@
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.ArgumentMatchers.any;

@ExtendWith(SpringExtension.class)
@ExtendWith(AfterAllCleanUpExtension.class)
@SpringBootTest
@Slf4j
public class ActionExecutionSolutionCETest {
Copy link
Contributor

Choose a reason for hiding this comment

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

@DirtiesContext is missing

Copy link

Failed server tests

  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowAppsmithException_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowNonAppsmithException_eeImplTest_throwExceptionFromAspect
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#testEEOnlyMethod
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithLongHeader_thenVerifyErrorStatus
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithShortHeader_thenVerifySuccessStatus
  • com.appsmith.server.controllers.PageControllerTest#emptyCustomSlugShouldBeOkay
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[16]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[17]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[18]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[19]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[20]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[21]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[22]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[23]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[24]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[25]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[26]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[27]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[28]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[29]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[30]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[31]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[32]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[33]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[34]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[35]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[36]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[37]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[38]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[39]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[40]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[41]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[42]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[43]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[44]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[45]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[46]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[47]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[48]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[49]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[50]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[51]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[52]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[53]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[54]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[55]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[56]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[57]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[58]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[59]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[60]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[61]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[62]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[63]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[64]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[65]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[66]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[67]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[68]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[69]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[70]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[71]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[72]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[73]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[74]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[75]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[76]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[77]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[78]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[79]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[80]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[81]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[82]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[83]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[84]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[85]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[86]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[87]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[88]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[89]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[90]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[91]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[92]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[93]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[94]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[95]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[96]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[97]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#noBody
  • com.appsmith.server.controllers.WorkspaceControllerTest#getWorkspaceNoName
  • com.appsmith.server.exports.internal.ExportServiceTests#
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonForGitTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithActionAndActionCollectionTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithCustomJSLibTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithDatasourceButWithoutActionsTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderDifferentInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderSameInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenContainsInternalFields_InternalFieldsNotExported
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenThemeDoesNotExist_ExportedWithDefaultTheme
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationWithNullApplicationIdTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withInvalidApplicationId_throwNoResourceFoundException
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withReadOnlyAccess_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.exports.internal.ExportServiceTests#exportPublicApplicationTest
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.git.FileFormatMigrationTests#
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion1_success
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion2_success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_InvalidBranchName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFileContent_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFilesNonConflictingChanges_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_NothingToCommit_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ValidBranchName_Success
  • com.appsmith.server.git.GitExecutorTest#commit_validChange_Success
  • com.appsmith.server.git.GitExecutorTest#createBranch_duplicateName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#createBranch_validName_success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_emptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_inValidBranch_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_validBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_EmptyRepo_Error
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_NonEmptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInDatasources_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsLibs_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsObjects_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInPages_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInQueries_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_noChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NoChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NonConflictingChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#listBranches_LocalMode_Success
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_NoChanges_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithConflicts_ShowConflictFiles
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithOutConflicts_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_NoChanges_SuccessUpToDate
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithConflicts_Failure
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithOutConflicts_Success
  • com.appsmith.server.git.GitExecutorTest#resetToLastCommit_WithOutStaged_CleanStateForRepo
  • com.appsmith.server.git.GitServiceCETest#
  • com.appsmith.server.git.GitServiceCETest#ConnectApplicationToGit_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#checkoutBranch_branchNotProvided_throwInvalidParameterError
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_CustomThemeSetToDefaultAppAndRemoteBranch_AppAndThemesCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_WhenApplicationObjectIsPresent_NewAppNotCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_notPresentInLocal_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_presentInLocal_throwError
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_WithMultipleUsers_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_cancelledMidway_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_commitAndPushChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_noChangesToCommitWithLocalCommitsToPush_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitApplication_BranchIsProtected_Failure
  • com.appsmith.server.git.GitServiceCETest#commitApplication_applicationNotConnectedToGit_throwInvalidGitConfigException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_commitChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitApplication_localRepoNotAvailable_throwRepoNotFoundException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_noChangesInLocal_emptyCommitMessage
  • com.appsmith.server.git.GitServiceCETest#commitApplication_protectedBranch_pushFails
  • com.appsmith.server.git.GitServiceCETest#commitApplication_pushFails_verifyAppNotPublished_throwUpstreamChangesFoundException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_ClonedRepoNotEmpty_Failure
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyOriginHeader_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPrivateKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPublicKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyRemoteUrl_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidFilePath_ThrowIOException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidGitApplicationMetadata_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrlHttp_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrl_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithNonEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithValidCustomGitDomain_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingDefaultProfile_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingLocalProfile_ThrowAuthorNameUnavailableError
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cancelledMidway_cloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cloneException_throwGitException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_moreThanSupportedPrivateRepos_throwException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_toggleAccessibilityToPublicForConnectedApp_connectSuccessful
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchDeleteLogo_SrcLogoRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchHasCustomApplicationSettings_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchSetPageIcon_SrcBranchPageIconRemainsNull
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchUploadLogo_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_SrcHasCustomTheme_newApplicationCreatedWithThemesCopied
  • com.appsmith.server.git.GitServiceCETest#createBranch_branchWithOriginPrefix_throwUnsupportedException
  • com.appsmith.server.git.GitServiceCETest#createBranch_cancelledMidway_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#createBranch_duplicateNameBranchPresentInRemote_throwDuplicateKeyException
  • com.appsmith.server.git.GitServiceCETest#createBranch_validCreateBranchRequest_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_BranchIsProtected_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_branchDoesNotExist_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_cancelledMidway_success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranchUpdated_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranch_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_existsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_staleBranchNotInDB_Success
  • com.appsmith.server.git.GitServiceCETest#detachRemote_EmptyGitData_NoChange
  • com.appsmith.server.git.GitServiceCETest#detachRemote_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#detachRemote_applicationWithActionAndActionCollection_Success
  • com.appsmith.server.git.GitServiceCETest#discardChanges_cancelledMidway_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#discardChanges_upstreamChangesAvailable_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#fetchFromRemote_WhenSuccessful_ReturnsResponse
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSAType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSA_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#getGitConnectedApps_privateRepositories_Success
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListDoestNotExists_EmptyListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListExists_ListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenUserHasMultipleBranchProtected_ReturnsEmptyOrDefaultBranchOnly
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_InvalidRemoteUrl_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyWorkspaceId_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_privateRepoLimitReached_ThrowApplicationLimitError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateApplicationName_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfDifferentType_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameTypeCancelledMidway_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameType_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithEmptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequest_Success
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_checkMergingWithRemoteBranch_throwsUnsupportedOperationException
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_conflictingChanges_canNotBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_nonConflictingChanges_canBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_remoteAhead_remoteAheadErrorMessage
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_WhenLocalRepoDoesNotExist_RepoIsClonedFromRemote
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_applicationWithInvalidGitConfig_throwError
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteDoesNotExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchNotChangesInRemote_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_emptyGitMetadata_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_FileSystemAccessError_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_noUpstreamChanges_nothingToPullMessage
  • com.appsmith.server.git.GitServiceCETest#pullChanges_upstreamChangesAvailable_pullSuccess
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit_WhenUserDoesNotHavePermission_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_EmptyData_Success
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_validData_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListContainsOnlyDefaultBranch_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListDoesNotContainOnlyDefaultBranch_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListIsEmpty_CurrentProtectedBranchesRemoved
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenOneOperationFails_ChangesReverted
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#importApplication_ThenExportApplication_MatchJson_equals_Success
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenAutoCommitNotEligible_returnsFalse
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyClientIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyServerIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenPageDslAlreadyLatest_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WithFS_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted_CaseJsonSchemaMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerHasNoChanges_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerRequiresMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenJsonSchemaMigrationPresent_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicChanges_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicDoesNotChange_CommitFailure
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_nullFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_validFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithDisableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithEnableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_sameFlagIsFlippedAsPerDBState_flagGetsRemovedFromPendingMigrationList
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_fetchTenantFlagsFailedFromCS_pendingMigrationReported
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_noDiffForExistingAndLatestFlag_noPendingMigrations
  • com.appsmith.server.helpers.ResponseUtilsTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isBranchProtected
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsLessThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsMoreThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsSameAsLimit_Success
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreEligible_verifyDTOReturnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreNotEligible_verifyDTOReturnFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenFeatureIsFlagFalse_returnsAllFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyClientIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyServerIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenFeatureFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_fileSystemOperation_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenFeatureIsFlagFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAllConditionsMatched_AutoCommitTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAnotherCommitIsRunning_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAutoCommitDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenBranchIsProtected_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenFeatureFlagIsDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenRemoteAhead_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerDoesNotRequireMigration_returnFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerMigrationFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerRequiresMigration_successIfEverythingIsRight
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitFinished_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.imports.internal.ImportServiceTests#extractFileAndUpdateExistingApplication_existingApplication_applicationNameAndSlugRemainsUnchanged
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplication_existingApplication_ApplicationReplacedWithImportedOne
  • com.appsmith.server.imports.internal.ImportServiceTests#importArtifactIntoWorkspace_pageAddedInBranchApplication_Success
  • com.appsmith.server.imports.internal.ImportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageListIProvided_OnlyListedPagesAreMerged
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageNameConflicts_PageNamesRenamed
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_existingApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationChildBranch_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.notifications.EmailSenderTest#
  • com.appsmith.server.notifications.EmailSenderTest#itShouldNotSendMailsWithInvalidAddresses
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withDuplicateName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withEmptyActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionNameToDeletedName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName_forGitConnectedAction_success
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorDuplicateActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#simpleWidgetNameRefactor
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#tableWidgetKeyEscapeRefactorName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorActionName_withInvalidName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorCollection_withModifiedName_ignoresName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorWidgetName_forDefaultWidgetsInList_updatesBothWidgetsAndTemplateReferences
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testWidgetNameRefactor_withSimpleUpdate_refactorsActionCollectionAndItsAction
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#jsActionWithoutCollectionIdShouldBeIgnoredDuringNameChecking
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#testIsNameAllowed_withRepeatedActionCollectionName_throwsError
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#deleteAllByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMultipleChunksArePresent_ReturnsSingleOne
  • com.appsmith.server.repositories.CacheableRepositoryTest#getUserPermissionsTest_onPermissionGroupDelete_valid
  • com.appsmith.server.repositories.CustomApplicationRepositoryImplTest#getAllApplicationId_WhenDataExists_ReturnsList
  • com.appsmith.server.repositories.CustomUserDataRepositoryTest#findPhotoAssetsByUserIds_WhenPhotoAssetIdExist_ReturnsPhotoAssetId
  • com.appsmith.server.repositories.ce.CustomActionCollectionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_ActionCollectionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#archiveDeletedUnpublishedActions_WhenApplicationIdMatchesAndDeletedFromEditMode_ActionDeleted
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkInsert_WhenInsertedWithProvidedId_InsertedWithProvidedId
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_NewActionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#countActionsByPluginType_WhenMatchedApplicationId_ReturnsActualCount
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#publishActions_WhenApplicationIdMatches_ActionPublished
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#findPageWithoutBranchName
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#publishPages_WhenIdMatches_Published
  • com.appsmith.server.services.ActionCollectionServiceImplTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#createValidActionCollectionAndCheckPermissions
  • com.appsmith.server.services.ActionCollectionServiceTest#refactorNameForActionRefactorsNameInCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testActionCollectionInViewMode
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection_verifySoftDeletedCollectionIsNotLoaded
  • com.appsmith.server.services.ActionCollectionServiceTest#testDeleteActionCollection_afterApplicationPublish_clearsActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testMoveActionCollection_whenMovedAcrossPages_thenContainsNewPageId
  • com.appsmith.server.services.ActionCollectionServiceTest#testRefactorActionName_withActionNameEqualsRun_doesNotRefactorApiRunCalls
  • com.appsmith.server.services.ApplicationPageServiceTest#
  • com.appsmith.server.services.ApplicationPageServiceTest#cloneApplication_WhenClonedSuccessfully_ApplicationIsPublished
  • com.appsmith.server.services.ApplicationPageServiceTest#createApplicationWithId_throwsException
  • com.appsmith.server.services.ApplicationPageServiceTest#createOrUpdateSuffixedApplication_GitConnectedAppExistsWithSameName_AppCreatedWithSuffixedName
  • com.appsmith.server.services.ApplicationPageServiceTest#deleteUnpublishedPage_WhenPageDeleted_ApplicationEditDateSet
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDSLHasNotVersion_DslMigratedToLatest
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDslIsLatest_MigrationNotTriggered
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenEditModeDslIsNotLatest_EditModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenViewModeDslIsNotLatest_ViewModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#verifyGetPagesBasedOnApplicationMode_ReturnsRigthNumberOfPages_BasedOnApplicationMode
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_OlderSnapshotExists_OlderSnapshotsRemoved
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenGitBranchExists_SnapshotCreatedWithBranchedAppId
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenNoPreviousSnapshotExists_NewCreated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenSnapshotExists_ExistingSnapshotUpdated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#deleteSnapshot_WhenSnapshotExists_Deleted
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenNewPagesAddedAfterSnapshotTaken_NewPagesRemovedAfterSnapshotIsRestored
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenSuccessfullyRestored_SnapshotDeleted
  • com.appsmith.server.services.ApplicationTemplateServiceTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorResponseWhenAnonymousUserAccessPrivateApp
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorWhenModeIsNullAndPageIdAvailable
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForEditMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForViewMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseWhenPageIdAndApplicationIdMissing
  • com.appsmith.server.services.CurlImporterServiceTest#
  • com.appsmith.server.services.CurlImporterServiceTest#checkActionConfigurationFormDataForApiContentKey
  • com.appsmith.server.services.CurlImporterServiceTest#chromeCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#dontEatBackslashesInSingleQuotes
  • com.appsmith.server.services.CurlImporterServiceTest#firefoxCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidHeader
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidMethod
  • com.appsmith.server.services.CurlImporterServiceTest#importValidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#lexComments
  • com.appsmith.server.services.CurlImporterServiceTest#lexWhiteSpace
  • com.appsmith.server.services.CurlImporterServiceTest#lexerTests
  • com.appsmith.server.services.CurlImporterServiceTest#missingMethod
  • com.appsmith.server.services.CurlImporterServiceTest#multilineCommand
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlCommand1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart2
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultiFormData
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultipleData
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument2
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithJson
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithSpacedHeader
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithoutProtocol
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateDatasource
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateProvider
  • com.appsmith.server.services.CurlImporterServiceTest#postmanExportCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnEmptyInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnInvalidInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnNullInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnURLWithCurlyBraces
  • com.appsmith.server.services.CurlImporterServiceTest#testUrlEncodedData
  • com.appsmith.server.services.CurlImporterServiceTest#urlInSingleQuotes
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceContextServiceTest#testCachedDatasourceCreate
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCache_afterDatasourceDeleted_doesNotReturnOldConnection
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceContextIsInvalid_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCreate_withUpdatableConnection_recreatesConnectionAlways
  • com.appsmith.server.services.DatasourceContextServiceTest#testNewDatasourceContextCreate_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testUpdateDatasourceAndSetAuthentication_withNoRealChange_keepsDatasourceConfigurationValuesDecrypted
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContextHasRightCredentialsAfterVariableReplacement
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContext_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDeleteDatasourceContext_whenContextDoesNotExist_returnsEmptyMono
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyInitialiseDatasourceContextReturningRightIdentifier
  • com.appsmith.server.services.DatasourceServiceTest#
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterRemoval
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterUpdate
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceDifferentAuthentication
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceValidDB
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceNotInstalledPlugin
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithHostnameStartingWithSpace
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithId
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithInvalidCharsInHost
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithNullPluginId
  • com.appsmith.server.services.DatasourceServiceTest#createNamelessDatasource
  • com.appsmith.server.services.DatasourceServiceTest#datasourceDefaultNameCounterAsPerWorkspaceId
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithDeletedActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithoutActions
  • com.appsmith.server.services.DatasourceServiceTest#getErrorOnCreatingEmptyDatasource
  • com.appsmith.server.services.DatasourceServiceTest#get_WhenDatasourcesPresent_SortedAndIsRecentlyCreatedFlagSet
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceEmptyFields
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageNPE
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostIPAddressOnUpdateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnTestDatasourceEvent
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnUpdateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testValidateDatasource_createDatasourceWithNullWorkspaceId
  • 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#verifyFindByDatasourceAndStorageIdGivesErrorWhenStorageIsAbsent
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyFindByDatasourceId
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationErrorsOutWhenStorageAlreadyExists
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationSucceedsWithDifferentEnvironmentId
  • com.appsmith.server.services.LayoutActionServiceTest#
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnActionViaWidget
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnWidgetButNotPageLoadCandidate
  • com.appsmith.server.services.LayoutActionServiceTest#deleteUnpublishedAction_WhenActionDeleted_OnPageLoadActionsIsEmpty
  • com.appsmith.server.services.LayoutActionServiceTest#duplicateActionNameCreation
  • com.appsmith.server.services.LayoutActionServiceTest#introduceCyclicDependencyAndRemoveLater
  • com.appsmith.server.services.LayoutActionServiceTest#simpleOnPageLoadActionCreationTest
  • com.appsmith.server.services.LayoutActionServiceTest#tableWidgetKeyEscape
  • com.appsmith.server.services.LayoutActionServiceTest#testExecuteOnPageLoadOrderWhenAllActionsAreOnlyExplicitlySetToExecute
  • com.appsmith.server.services.LayoutActionServiceTest#testHintMessageOnLocalhostUrlOnUpdateActionEvent
  • com.appsmith.server.services.LayoutActionServiceTest#updateActionUpdatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenPageLoadActionSetBothWaysExplicitlyAndImplicitlyViaWidget_ActionsSaved
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_withSelfReferencingWidget_updatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateMultipleLayouts_MultipleLayouts_LayoutsUpdated
  • com.appsmith.server.services.LayoutServiceTest#
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithInvalidPageID
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithNullPageId
  • com.appsmith.server.services.LayoutServiceTest#createValidLayout
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectDynamicBindingPathInDsl
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectMustacheExpressionInBindingInDsl
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidAppId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidPageId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutValidPageId
  • com.appsmith.server.services.MockDataServiceTest#
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsDuplicateName
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsMongo
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsPostgres
  • com.appsmith.server.services.NewPageServiceTest#publishPages_WhenUserDoesNotHavePermissionOnPages_NotPublished
  • com.appsmith.server.services.PageServiceTest#
  • com.appsmith.server.services.PageServiceTest#addDuplicatePageToApplication
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained
  • com.appsmith.server.services.PageServiceTest#createPageWithNullApplication
  • com.appsmith.server.services.PageServiceTest#createPageWithNullName
  • com.appsmith.server.services.PageServiceTest#createValidPage
  • com.appsmith.server.services.PageServiceTest#createValidPageWithLayout
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromHighOrderToLowOrder
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromLowOrderToHighOrder
  • com.appsmith.server.services.PageServiceTest#reorderPage_pageReordered_success
  • com.appsmith.server.services.PageServiceTest#reuseDeletedPageName
  • com.appsmith.server.services.PageServiceTest#updatePage_WhenCustomSlugSet_CustomSlugIsNotUpdated
  • com.appsmith.server.services.PageServiceTest#validChangePageNameAndPageIcon
  • com.appsmith.server.services.PermissionGroupServiceTest#
  • com.appsmith.server.services.PluginServiceTest#
  • com.appsmith.server.services.PluginServiceTest#checkPluginExecutor
  • com.appsmith.server.services.PluginServiceTest#getPluginFormValid
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullEditorConfig
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullFormConfig
  • com.appsmith.server.services.ThemeServiceTest#
  • com.appsmith.server.services.UsagePulseServiceTest#
  • com.appsmith.server.services.UserDataServiceTest#
  • com.appsmith.server.services.UserServiceTest#
  • com.appsmith.server.services.UserServiceTest#buildUserProfileDTO_WhenAnonymousUser_ReturnsProfile
  • com.appsmith.server.services.UserServiceTest#createNewUserFormSignupNullPassword
  • com.appsmith.server.services.UserServiceTest#createNewUserValid
  • com.appsmith.server.services.UserServiceTest#createNewUser_WhenEmailHasUpperCase_SavedInLowerCase
  • com.appsmith.server.services.UserServiceTest#createUserWithInvalidEmailAddress
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenInstanceEmailVerificationIsNotEnabled_ThrowsException
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenUserEmailAlreadyVerified_ThrowsException
  • com.appsmith.server.services.UserServiceTest#forgotPasswordTokenGenerate_AfterTrying3TimesIn24Hours_ThrowsException
  • com.appsmith.server.services.UserServiceTest#getIntercomConsentOfUserOnCloudHosting_AlwaysTrue
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenTokenDoesNotMatch_ThrowsException
  • com.appsmith.server.services.UserServiceTest#signUpAfterBeingInvitedToAppsmithWorkspace
  • com.appsmith.server.services.UserServiceTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#signUpViaGoogleIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#testCreateNewUser_assertUserManagementRole
  • com.appsmith.server.services.UserServiceTest#updateIntercomConsentOfUser
  • com.appsmith.server.services.UserServiceTest#updateInvalidUserWithAnything
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithAccentedCharacters_IsValid
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithNotAllowedSpecialCharacter_InvalidName
  • com.appsmith.server.services.UserServiceTest#updateNameProficiencyAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameRoleAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateRoleOfUser
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotExist_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotMatch_ReturnsFalse
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenMatches_ReturnsTrue
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled2
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewUserValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserWorkspaceServiceTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_noRecentWorkspaces_allEntriesAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_withRecentlyUsedWorkspaces_allEntriesWithSameOrderAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenNoOrgFound_ThrowsException
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenRoleIsNull_ReturnsEmptyList
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForMultipleWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForOneWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#whenMapPermissionGroup_thenConvertsToPermissionGroupInfoDTO
  • com.appsmith.server.services.WorkspaceServiceTest#
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsAdmin
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUsersBulkToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsAdminAndCheckApplicationAndDatasourcePermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsViewerAndCheckApplicationPermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceIfUserAlreadyMember_throwsError
  • com.appsmith.server.services.WorkspaceServiceTest#checkNewUsersDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDuplicateNameWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasApp_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasNoApp_WorkspaceIsDeleted
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WithoutManagePermission_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#getAllMembersForWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#getAllUserRolesForWorkspaceDomainAsAdministrator
  • com.appsmith.server.services.WorkspaceServiceTest#getWorkspaceInvalidId
  • com.appsmith.server.services.WorkspaceServiceTest#inValidupdateWorkspaceEmptyName
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongDomainPart
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongLocalPart
  • com.appsmith.server.services.WorkspaceServiceTest#nullCreateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#nullName
  • com.appsmith.server.services.WorkspaceServiceTest#save_WhenNameIsPresent_SlugGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#testDeleteLogo_invalidWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#testInviteDuplicateUsers_shouldReturnUniqueUsers
  • com.appsmith.server.services.WorkspaceServiceTest#testUpdateAndDeleteLogo_validLogo
  • com.appsmith.server.services.WorkspaceServiceTest#update_NewName_GroupNamesUpdated
  • com.appsmith.server.services.WorkspaceServiceTest#update_WhenNameIsNotPresent_SlugIsNotGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_largeFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_nullFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#validCreateWorkspaceTest
  • com.appsmith.server.services.WorkspaceServiceTest#validGetWorkspaceByName
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateCorrectWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidWebsite
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidWebsite
  • com.appsmith.server.services.ce.ActionServiceCE_Test#
  • 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#createAction_forGitConnectedAppWithInvalidBranchName_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#
  • 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#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsAbsent_allAppsAreReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsPresent_orderedListIsReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_noApplicationPresentInWorkspace_emptyListIsReturned
  • 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#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.services.ce.ApplicationSnapshotServiceUnitTest#createApplicationSnapshot_WhenApplicationTooLarge_SnapshotCreatedSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationConnectedToGit_ReturnApplicationWithDefaultIds
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationHasDefaultPageIds_IdReplacedWithDefaultPageId
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenSnapshotHasMultipleChunks_RestoredSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#test
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendForgotPasswordEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendInviteUserToWorkspaceEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testInviteWorkspaceUrl
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testSendInstanceAdminInviteEmail
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatureFlags_withUserIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatures_withTenantIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_disableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_emptyMapForPendingMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_enableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getCachedTenantFeatureFlags_withDefaultTenant_tenantFeatureFlagsAreCached
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatureFlags_withUserIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatures_withTenantIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getTenantFeatureFlags_withDefaultTenant_fetchLatestFlags
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser_overrideWithTenantFeature
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testNullFeatureCheck
  • com.appsmith.server.services.ce.NewActionServiceTest#testActionsPublishedWhenPermissionIsMatched
  • com.appsmith.server.services.ce.TenantServiceCETest#
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_emptyMigrationMap_revertSameTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_exceptionWhileRunningMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#ensureMapsKey
  • com.appsmith.server.services.ce.TenantServiceCETest#getTenantConfig_Valid_AnonymousUser
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabledFalseAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithInvalidSMTPHost_ReturnsError
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithValidSMTPHost_Success
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthentication
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthorization
  • com.appsmith.server.services.ce.TenantServiceCETest#testDeserializationErrors
  • com.appsmith.server.services.ce.TenantServiceCETest#updateTenantConfiguration_updateStrongPasswordPolicy_success
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenCloudHosting_returnsEmail
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenSelfHosted_returnsHashedEmail
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationFalseWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationTrueWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationMultipleTimes
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasCustomSavedTheme_NewCustomThemeCreated
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasSystemTheme_SystemThemeSet
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasUnsavedThemeCustomization_ForkedWithCustomizations
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_WhenContainsInternalFields_InternalFieldsNotForked
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_deletePageAfterBeingPublished_deletedPageIsNotCloned
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceNotUsed_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceUsed_IsPartialImportTrue
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationTrue_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkGitConnectedApplication_defaultBranchUpdated_forkDefaultBranchApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkingEnabledPublicApp_noPermission_ForkApplicationSuccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test1_cloneWorkspaceWithItsContents
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test2_forkApplicationWithReadApplicationUserAccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test3_failForkApplicationWithInvalidPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test4_validForkApplication_cancelledMidWay_createValidApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test5_failForkApplication_noPageEditPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test6_failForkApplication_noDatasourceCreatePermission
  • com.appsmith.server.solutions.AuthenticationServiceTest#
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_invalidDatasourceWithNullAuthentication
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_missingDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasourceAndBranchName
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidApplicationIdTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidDatasourceTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidRequestBodyTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForPostgres
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForSql
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageId
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForS3
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForSnowflake
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForGoogleSheet
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMongoDB
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMySqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForPostgresqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForRedshiftDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withInvalidBranchName_throwException
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withValidBranch_validDefaultIds
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#
  • 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.DatasourceTriggerSolutionTest#datasourceTriggerTest
  • com.appsmith.server.solutions.PartialExportServiceTest#
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_branchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_featureBranchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImportWithBuildingBlock_nameClash_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_gitConnectedAppDefaultBranch_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nameClashInAction_successWithNoNameDuplicates
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminInviteRoles
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminPermissionsForInviteAndMakePublic
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDevPermissionsForInvite
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDeveloperInviteRoles
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testEnrichExecutionParams_withBlobReference_performsSubstitutionCorrectly
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithParameterMapAsLastPart
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithUsualOrderingOfTheParts
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withMalformedExecuteActionDTO_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutActionId_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutExecuteActionDTOPart_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testParsePartsAndGetParamsFlux_withBlobIdentifiers_replacesValueInParam
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#
  • 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
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_exceptionDuringImportActions_savedPagesAndApplicationReverted
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_transactionExceptionDuringListActionSave_omitTransactionMessagePart
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingListWidget_replacesTemplateReferences
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingTextWidget_replacesAllReferences

1 similar comment
Copy link

Failed server tests

  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowAppsmithException_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowNonAppsmithException_eeImplTest_throwExceptionFromAspect
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#testEEOnlyMethod
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithLongHeader_thenVerifyErrorStatus
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithShortHeader_thenVerifySuccessStatus
  • com.appsmith.server.controllers.PageControllerTest#emptyCustomSlugShouldBeOkay
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[16]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[17]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[18]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[19]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[20]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[21]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[22]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[23]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[24]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[25]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[26]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[27]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[28]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[29]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[30]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[31]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[32]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[33]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[34]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[35]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[36]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[37]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[38]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[39]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[40]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[41]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[42]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[43]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[44]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[45]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[46]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[47]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[48]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[49]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[50]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[51]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[52]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[53]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[54]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[55]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[56]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[57]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[58]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[59]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[60]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[61]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[62]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[63]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[64]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[65]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[66]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[67]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[68]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[69]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[70]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[71]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[72]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[73]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[74]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[75]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[76]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[77]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[78]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[79]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[80]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[81]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[82]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[83]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[84]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[85]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[86]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[87]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[88]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[89]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[90]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[91]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[92]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[93]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[94]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[95]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[96]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[97]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#noBody
  • com.appsmith.server.controllers.WorkspaceControllerTest#getWorkspaceNoName
  • com.appsmith.server.exports.internal.ExportServiceTests#
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonForGitTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithActionAndActionCollectionTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithCustomJSLibTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithDatasourceButWithoutActionsTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderDifferentInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderSameInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenContainsInternalFields_InternalFieldsNotExported
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenThemeDoesNotExist_ExportedWithDefaultTheme
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationWithNullApplicationIdTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withInvalidApplicationId_throwNoResourceFoundException
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withReadOnlyAccess_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.exports.internal.ExportServiceTests#exportPublicApplicationTest
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.git.FileFormatMigrationTests#
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion1_success
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion2_success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_InvalidBranchName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFileContent_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFilesNonConflictingChanges_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_NothingToCommit_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ValidBranchName_Success
  • com.appsmith.server.git.GitExecutorTest#commit_validChange_Success
  • com.appsmith.server.git.GitExecutorTest#createBranch_duplicateName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#createBranch_validName_success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_emptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_inValidBranch_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_validBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_EmptyRepo_Error
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_NonEmptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInDatasources_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsLibs_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsObjects_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInPages_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInQueries_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_noChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NoChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NonConflictingChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#listBranches_LocalMode_Success
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_NoChanges_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithConflicts_ShowConflictFiles
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithOutConflicts_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_NoChanges_SuccessUpToDate
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithConflicts_Failure
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithOutConflicts_Success
  • com.appsmith.server.git.GitExecutorTest#resetToLastCommit_WithOutStaged_CleanStateForRepo
  • com.appsmith.server.git.GitServiceCETest#
  • com.appsmith.server.git.GitServiceCETest#ConnectApplicationToGit_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#checkoutBranch_branchNotProvided_throwInvalidParameterError
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_CustomThemeSetToDefaultAppAndRemoteBranch_AppAndThemesCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_WhenApplicationObjectIsPresent_NewAppNotCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_notPresentInLocal_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_presentInLocal_throwError
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_WithMultipleUsers_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_cancelledMidway_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_commitAndPushChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_noChangesToCommitWithLocalCommitsToPush_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitApplication_BranchIsProtected_Failure
  • com.appsmith.server.git.GitServiceCETest#commitApplication_applicationNotConnectedToGit_throwInvalidGitConfigException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_commitChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitApplication_localRepoNotAvailable_throwRepoNotFoundException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_noChangesInLocal_emptyCommitMessage
  • com.appsmith.server.git.GitServiceCETest#commitApplication_protectedBranch_pushFails
  • com.appsmith.server.git.GitServiceCETest#commitApplication_pushFails_verifyAppNotPublished_throwUpstreamChangesFoundException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_ClonedRepoNotEmpty_Failure
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyOriginHeader_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPrivateKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPublicKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyRemoteUrl_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidFilePath_ThrowIOException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidGitApplicationMetadata_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrlHttp_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrl_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithNonEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithValidCustomGitDomain_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingDefaultProfile_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingLocalProfile_ThrowAuthorNameUnavailableError
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cancelledMidway_cloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cloneException_throwGitException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_moreThanSupportedPrivateRepos_throwException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_toggleAccessibilityToPublicForConnectedApp_connectSuccessful
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchDeleteLogo_SrcLogoRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchHasCustomApplicationSettings_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchSetPageIcon_SrcBranchPageIconRemainsNull
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchUploadLogo_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_SrcHasCustomTheme_newApplicationCreatedWithThemesCopied
  • com.appsmith.server.git.GitServiceCETest#createBranch_branchWithOriginPrefix_throwUnsupportedException
  • com.appsmith.server.git.GitServiceCETest#createBranch_cancelledMidway_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#createBranch_duplicateNameBranchPresentInRemote_throwDuplicateKeyException
  • com.appsmith.server.git.GitServiceCETest#createBranch_validCreateBranchRequest_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_BranchIsProtected_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_branchDoesNotExist_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_cancelledMidway_success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranchUpdated_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranch_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_existsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_staleBranchNotInDB_Success
  • com.appsmith.server.git.GitServiceCETest#detachRemote_EmptyGitData_NoChange
  • com.appsmith.server.git.GitServiceCETest#detachRemote_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#detachRemote_applicationWithActionAndActionCollection_Success
  • com.appsmith.server.git.GitServiceCETest#discardChanges_cancelledMidway_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#discardChanges_upstreamChangesAvailable_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#fetchFromRemote_WhenSuccessful_ReturnsResponse
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSAType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSA_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#getGitConnectedApps_privateRepositories_Success
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListDoestNotExists_EmptyListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListExists_ListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenUserHasMultipleBranchProtected_ReturnsEmptyOrDefaultBranchOnly
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_InvalidRemoteUrl_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyWorkspaceId_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_privateRepoLimitReached_ThrowApplicationLimitError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateApplicationName_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfDifferentType_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameTypeCancelledMidway_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameType_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithEmptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequest_Success
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_checkMergingWithRemoteBranch_throwsUnsupportedOperationException
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_conflictingChanges_canNotBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_nonConflictingChanges_canBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_remoteAhead_remoteAheadErrorMessage
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_WhenLocalRepoDoesNotExist_RepoIsClonedFromRemote
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_applicationWithInvalidGitConfig_throwError
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteDoesNotExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchNotChangesInRemote_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_emptyGitMetadata_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_FileSystemAccessError_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_noUpstreamChanges_nothingToPullMessage
  • com.appsmith.server.git.GitServiceCETest#pullChanges_upstreamChangesAvailable_pullSuccess
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit_WhenUserDoesNotHavePermission_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_EmptyData_Success
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_validData_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListContainsOnlyDefaultBranch_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListDoesNotContainOnlyDefaultBranch_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListIsEmpty_CurrentProtectedBranchesRemoved
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenOneOperationFails_ChangesReverted
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#importApplication_ThenExportApplication_MatchJson_equals_Success
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenAutoCommitNotEligible_returnsFalse
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyClientIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyServerIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenPageDslAlreadyLatest_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WithFS_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted_CaseJsonSchemaMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerHasNoChanges_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerRequiresMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenJsonSchemaMigrationPresent_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicChanges_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicDoesNotChange_CommitFailure
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_nullFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_validFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithDisableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithEnableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_sameFlagIsFlippedAsPerDBState_flagGetsRemovedFromPendingMigrationList
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_fetchTenantFlagsFailedFromCS_pendingMigrationReported
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_noDiffForExistingAndLatestFlag_noPendingMigrations
  • com.appsmith.server.helpers.ResponseUtilsTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isBranchProtected
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsLessThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsMoreThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsSameAsLimit_Success
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreEligible_verifyDTOReturnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreNotEligible_verifyDTOReturnFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenFeatureIsFlagFalse_returnsAllFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyClientIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyServerIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenFeatureFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_fileSystemOperation_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenFeatureIsFlagFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAllConditionsMatched_AutoCommitTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAnotherCommitIsRunning_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAutoCommitDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenBranchIsProtected_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenFeatureFlagIsDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenRemoteAhead_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerDoesNotRequireMigration_returnFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerMigrationFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerRequiresMigration_successIfEverythingIsRight
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitFinished_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.imports.internal.ImportServiceTests#extractFileAndUpdateExistingApplication_existingApplication_applicationNameAndSlugRemainsUnchanged
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplication_existingApplication_ApplicationReplacedWithImportedOne
  • com.appsmith.server.imports.internal.ImportServiceTests#importArtifactIntoWorkspace_pageAddedInBranchApplication_Success
  • com.appsmith.server.imports.internal.ImportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageListIProvided_OnlyListedPagesAreMerged
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageNameConflicts_PageNamesRenamed
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_existingApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationChildBranch_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.notifications.EmailSenderTest#
  • com.appsmith.server.notifications.EmailSenderTest#itShouldNotSendMailsWithInvalidAddresses
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withDuplicateName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withEmptyActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionNameToDeletedName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName_forGitConnectedAction_success
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorDuplicateActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#simpleWidgetNameRefactor
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#tableWidgetKeyEscapeRefactorName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorActionName_withInvalidName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorCollection_withModifiedName_ignoresName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorWidgetName_forDefaultWidgetsInList_updatesBothWidgetsAndTemplateReferences
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testWidgetNameRefactor_withSimpleUpdate_refactorsActionCollectionAndItsAction
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#jsActionWithoutCollectionIdShouldBeIgnoredDuringNameChecking
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#testIsNameAllowed_withRepeatedActionCollectionName_throwsError
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#deleteAllByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMultipleChunksArePresent_ReturnsSingleOne
  • com.appsmith.server.repositories.CacheableRepositoryTest#getUserPermissionsTest_onPermissionGroupDelete_valid
  • com.appsmith.server.repositories.CustomApplicationRepositoryImplTest#getAllApplicationId_WhenDataExists_ReturnsList
  • com.appsmith.server.repositories.CustomUserDataRepositoryTest#findPhotoAssetsByUserIds_WhenPhotoAssetIdExist_ReturnsPhotoAssetId
  • com.appsmith.server.repositories.ce.CustomActionCollectionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_ActionCollectionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#archiveDeletedUnpublishedActions_WhenApplicationIdMatchesAndDeletedFromEditMode_ActionDeleted
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkInsert_WhenInsertedWithProvidedId_InsertedWithProvidedId
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_NewActionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#countActionsByPluginType_WhenMatchedApplicationId_ReturnsActualCount
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#publishActions_WhenApplicationIdMatches_ActionPublished
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#findPageWithoutBranchName
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#publishPages_WhenIdMatches_Published
  • com.appsmith.server.services.ActionCollectionServiceImplTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#createValidActionCollectionAndCheckPermissions
  • com.appsmith.server.services.ActionCollectionServiceTest#refactorNameForActionRefactorsNameInCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testActionCollectionInViewMode
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection_verifySoftDeletedCollectionIsNotLoaded
  • com.appsmith.server.services.ActionCollectionServiceTest#testDeleteActionCollection_afterApplicationPublish_clearsActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testMoveActionCollection_whenMovedAcrossPages_thenContainsNewPageId
  • com.appsmith.server.services.ActionCollectionServiceTest#testRefactorActionName_withActionNameEqualsRun_doesNotRefactorApiRunCalls
  • com.appsmith.server.services.ApplicationPageServiceTest#
  • com.appsmith.server.services.ApplicationPageServiceTest#cloneApplication_WhenClonedSuccessfully_ApplicationIsPublished
  • com.appsmith.server.services.ApplicationPageServiceTest#createApplicationWithId_throwsException
  • com.appsmith.server.services.ApplicationPageServiceTest#createOrUpdateSuffixedApplication_GitConnectedAppExistsWithSameName_AppCreatedWithSuffixedName
  • com.appsmith.server.services.ApplicationPageServiceTest#deleteUnpublishedPage_WhenPageDeleted_ApplicationEditDateSet
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDSLHasNotVersion_DslMigratedToLatest
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDslIsLatest_MigrationNotTriggered
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenEditModeDslIsNotLatest_EditModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenViewModeDslIsNotLatest_ViewModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#verifyGetPagesBasedOnApplicationMode_ReturnsRigthNumberOfPages_BasedOnApplicationMode
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_OlderSnapshotExists_OlderSnapshotsRemoved
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenGitBranchExists_SnapshotCreatedWithBranchedAppId
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenNoPreviousSnapshotExists_NewCreated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenSnapshotExists_ExistingSnapshotUpdated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#deleteSnapshot_WhenSnapshotExists_Deleted
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenNewPagesAddedAfterSnapshotTaken_NewPagesRemovedAfterSnapshotIsRestored
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenSuccessfullyRestored_SnapshotDeleted
  • com.appsmith.server.services.ApplicationTemplateServiceTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorResponseWhenAnonymousUserAccessPrivateApp
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorWhenModeIsNullAndPageIdAvailable
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForEditMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForViewMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseWhenPageIdAndApplicationIdMissing
  • com.appsmith.server.services.CurlImporterServiceTest#
  • com.appsmith.server.services.CurlImporterServiceTest#checkActionConfigurationFormDataForApiContentKey
  • com.appsmith.server.services.CurlImporterServiceTest#chromeCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#dontEatBackslashesInSingleQuotes
  • com.appsmith.server.services.CurlImporterServiceTest#firefoxCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidHeader
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidMethod
  • com.appsmith.server.services.CurlImporterServiceTest#importValidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#lexComments
  • com.appsmith.server.services.CurlImporterServiceTest#lexWhiteSpace
  • com.appsmith.server.services.CurlImporterServiceTest#lexerTests
  • com.appsmith.server.services.CurlImporterServiceTest#missingMethod
  • com.appsmith.server.services.CurlImporterServiceTest#multilineCommand
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlCommand1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart2
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultiFormData
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultipleData
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument2
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithJson
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithSpacedHeader
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithoutProtocol
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateDatasource
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateProvider
  • com.appsmith.server.services.CurlImporterServiceTest#postmanExportCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnEmptyInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnInvalidInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnNullInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnURLWithCurlyBraces
  • com.appsmith.server.services.CurlImporterServiceTest#testUrlEncodedData
  • com.appsmith.server.services.CurlImporterServiceTest#urlInSingleQuotes
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceContextServiceTest#testCachedDatasourceCreate
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCache_afterDatasourceDeleted_doesNotReturnOldConnection
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceContextIsInvalid_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCreate_withUpdatableConnection_recreatesConnectionAlways
  • com.appsmith.server.services.DatasourceContextServiceTest#testNewDatasourceContextCreate_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testUpdateDatasourceAndSetAuthentication_withNoRealChange_keepsDatasourceConfigurationValuesDecrypted
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContextHasRightCredentialsAfterVariableReplacement
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContext_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDeleteDatasourceContext_whenContextDoesNotExist_returnsEmptyMono
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyInitialiseDatasourceContextReturningRightIdentifier
  • com.appsmith.server.services.DatasourceServiceTest#
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterRemoval
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterUpdate
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceDifferentAuthentication
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceValidDB
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceNotInstalledPlugin
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithHostnameStartingWithSpace
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithId
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithInvalidCharsInHost
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithNullPluginId
  • com.appsmith.server.services.DatasourceServiceTest#createNamelessDatasource
  • com.appsmith.server.services.DatasourceServiceTest#datasourceDefaultNameCounterAsPerWorkspaceId
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithDeletedActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithoutActions
  • com.appsmith.server.services.DatasourceServiceTest#getErrorOnCreatingEmptyDatasource
  • com.appsmith.server.services.DatasourceServiceTest#get_WhenDatasourcesPresent_SortedAndIsRecentlyCreatedFlagSet
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceEmptyFields
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageNPE
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostIPAddressOnUpdateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnTestDatasourceEvent
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnUpdateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testValidateDatasource_createDatasourceWithNullWorkspaceId
  • 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#verifyFindByDatasourceAndStorageIdGivesErrorWhenStorageIsAbsent
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyFindByDatasourceId
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationErrorsOutWhenStorageAlreadyExists
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationSucceedsWithDifferentEnvironmentId
  • com.appsmith.server.services.LayoutActionServiceTest#
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnActionViaWidget
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnWidgetButNotPageLoadCandidate
  • com.appsmith.server.services.LayoutActionServiceTest#deleteUnpublishedAction_WhenActionDeleted_OnPageLoadActionsIsEmpty
  • com.appsmith.server.services.LayoutActionServiceTest#duplicateActionNameCreation
  • com.appsmith.server.services.LayoutActionServiceTest#introduceCyclicDependencyAndRemoveLater
  • com.appsmith.server.services.LayoutActionServiceTest#simpleOnPageLoadActionCreationTest
  • com.appsmith.server.services.LayoutActionServiceTest#tableWidgetKeyEscape
  • com.appsmith.server.services.LayoutActionServiceTest#testExecuteOnPageLoadOrderWhenAllActionsAreOnlyExplicitlySetToExecute
  • com.appsmith.server.services.LayoutActionServiceTest#testHintMessageOnLocalhostUrlOnUpdateActionEvent
  • com.appsmith.server.services.LayoutActionServiceTest#updateActionUpdatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenPageLoadActionSetBothWaysExplicitlyAndImplicitlyViaWidget_ActionsSaved
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_withSelfReferencingWidget_updatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateMultipleLayouts_MultipleLayouts_LayoutsUpdated
  • com.appsmith.server.services.LayoutServiceTest#
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithInvalidPageID
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithNullPageId
  • com.appsmith.server.services.LayoutServiceTest#createValidLayout
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectDynamicBindingPathInDsl
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectMustacheExpressionInBindingInDsl
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidAppId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidPageId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutValidPageId
  • com.appsmith.server.services.MockDataServiceTest#
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsDuplicateName
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsMongo
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsPostgres
  • com.appsmith.server.services.NewPageServiceTest#publishPages_WhenUserDoesNotHavePermissionOnPages_NotPublished
  • com.appsmith.server.services.PageServiceTest#
  • com.appsmith.server.services.PageServiceTest#addDuplicatePageToApplication
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained
  • com.appsmith.server.services.PageServiceTest#createPageWithNullApplication
  • com.appsmith.server.services.PageServiceTest#createPageWithNullName
  • com.appsmith.server.services.PageServiceTest#createValidPage
  • com.appsmith.server.services.PageServiceTest#createValidPageWithLayout
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromHighOrderToLowOrder
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromLowOrderToHighOrder
  • com.appsmith.server.services.PageServiceTest#reorderPage_pageReordered_success
  • com.appsmith.server.services.PageServiceTest#reuseDeletedPageName
  • com.appsmith.server.services.PageServiceTest#updatePage_WhenCustomSlugSet_CustomSlugIsNotUpdated
  • com.appsmith.server.services.PageServiceTest#validChangePageNameAndPageIcon
  • com.appsmith.server.services.PermissionGroupServiceTest#
  • com.appsmith.server.services.PluginServiceTest#
  • com.appsmith.server.services.PluginServiceTest#checkPluginExecutor
  • com.appsmith.server.services.PluginServiceTest#getPluginFormValid
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullEditorConfig
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullFormConfig
  • com.appsmith.server.services.ThemeServiceTest#
  • com.appsmith.server.services.UsagePulseServiceTest#
  • com.appsmith.server.services.UserDataServiceTest#
  • com.appsmith.server.services.UserServiceTest#
  • com.appsmith.server.services.UserServiceTest#buildUserProfileDTO_WhenAnonymousUser_ReturnsProfile
  • com.appsmith.server.services.UserServiceTest#createNewUserFormSignupNullPassword
  • com.appsmith.server.services.UserServiceTest#createNewUserValid
  • com.appsmith.server.services.UserServiceTest#createNewUser_WhenEmailHasUpperCase_SavedInLowerCase
  • com.appsmith.server.services.UserServiceTest#createUserWithInvalidEmailAddress
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenInstanceEmailVerificationIsNotEnabled_ThrowsException
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenUserEmailAlreadyVerified_ThrowsException
  • com.appsmith.server.services.UserServiceTest#forgotPasswordTokenGenerate_AfterTrying3TimesIn24Hours_ThrowsException
  • com.appsmith.server.services.UserServiceTest#getIntercomConsentOfUserOnCloudHosting_AlwaysTrue
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenTokenDoesNotMatch_ThrowsException
  • com.appsmith.server.services.UserServiceTest#signUpAfterBeingInvitedToAppsmithWorkspace
  • com.appsmith.server.services.UserServiceTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#signUpViaGoogleIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#testCreateNewUser_assertUserManagementRole
  • com.appsmith.server.services.UserServiceTest#updateIntercomConsentOfUser
  • com.appsmith.server.services.UserServiceTest#updateInvalidUserWithAnything
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithAccentedCharacters_IsValid
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithNotAllowedSpecialCharacter_InvalidName
  • com.appsmith.server.services.UserServiceTest#updateNameProficiencyAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameRoleAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateRoleOfUser
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotExist_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotMatch_ReturnsFalse
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenMatches_ReturnsTrue
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled2
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewUserValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserWorkspaceServiceTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_noRecentWorkspaces_allEntriesAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_withRecentlyUsedWorkspaces_allEntriesWithSameOrderAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenNoOrgFound_ThrowsException
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenRoleIsNull_ReturnsEmptyList
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForMultipleWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForOneWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#whenMapPermissionGroup_thenConvertsToPermissionGroupInfoDTO
  • com.appsmith.server.services.WorkspaceServiceTest#
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsAdmin
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUsersBulkToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsAdminAndCheckApplicationAndDatasourcePermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsViewerAndCheckApplicationPermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceIfUserAlreadyMember_throwsError
  • com.appsmith.server.services.WorkspaceServiceTest#checkNewUsersDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDuplicateNameWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasApp_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasNoApp_WorkspaceIsDeleted
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WithoutManagePermission_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#getAllMembersForWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#getAllUserRolesForWorkspaceDomainAsAdministrator
  • com.appsmith.server.services.WorkspaceServiceTest#getWorkspaceInvalidId
  • com.appsmith.server.services.WorkspaceServiceTest#inValidupdateWorkspaceEmptyName
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongDomainPart
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongLocalPart
  • com.appsmith.server.services.WorkspaceServiceTest#nullCreateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#nullName
  • com.appsmith.server.services.WorkspaceServiceTest#save_WhenNameIsPresent_SlugGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#testDeleteLogo_invalidWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#testInviteDuplicateUsers_shouldReturnUniqueUsers
  • com.appsmith.server.services.WorkspaceServiceTest#testUpdateAndDeleteLogo_validLogo
  • com.appsmith.server.services.WorkspaceServiceTest#update_NewName_GroupNamesUpdated
  • com.appsmith.server.services.WorkspaceServiceTest#update_WhenNameIsNotPresent_SlugIsNotGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_largeFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_nullFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#validCreateWorkspaceTest
  • com.appsmith.server.services.WorkspaceServiceTest#validGetWorkspaceByName
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateCorrectWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidWebsite
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidWebsite
  • com.appsmith.server.services.ce.ActionServiceCE_Test#
  • 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#createAction_forGitConnectedAppWithInvalidBranchName_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#
  • 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#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsAbsent_allAppsAreReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsPresent_orderedListIsReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_noApplicationPresentInWorkspace_emptyListIsReturned
  • 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#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.services.ce.ApplicationSnapshotServiceUnitTest#createApplicationSnapshot_WhenApplicationTooLarge_SnapshotCreatedSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationConnectedToGit_ReturnApplicationWithDefaultIds
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationHasDefaultPageIds_IdReplacedWithDefaultPageId
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenSnapshotHasMultipleChunks_RestoredSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#test
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendForgotPasswordEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendInviteUserToWorkspaceEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testInviteWorkspaceUrl
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testSendInstanceAdminInviteEmail
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatureFlags_withUserIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatures_withTenantIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_disableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_emptyMapForPendingMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_enableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getCachedTenantFeatureFlags_withDefaultTenant_tenantFeatureFlagsAreCached
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatureFlags_withUserIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatures_withTenantIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getTenantFeatureFlags_withDefaultTenant_fetchLatestFlags
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser_overrideWithTenantFeature
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testNullFeatureCheck
  • com.appsmith.server.services.ce.NewActionServiceTest#testActionsPublishedWhenPermissionIsMatched
  • com.appsmith.server.services.ce.TenantServiceCETest#
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_emptyMigrationMap_revertSameTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_exceptionWhileRunningMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#ensureMapsKey
  • com.appsmith.server.services.ce.TenantServiceCETest#getTenantConfig_Valid_AnonymousUser
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabledFalseAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithInvalidSMTPHost_ReturnsError
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithValidSMTPHost_Success
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthentication
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthorization
  • com.appsmith.server.services.ce.TenantServiceCETest#testDeserializationErrors
  • com.appsmith.server.services.ce.TenantServiceCETest#updateTenantConfiguration_updateStrongPasswordPolicy_success
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenCloudHosting_returnsEmail
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenSelfHosted_returnsHashedEmail
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationFalseWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationTrueWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationMultipleTimes
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasCustomSavedTheme_NewCustomThemeCreated
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasSystemTheme_SystemThemeSet
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasUnsavedThemeCustomization_ForkedWithCustomizations
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_WhenContainsInternalFields_InternalFieldsNotForked
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_deletePageAfterBeingPublished_deletedPageIsNotCloned
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceNotUsed_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceUsed_IsPartialImportTrue
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationTrue_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkGitConnectedApplication_defaultBranchUpdated_forkDefaultBranchApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkingEnabledPublicApp_noPermission_ForkApplicationSuccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test1_cloneWorkspaceWithItsContents
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test2_forkApplicationWithReadApplicationUserAccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test3_failForkApplicationWithInvalidPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test4_validForkApplication_cancelledMidWay_createValidApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test5_failForkApplication_noPageEditPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test6_failForkApplication_noDatasourceCreatePermission
  • com.appsmith.server.solutions.AuthenticationServiceTest#
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_invalidDatasourceWithNullAuthentication
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_missingDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasourceAndBranchName
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidApplicationIdTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidDatasourceTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidRequestBodyTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForPostgres
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForSql
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageId
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForS3
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForSnowflake
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForGoogleSheet
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMongoDB
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMySqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForPostgresqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForRedshiftDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withInvalidBranchName_throwException
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withValidBranch_validDefaultIds
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#
  • 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.DatasourceTriggerSolutionTest#datasourceTriggerTest
  • com.appsmith.server.solutions.PartialExportServiceTest#
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_branchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_featureBranchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImportWithBuildingBlock_nameClash_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_gitConnectedAppDefaultBranch_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nameClashInAction_successWithNoNameDuplicates
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminInviteRoles
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminPermissionsForInviteAndMakePublic
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDevPermissionsForInvite
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDeveloperInviteRoles
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testEnrichExecutionParams_withBlobReference_performsSubstitutionCorrectly
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithParameterMapAsLastPart
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithUsualOrderingOfTheParts
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withMalformedExecuteActionDTO_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutActionId_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutExecuteActionDTOPart_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testParsePartsAndGetParamsFlux_withBlobIdentifiers_replacesValueInParam
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#
  • 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
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_exceptionDuringImportActions_savedPagesAndApplicationReverted
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_transactionExceptionDuringListActionSave_omitTransactionMessagePart
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingListWidget_replacesTemplateReferences
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingTextWidget_replacesAllReferences

@vivonk
Copy link
Contributor Author

vivonk commented May 30, 2024

@abhvsn with index, names are very similar just that we have shorten as required and in case of application on u_workspace_app word comprises 4 indexes created so that's why it's different and we have to live with it ig.

Copy link

Failed server tests

  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowAppsmithException_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowNonAppsmithException_eeImplTest_throwExceptionFromAspect
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#testEEOnlyMethod
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithLongHeader_thenVerifyErrorStatus
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithShortHeader_thenVerifySuccessStatus
  • com.appsmith.server.controllers.PageControllerTest#emptyCustomSlugShouldBeOkay
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[16]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[17]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[18]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[19]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[20]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[21]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[22]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[23]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[24]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[25]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[26]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[27]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[28]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[29]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[30]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[31]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[32]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[33]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[34]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[35]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[36]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[37]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[38]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[39]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[40]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[41]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[42]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[43]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[44]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[45]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[46]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[47]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[48]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[49]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[50]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[51]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[52]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[53]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[54]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[55]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[56]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[57]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[58]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[59]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[60]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[61]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[62]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[63]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[64]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[65]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[66]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[67]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[68]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[69]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[70]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[71]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[72]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[73]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[74]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[75]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[76]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[77]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[78]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[79]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[80]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[81]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[82]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[83]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[84]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[85]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[86]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[87]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[88]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[89]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[90]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[91]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[92]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[93]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[94]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[95]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[96]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[97]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#noBody
  • com.appsmith.server.controllers.WorkspaceControllerTest#getWorkspaceNoName
  • com.appsmith.server.exports.internal.ExportServiceTests#
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonForGitTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithActionAndActionCollectionTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithCustomJSLibTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithDatasourceButWithoutActionsTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderDifferentInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderSameInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenContainsInternalFields_InternalFieldsNotExported
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenThemeDoesNotExist_ExportedWithDefaultTheme
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationWithNullApplicationIdTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withInvalidApplicationId_throwNoResourceFoundException
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withReadOnlyAccess_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.exports.internal.ExportServiceTests#exportPublicApplicationTest
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.git.FileFormatMigrationTests#
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion1_success
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion2_success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_InvalidBranchName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFileContent_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFilesNonConflictingChanges_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_NothingToCommit_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ValidBranchName_Success
  • com.appsmith.server.git.GitExecutorTest#commit_validChange_Success
  • com.appsmith.server.git.GitExecutorTest#createBranch_duplicateName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#createBranch_validName_success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_emptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_inValidBranch_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_validBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_EmptyRepo_Error
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_NonEmptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInDatasources_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsLibs_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsObjects_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInPages_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInQueries_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_noChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NoChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NonConflictingChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#listBranches_LocalMode_Success
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_NoChanges_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithConflicts_ShowConflictFiles
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithOutConflicts_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_NoChanges_SuccessUpToDate
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithConflicts_Failure
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithOutConflicts_Success
  • com.appsmith.server.git.GitExecutorTest#resetToLastCommit_WithOutStaged_CleanStateForRepo
  • com.appsmith.server.git.GitServiceCETest#
  • com.appsmith.server.git.GitServiceCETest#ConnectApplicationToGit_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#checkoutBranch_branchNotProvided_throwInvalidParameterError
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_CustomThemeSetToDefaultAppAndRemoteBranch_AppAndThemesCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_WhenApplicationObjectIsPresent_NewAppNotCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_notPresentInLocal_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_presentInLocal_throwError
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_WithMultipleUsers_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_cancelledMidway_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_commitAndPushChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_noChangesToCommitWithLocalCommitsToPush_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitApplication_BranchIsProtected_Failure
  • com.appsmith.server.git.GitServiceCETest#commitApplication_applicationNotConnectedToGit_throwInvalidGitConfigException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_commitChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitApplication_localRepoNotAvailable_throwRepoNotFoundException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_noChangesInLocal_emptyCommitMessage
  • com.appsmith.server.git.GitServiceCETest#commitApplication_protectedBranch_pushFails
  • com.appsmith.server.git.GitServiceCETest#commitApplication_pushFails_verifyAppNotPublished_throwUpstreamChangesFoundException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_ClonedRepoNotEmpty_Failure
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyOriginHeader_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPrivateKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPublicKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyRemoteUrl_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidFilePath_ThrowIOException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidGitApplicationMetadata_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrlHttp_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrl_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithNonEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithValidCustomGitDomain_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingDefaultProfile_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingLocalProfile_ThrowAuthorNameUnavailableError
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cancelledMidway_cloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cloneException_throwGitException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_moreThanSupportedPrivateRepos_throwException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_toggleAccessibilityToPublicForConnectedApp_connectSuccessful
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchDeleteLogo_SrcLogoRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchHasCustomApplicationSettings_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchSetPageIcon_SrcBranchPageIconRemainsNull
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchUploadLogo_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_SrcHasCustomTheme_newApplicationCreatedWithThemesCopied
  • com.appsmith.server.git.GitServiceCETest#createBranch_branchWithOriginPrefix_throwUnsupportedException
  • com.appsmith.server.git.GitServiceCETest#createBranch_cancelledMidway_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#createBranch_duplicateNameBranchPresentInRemote_throwDuplicateKeyException
  • com.appsmith.server.git.GitServiceCETest#createBranch_validCreateBranchRequest_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_BranchIsProtected_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_branchDoesNotExist_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_cancelledMidway_success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranchUpdated_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranch_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_existsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_staleBranchNotInDB_Success
  • com.appsmith.server.git.GitServiceCETest#detachRemote_EmptyGitData_NoChange
  • com.appsmith.server.git.GitServiceCETest#detachRemote_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#detachRemote_applicationWithActionAndActionCollection_Success
  • com.appsmith.server.git.GitServiceCETest#discardChanges_cancelledMidway_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#discardChanges_upstreamChangesAvailable_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#fetchFromRemote_WhenSuccessful_ReturnsResponse
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSAType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSA_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#getGitConnectedApps_privateRepositories_Success
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListDoestNotExists_EmptyListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListExists_ListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenUserHasMultipleBranchProtected_ReturnsEmptyOrDefaultBranchOnly
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_InvalidRemoteUrl_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyWorkspaceId_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_privateRepoLimitReached_ThrowApplicationLimitError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateApplicationName_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfDifferentType_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameTypeCancelledMidway_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameType_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithEmptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequest_Success
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_checkMergingWithRemoteBranch_throwsUnsupportedOperationException
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_conflictingChanges_canNotBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_nonConflictingChanges_canBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_remoteAhead_remoteAheadErrorMessage
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_WhenLocalRepoDoesNotExist_RepoIsClonedFromRemote
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_applicationWithInvalidGitConfig_throwError
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteDoesNotExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchNotChangesInRemote_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_emptyGitMetadata_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_FileSystemAccessError_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_noUpstreamChanges_nothingToPullMessage
  • com.appsmith.server.git.GitServiceCETest#pullChanges_upstreamChangesAvailable_pullSuccess
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit_WhenUserDoesNotHavePermission_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_EmptyData_Success
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_validData_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListContainsOnlyDefaultBranch_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListDoesNotContainOnlyDefaultBranch_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListIsEmpty_CurrentProtectedBranchesRemoved
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenOneOperationFails_ChangesReverted
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#importApplication_ThenExportApplication_MatchJson_equals_Success
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenAutoCommitNotEligible_returnsFalse
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyClientIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyServerIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenPageDslAlreadyLatest_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WithFS_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted_CaseJsonSchemaMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerHasNoChanges_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerRequiresMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenJsonSchemaMigrationPresent_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicChanges_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicDoesNotChange_CommitFailure
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_nullFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_validFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithDisableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithEnableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_sameFlagIsFlippedAsPerDBState_flagGetsRemovedFromPendingMigrationList
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_fetchTenantFlagsFailedFromCS_pendingMigrationReported
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_noDiffForExistingAndLatestFlag_noPendingMigrations
  • com.appsmith.server.helpers.ResponseUtilsTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isBranchProtected
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsLessThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsMoreThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsSameAsLimit_Success
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreEligible_verifyDTOReturnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreNotEligible_verifyDTOReturnFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenFeatureIsFlagFalse_returnsAllFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyClientIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyServerIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenFeatureFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_fileSystemOperation_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenFeatureIsFlagFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAllConditionsMatched_AutoCommitTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAnotherCommitIsRunning_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAutoCommitDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenBranchIsProtected_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenFeatureFlagIsDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenRemoteAhead_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerDoesNotRequireMigration_returnFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerMigrationFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerRequiresMigration_successIfEverythingIsRight
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitFinished_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.imports.internal.ImportServiceTests#extractFileAndUpdateExistingApplication_existingApplication_applicationNameAndSlugRemainsUnchanged
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplication_existingApplication_ApplicationReplacedWithImportedOne
  • com.appsmith.server.imports.internal.ImportServiceTests#importArtifactIntoWorkspace_pageAddedInBranchApplication_Success
  • com.appsmith.server.imports.internal.ImportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageListIProvided_OnlyListedPagesAreMerged
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageNameConflicts_PageNamesRenamed
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_existingApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationChildBranch_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.notifications.EmailSenderTest#
  • com.appsmith.server.notifications.EmailSenderTest#itShouldNotSendMailsWithInvalidAddresses
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withDuplicateName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withEmptyActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionNameToDeletedName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName_forGitConnectedAction_success
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorDuplicateActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#simpleWidgetNameRefactor
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#tableWidgetKeyEscapeRefactorName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorActionName_withInvalidName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorCollection_withModifiedName_ignoresName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorWidgetName_forDefaultWidgetsInList_updatesBothWidgetsAndTemplateReferences
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testWidgetNameRefactor_withSimpleUpdate_refactorsActionCollectionAndItsAction
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#jsActionWithoutCollectionIdShouldBeIgnoredDuringNameChecking
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#testIsNameAllowed_withRepeatedActionCollectionName_throwsError
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#deleteAllByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findByApplicationId_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMatched_ReturnsMatchedDocumentWithoutData
  • com.appsmith.server.repositories.ApplicationSnapshotRepositoryTest#findWithoutData_WhenMultipleChunksArePresent_ReturnsSingleOne
  • com.appsmith.server.repositories.CacheableRepositoryTest#getUserPermissionsTest_onPermissionGroupDelete_valid
  • com.appsmith.server.repositories.CustomApplicationRepositoryImplTest#getAllApplicationId_WhenDataExists_ReturnsList
  • com.appsmith.server.repositories.CustomUserDataRepositoryTest#findPhotoAssetsByUserIds_WhenPhotoAssetIdExist_ReturnsPhotoAssetId
  • com.appsmith.server.repositories.ce.CustomActionCollectionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_ActionCollectionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#archiveDeletedUnpublishedActions_WhenApplicationIdMatchesAndDeletedFromEditMode_ActionDeleted
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkInsert_WhenInsertedWithProvidedId_InsertedWithProvidedId
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_NewActionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#countActionsByPluginType_WhenMatchedApplicationId_ReturnsActualCount
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#publishActions_WhenApplicationIdMatches_ActionPublished
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#findPageWithoutBranchName
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#publishPages_WhenIdMatches_Published
  • com.appsmith.server.services.ActionCollectionServiceImplTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#createValidActionCollectionAndCheckPermissions
  • com.appsmith.server.services.ActionCollectionServiceTest#refactorNameForActionRefactorsNameInCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testActionCollectionInViewMode
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection_verifySoftDeletedCollectionIsNotLoaded
  • com.appsmith.server.services.ActionCollectionServiceTest#testDeleteActionCollection_afterApplicationPublish_clearsActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testMoveActionCollection_whenMovedAcrossPages_thenContainsNewPageId
  • com.appsmith.server.services.ActionCollectionServiceTest#testRefactorActionName_withActionNameEqualsRun_doesNotRefactorApiRunCalls
  • com.appsmith.server.services.ApplicationPageServiceTest#
  • com.appsmith.server.services.ApplicationPageServiceTest#cloneApplication_WhenClonedSuccessfully_ApplicationIsPublished
  • com.appsmith.server.services.ApplicationPageServiceTest#createApplicationWithId_throwsException
  • com.appsmith.server.services.ApplicationPageServiceTest#createOrUpdateSuffixedApplication_GitConnectedAppExistsWithSameName_AppCreatedWithSuffixedName
  • com.appsmith.server.services.ApplicationPageServiceTest#deleteUnpublishedPage_WhenPageDeleted_ApplicationEditDateSet
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDSLHasNotVersion_DslMigratedToLatest
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDslIsLatest_MigrationNotTriggered
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenEditModeDslIsNotLatest_EditModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenViewModeDslIsNotLatest_ViewModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#verifyGetPagesBasedOnApplicationMode_ReturnsRigthNumberOfPages_BasedOnApplicationMode
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_OlderSnapshotExists_OlderSnapshotsRemoved
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenGitBranchExists_SnapshotCreatedWithBranchedAppId
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenNoPreviousSnapshotExists_NewCreated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#createApplicationSnapshot_WhenSnapshotExists_ExistingSnapshotUpdated
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#deleteSnapshot_WhenSnapshotExists_Deleted
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenNewPagesAddedAfterSnapshotTaken_NewPagesRemovedAfterSnapshotIsRestored
  • com.appsmith.server.services.ApplicationSnapshotServiceTest#restoreSnapshot_WhenSuccessfullyRestored_SnapshotDeleted
  • com.appsmith.server.services.ApplicationTemplateServiceTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorResponseWhenAnonymousUserAccessPrivateApp
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorWhenModeIsNullAndPageIdAvailable
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForEditMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForViewMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseWhenPageIdAndApplicationIdMissing
  • com.appsmith.server.services.CurlImporterServiceTest#
  • com.appsmith.server.services.CurlImporterServiceTest#checkActionConfigurationFormDataForApiContentKey
  • com.appsmith.server.services.CurlImporterServiceTest#chromeCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#dontEatBackslashesInSingleQuotes
  • com.appsmith.server.services.CurlImporterServiceTest#firefoxCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidHeader
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidMethod
  • com.appsmith.server.services.CurlImporterServiceTest#importValidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#lexComments
  • com.appsmith.server.services.CurlImporterServiceTest#lexWhiteSpace
  • com.appsmith.server.services.CurlImporterServiceTest#lexerTests
  • com.appsmith.server.services.CurlImporterServiceTest#missingMethod
  • com.appsmith.server.services.CurlImporterServiceTest#multilineCommand
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlCommand1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart2
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultiFormData
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultipleData
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument2
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithJson
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithSpacedHeader
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithoutProtocol
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateDatasource
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateProvider
  • com.appsmith.server.services.CurlImporterServiceTest#postmanExportCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnEmptyInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnInvalidInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnNullInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnURLWithCurlyBraces
  • com.appsmith.server.services.CurlImporterServiceTest#testUrlEncodedData
  • com.appsmith.server.services.CurlImporterServiceTest#urlInSingleQuotes
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceContextServiceTest#testCachedDatasourceCreate
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCache_afterDatasourceDeleted_doesNotReturnOldConnection
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceContextIsInvalid_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCreate_withUpdatableConnection_recreatesConnectionAlways
  • com.appsmith.server.services.DatasourceContextServiceTest#testNewDatasourceContextCreate_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testUpdateDatasourceAndSetAuthentication_withNoRealChange_keepsDatasourceConfigurationValuesDecrypted
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContextHasRightCredentialsAfterVariableReplacement
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContext_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDeleteDatasourceContext_whenContextDoesNotExist_returnsEmptyMono
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyInitialiseDatasourceContextReturningRightIdentifier
  • com.appsmith.server.services.DatasourceServiceTest#
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterRemoval
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterUpdate
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceDifferentAuthentication
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceValidDB
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceNotInstalledPlugin
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithHostnameStartingWithSpace
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithId
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithInvalidCharsInHost
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithNullPluginId
  • com.appsmith.server.services.DatasourceServiceTest#createNamelessDatasource
  • com.appsmith.server.services.DatasourceServiceTest#datasourceDefaultNameCounterAsPerWorkspaceId
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithDeletedActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithoutActions
  • com.appsmith.server.services.DatasourceServiceTest#getErrorOnCreatingEmptyDatasource
  • com.appsmith.server.services.DatasourceServiceTest#get_WhenDatasourcesPresent_SortedAndIsRecentlyCreatedFlagSet
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceEmptyFields
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageNPE
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostIPAddressOnUpdateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnTestDatasourceEvent
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnUpdateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testValidateDatasource_createDatasourceWithNullWorkspaceId
  • 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#verifyFindByDatasourceAndStorageIdGivesErrorWhenStorageIsAbsent
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyFindByDatasourceId
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationErrorsOutWhenStorageAlreadyExists
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationSucceedsWithDifferentEnvironmentId
  • com.appsmith.server.services.LayoutActionServiceTest#
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnActionViaWidget
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnWidgetButNotPageLoadCandidate
  • com.appsmith.server.services.LayoutActionServiceTest#deleteUnpublishedAction_WhenActionDeleted_OnPageLoadActionsIsEmpty
  • com.appsmith.server.services.LayoutActionServiceTest#duplicateActionNameCreation
  • com.appsmith.server.services.LayoutActionServiceTest#introduceCyclicDependencyAndRemoveLater
  • com.appsmith.server.services.LayoutActionServiceTest#simpleOnPageLoadActionCreationTest
  • com.appsmith.server.services.LayoutActionServiceTest#tableWidgetKeyEscape
  • com.appsmith.server.services.LayoutActionServiceTest#testExecuteOnPageLoadOrderWhenAllActionsAreOnlyExplicitlySetToExecute
  • com.appsmith.server.services.LayoutActionServiceTest#testHintMessageOnLocalhostUrlOnUpdateActionEvent
  • com.appsmith.server.services.LayoutActionServiceTest#updateActionUpdatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenPageLoadActionSetBothWaysExplicitlyAndImplicitlyViaWidget_ActionsSaved
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_withSelfReferencingWidget_updatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateMultipleLayouts_MultipleLayouts_LayoutsUpdated
  • com.appsmith.server.services.LayoutServiceTest#
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithInvalidPageID
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithNullPageId
  • com.appsmith.server.services.LayoutServiceTest#createValidLayout
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectDynamicBindingPathInDsl
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectMustacheExpressionInBindingInDsl
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidAppId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidPageId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutValidPageId
  • com.appsmith.server.services.MockDataServiceTest#
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsDuplicateName
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsMongo
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsPostgres
  • com.appsmith.server.services.NewPageServiceTest#publishPages_WhenUserDoesNotHavePermissionOnPages_NotPublished
  • com.appsmith.server.services.PageServiceTest#
  • com.appsmith.server.services.PageServiceTest#addDuplicatePageToApplication
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained
  • com.appsmith.server.services.PageServiceTest#createPageWithNullApplication
  • com.appsmith.server.services.PageServiceTest#createPageWithNullName
  • com.appsmith.server.services.PageServiceTest#createValidPage
  • com.appsmith.server.services.PageServiceTest#createValidPageWithLayout
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromHighOrderToLowOrder
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromLowOrderToHighOrder
  • com.appsmith.server.services.PageServiceTest#reorderPage_pageReordered_success
  • com.appsmith.server.services.PageServiceTest#reuseDeletedPageName
  • com.appsmith.server.services.PageServiceTest#updatePage_WhenCustomSlugSet_CustomSlugIsNotUpdated
  • com.appsmith.server.services.PageServiceTest#validChangePageNameAndPageIcon
  • com.appsmith.server.services.PermissionGroupServiceTest#
  • com.appsmith.server.services.PluginServiceTest#
  • com.appsmith.server.services.PluginServiceTest#checkPluginExecutor
  • com.appsmith.server.services.PluginServiceTest#getPluginFormValid
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullEditorConfig
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullFormConfig
  • com.appsmith.server.services.ThemeServiceTest#
  • com.appsmith.server.services.UsagePulseServiceTest#
  • com.appsmith.server.services.UserDataServiceTest#
  • com.appsmith.server.services.UserServiceTest#
  • com.appsmith.server.services.UserServiceTest#buildUserProfileDTO_WhenAnonymousUser_ReturnsProfile
  • com.appsmith.server.services.UserServiceTest#createNewUserFormSignupNullPassword
  • com.appsmith.server.services.UserServiceTest#createNewUserValid
  • com.appsmith.server.services.UserServiceTest#createNewUser_WhenEmailHasUpperCase_SavedInLowerCase
  • com.appsmith.server.services.UserServiceTest#createUserWithInvalidEmailAddress
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenInstanceEmailVerificationIsNotEnabled_ThrowsException
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenUserEmailAlreadyVerified_ThrowsException
  • com.appsmith.server.services.UserServiceTest#forgotPasswordTokenGenerate_AfterTrying3TimesIn24Hours_ThrowsException
  • com.appsmith.server.services.UserServiceTest#getIntercomConsentOfUserOnCloudHosting_AlwaysTrue
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenTokenDoesNotMatch_ThrowsException
  • com.appsmith.server.services.UserServiceTest#signUpAfterBeingInvitedToAppsmithWorkspace
  • com.appsmith.server.services.UserServiceTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#signUpViaGoogleIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#testCreateNewUser_assertUserManagementRole
  • com.appsmith.server.services.UserServiceTest#updateIntercomConsentOfUser
  • com.appsmith.server.services.UserServiceTest#updateInvalidUserWithAnything
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithAccentedCharacters_IsValid
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithNotAllowedSpecialCharacter_InvalidName
  • com.appsmith.server.services.UserServiceTest#updateNameProficiencyAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameRoleAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateRoleOfUser
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotExist_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotMatch_ReturnsFalse
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenMatches_ReturnsTrue
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled2
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewUserValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserWorkspaceServiceTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_noRecentWorkspaces_allEntriesAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_withRecentlyUsedWorkspaces_allEntriesWithSameOrderAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenNoOrgFound_ThrowsException
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenRoleIsNull_ReturnsEmptyList
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForMultipleWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForOneWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#whenMapPermissionGroup_thenConvertsToPermissionGroupInfoDTO
  • com.appsmith.server.services.WorkspaceServiceTest#
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsAdmin
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUsersBulkToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsAdminAndCheckApplicationAndDatasourcePermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsViewerAndCheckApplicationPermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceIfUserAlreadyMember_throwsError
  • com.appsmith.server.services.WorkspaceServiceTest#checkNewUsersDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDuplicateNameWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasApp_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasNoApp_WorkspaceIsDeleted
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WithoutManagePermission_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#getAllMembersForWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#getAllUserRolesForWorkspaceDomainAsAdministrator
  • com.appsmith.server.services.WorkspaceServiceTest#getWorkspaceInvalidId
  • com.appsmith.server.services.WorkspaceServiceTest#inValidupdateWorkspaceEmptyName
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongDomainPart
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongLocalPart
  • com.appsmith.server.services.WorkspaceServiceTest#nullCreateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#nullName
  • com.appsmith.server.services.WorkspaceServiceTest#save_WhenNameIsPresent_SlugGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#testDeleteLogo_invalidWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#testInviteDuplicateUsers_shouldReturnUniqueUsers
  • com.appsmith.server.services.WorkspaceServiceTest#testUpdateAndDeleteLogo_validLogo
  • com.appsmith.server.services.WorkspaceServiceTest#update_NewName_GroupNamesUpdated
  • com.appsmith.server.services.WorkspaceServiceTest#update_WhenNameIsNotPresent_SlugIsNotGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_largeFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_nullFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#validCreateWorkspaceTest
  • com.appsmith.server.services.WorkspaceServiceTest#validGetWorkspaceByName
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateCorrectWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidWebsite
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidWebsite
  • com.appsmith.server.services.ce.ActionServiceCE_Test#
  • 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#createAction_forGitConnectedAppWithInvalidBranchName_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#
  • 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#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsAbsent_allAppsAreReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsPresent_orderedListIsReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_noApplicationPresentInWorkspace_emptyListIsReturned
  • 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#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.services.ce.ApplicationSnapshotServiceUnitTest#createApplicationSnapshot_WhenApplicationTooLarge_SnapshotCreatedSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationConnectedToGit_ReturnApplicationWithDefaultIds
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationHasDefaultPageIds_IdReplacedWithDefaultPageId
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenSnapshotHasMultipleChunks_RestoredSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#test
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendForgotPasswordEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendInviteUserToWorkspaceEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testInviteWorkspaceUrl
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testSendInstanceAdminInviteEmail
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatureFlags_withUserIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatures_withTenantIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_disableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_emptyMapForPendingMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_enableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getCachedTenantFeatureFlags_withDefaultTenant_tenantFeatureFlagsAreCached
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatureFlags_withUserIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatures_withTenantIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getTenantFeatureFlags_withDefaultTenant_fetchLatestFlags
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser_overrideWithTenantFeature
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testNullFeatureCheck
  • com.appsmith.server.services.ce.NewActionServiceTest#testActionsPublishedWhenPermissionIsMatched
  • com.appsmith.server.services.ce.TenantServiceCETest#
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_emptyMigrationMap_revertSameTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_exceptionWhileRunningMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#ensureMapsKey
  • com.appsmith.server.services.ce.TenantServiceCETest#getTenantConfig_Valid_AnonymousUser
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabledFalseAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithInvalidSMTPHost_ReturnsError
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithValidSMTPHost_Success
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthentication
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthorization
  • com.appsmith.server.services.ce.TenantServiceCETest#testDeserializationErrors
  • com.appsmith.server.services.ce.TenantServiceCETest#updateTenantConfiguration_updateStrongPasswordPolicy_success
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenCloudHosting_returnsEmail
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenSelfHosted_returnsHashedEmail
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationFalseWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationTrueWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationMultipleTimes
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasCustomSavedTheme_NewCustomThemeCreated
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasSystemTheme_SystemThemeSet
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasUnsavedThemeCustomization_ForkedWithCustomizations
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_WhenContainsInternalFields_InternalFieldsNotForked
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_deletePageAfterBeingPublished_deletedPageIsNotCloned
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceNotUsed_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceUsed_IsPartialImportTrue
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationTrue_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkGitConnectedApplication_defaultBranchUpdated_forkDefaultBranchApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkingEnabledPublicApp_noPermission_ForkApplicationSuccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test1_cloneWorkspaceWithItsContents
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test2_forkApplicationWithReadApplicationUserAccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test3_failForkApplicationWithInvalidPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test4_validForkApplication_cancelledMidWay_createValidApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test5_failForkApplication_noPageEditPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test6_failForkApplication_noDatasourceCreatePermission
  • com.appsmith.server.solutions.AuthenticationServiceTest#
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_invalidDatasourceWithNullAuthentication
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_missingDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasourceAndBranchName
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidApplicationIdTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidDatasourceTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidRequestBodyTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForPostgres
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForSql
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageId
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForS3
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForSnowflake
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForGoogleSheet
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMongoDB
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMySqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForPostgresqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForRedshiftDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withInvalidBranchName_throwException
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withValidBranch_validDefaultIds
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#
  • 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.DatasourceTriggerSolutionTest#datasourceTriggerTest
  • com.appsmith.server.solutions.PartialExportServiceTest#
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_branchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_featureBranchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImportWithBuildingBlock_nameClash_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_gitConnectedAppDefaultBranch_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nameClashInAction_successWithNoNameDuplicates
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminInviteRoles
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminPermissionsForInviteAndMakePublic
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDevPermissionsForInvite
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDeveloperInviteRoles
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testEnrichExecutionParams_withBlobReference_performsSubstitutionCorrectly
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithParameterMapAsLastPart
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithUsualOrderingOfTheParts
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withMalformedExecuteActionDTO_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutActionId_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutExecuteActionDTOPart_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testParsePartsAndGetParamsFlux_withBlobIdentifiers_replacesValueInParam
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#
  • 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
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_exceptionDuringImportActions_savedPagesAndApplicationReverted
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_transactionExceptionDuringListActionSave_omitTransactionMessagePart
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingListWidget_replacesTemplateReferences
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingTextWidget_replacesAllReferences

Copy link

Failed server tests

  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceCECompatibleEeSameImplMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethodReturnsFlux_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_ceImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeSyncMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowAppsmithException_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#ceEeThrowNonAppsmithException_eeImplTest_throwExceptionFromAspect
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_ceCompatibleImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#eeCeCompatibleDiffMethod_eeImplTest
  • com.appsmith.server.aspect.FeatureFlaggedMethodInvokerAspectTest#testEEOnlyMethod
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithLongHeader_thenVerifyErrorStatus
  • com.appsmith.server.controllers.ApplicationControllerTest#whenFileUploadedWithShortHeader_thenVerifySuccessStatus
  • com.appsmith.server.controllers.PageControllerTest#emptyCustomSlugShouldBeOkay
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidCustomSlug(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[10]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[11]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[12]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[13]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[14]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[15]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[16]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[17]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[18]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[19]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[1]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[20]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[21]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[22]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[23]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[24]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[25]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[26]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[27]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[28]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[29]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[2]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[30]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[31]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[32]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[33]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[34]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[35]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[36]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[37]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[38]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[39]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[3]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[40]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[41]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[42]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[43]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[44]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[45]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[46]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[47]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[48]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[49]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[4]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[50]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[51]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[52]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[53]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[54]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[55]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[56]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[57]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[58]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[59]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[5]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[60]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[61]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[62]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[63]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[64]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[65]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[66]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[67]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[68]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[69]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[6]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[70]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[71]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[72]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[73]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[74]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[75]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[76]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[77]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[78]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[79]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[7]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[80]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[81]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[82]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[83]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[84]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[85]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[86]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[87]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[88]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[89]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[8]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[90]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[91]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[92]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[93]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[94]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[95]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[96]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[97]
  • com.appsmith.server.controllers.PageControllerTest#invalidName(String)[9]
  • com.appsmith.server.controllers.PageControllerTest#noBody
  • com.appsmith.server.controllers.WorkspaceControllerTest#getWorkspaceNoName
  • com.appsmith.server.exports.internal.ExportServiceTests#
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonForGitTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithActionAndActionCollectionTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithCustomJSLibTest
  • com.appsmith.server.exports.internal.ExportServiceTests#createExportAppJsonWithDatasourceButWithoutActionsTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderDifferentInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportAndImportApplication_withMultiplePagesOrderSameInDeployAndEditMode_PagesOrderIsMaintainedInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenContainsInternalFields_InternalFieldsNotExported
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationById_WhenThemeDoesNotExist_ExportedWithDefaultTheme
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplicationWithNullApplicationIdTest
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withInvalidApplicationId_throwNoResourceFoundException
  • com.appsmith.server.exports.internal.ExportServiceTests#exportApplication_withReadOnlyAccess_exportedWithDecryptedFields
  • com.appsmith.server.exports.internal.ExportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.exports.internal.ExportServiceTests#exportPublicApplicationTest
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.exports.internal.ExportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.git.FileFormatMigrationTests#
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion1_success
  • com.appsmith.server.git.FileFormatMigrationTests#extractFiles_whenFilesInRepoWithFormatVersion2_success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_InvalidBranchName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFileContent_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ModifiedFilesNonConflictingChanges_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_NothingToCommit_Success
  • com.appsmith.server.git.GitExecutorTest#checkoutBranch_ValidBranchName_Success
  • com.appsmith.server.git.GitExecutorTest#commit_validChange_Success
  • com.appsmith.server.git.GitExecutorTest#createBranch_duplicateName_ThrowError
  • com.appsmith.server.git.GitExecutorTest#createBranch_validName_success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_emptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_inValidBranch_Success
  • com.appsmith.server.git.GitExecutorTest#deleteBranch_validBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_EmptyRepo_Error
  • com.appsmith.server.git.GitExecutorTest#getCommitHistory_NonEmptyRepo_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInDatasources_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsLibs_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInJsObjects_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInPages_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangeInQueries_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_ChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#getStatus_noChangesInBranch_Success
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NoChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#isMergeBranch_NonConflictingChanges_CanBeMerged
  • com.appsmith.server.git.GitExecutorTest#listBranches_LocalMode_Success
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_NoChanges_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithConflicts_ShowConflictFiles
  • com.appsmith.server.git.GitExecutorTest#mergeBranchStatus_WithOutConflicts_Mergeable
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_NoChanges_SuccessUpToDate
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithConflicts_Failure
  • com.appsmith.server.git.GitExecutorTest#mergeBranch_WithOutConflicts_Success
  • com.appsmith.server.git.GitExecutorTest#resetToLastCommit_WithOutStaged_CleanStateForRepo
  • com.appsmith.server.git.GitServiceCETest#
  • com.appsmith.server.git.GitServiceCETest#ConnectApplicationToGit_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#checkoutBranch_branchNotProvided_throwInvalidParameterError
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_CustomThemeSetToDefaultAppAndRemoteBranch_AppAndThemesCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_WhenApplicationObjectIsPresent_NewAppNotCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_notPresentInLocal_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#checkoutRemoteBranch_presentInLocal_throwError
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_WithMultipleUsers_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_cancelledMidway_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_commitAndPushChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitAndPushApplication_noChangesToCommitWithLocalCommitsToPush_pushSuccess
  • com.appsmith.server.git.GitServiceCETest#commitApplication_BranchIsProtected_Failure
  • com.appsmith.server.git.GitServiceCETest#commitApplication_applicationNotConnectedToGit_throwInvalidGitConfigException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_commitChanges_success
  • com.appsmith.server.git.GitServiceCETest#commitApplication_localRepoNotAvailable_throwRepoNotFoundException
  • com.appsmith.server.git.GitServiceCETest#commitApplication_noChangesInLocal_emptyCommitMessage
  • com.appsmith.server.git.GitServiceCETest#commitApplication_protectedBranch_pushFails
  • com.appsmith.server.git.GitServiceCETest#commitApplication_pushFails_verifyAppNotPublished_throwUpstreamChangesFoundException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_ClonedRepoNotEmpty_Failure
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyOriginHeader_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPrivateKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyPublicKey_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_EmptyRemoteUrl_ThrowInvalidParameterException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidFilePath_ThrowIOException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidGitApplicationMetadata_ThrowInvalidGitConfigurationException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrlHttp_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_InvalidRemoteUrl_ThrowInvalidRemoteUrl
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithNonEmptyPublishedPages_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithValidCustomGitDomain_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingDefaultProfile_CloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_WithoutGitProfileUsingLocalProfile_ThrowAuthorNameUnavailableError
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cancelledMidway_cloneSuccess
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_cloneException_throwGitException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_moreThanSupportedPrivateRepos_throwException
  • com.appsmith.server.git.GitServiceCETest#connectApplicationToGit_toggleAccessibilityToPublicForConnectedApp_connectSuccessful
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchDeleteLogo_SrcLogoRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchHasCustomApplicationSettings_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchSetPageIcon_SrcBranchPageIconRemainsNull
  • com.appsmith.server.git.GitServiceCETest#createBranch_BranchUploadLogo_SrcBranchRemainsUnchanged
  • com.appsmith.server.git.GitServiceCETest#createBranch_SrcHasCustomTheme_newApplicationCreatedWithThemesCopied
  • com.appsmith.server.git.GitServiceCETest#createBranch_branchWithOriginPrefix_throwUnsupportedException
  • com.appsmith.server.git.GitServiceCETest#createBranch_cancelledMidway_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#createBranch_duplicateNameBranchPresentInRemote_throwDuplicateKeyException
  • com.appsmith.server.git.GitServiceCETest#createBranch_validCreateBranchRequest_newApplicationCreated
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_BranchIsProtected_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_branchDoesNotExist_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_cancelledMidway_success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranchUpdated_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_defaultBranch_ThrowError
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_existsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#deleteBranch_staleBranchNotInDB_Success
  • com.appsmith.server.git.GitServiceCETest#detachRemote_EmptyGitData_NoChange
  • com.appsmith.server.git.GitServiceCETest#detachRemote_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.GitServiceCETest#detachRemote_applicationWithActionAndActionCollection_Success
  • com.appsmith.server.git.GitServiceCETest#discardChanges_cancelledMidway_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#discardChanges_upstreamChangesAvailable_discardSuccess
  • com.appsmith.server.git.GitServiceCETest#fetchFromRemote_WhenSuccessful_ReturnsResponse
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyDefaultType_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSAType_DataNotExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#generateSSHKeyRSA_KeyExistsInCollection_Success
  • com.appsmith.server.git.GitServiceCETest#getGitConnectedApps_privateRepositories_Success
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListDoestNotExists_EmptyListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenProtectedBranchListExists_ListReturned
  • com.appsmith.server.git.GitServiceCETest#getProtectedBranches_WhenUserHasMultipleBranchProtected_ReturnsEmptyOrDefaultBranchOnly
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_InvalidRemoteUrl_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_emptyWorkspaceId_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_privateRepoLimitReached_ThrowApplicationLimitError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateApplicationName_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfDifferentType_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameTypeCancelledMidway_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithDuplicateDatasourceOfSameType_Success
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequestWithEmptyRepo_ThrowError
  • com.appsmith.server.git.GitServiceCETest#importApplicationFromGit_validRequest_Success
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_checkMergingWithRemoteBranch_throwsUnsupportedOperationException
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_conflictingChanges_canNotBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_nonConflictingChanges_canBeMerged
  • com.appsmith.server.git.GitServiceCETest#isBranchMergeable_remoteAhead_remoteAheadErrorMessage
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_WhenLocalRepoDoesNotExist_RepoIsClonedFromRemote
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_applicationWithInvalidGitConfig_throwError
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteDoesNotExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchChangesInRemoteExistsInDB_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_defaultBranchNotChangesInRemote_Success
  • com.appsmith.server.git.GitServiceCETest#listBranchForApplication_emptyGitMetadata_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_FileSystemAccessError_throwError
  • com.appsmith.server.git.GitServiceCETest#pullChanges_noUpstreamChanges_nothingToPullMessage
  • com.appsmith.server.git.GitServiceCETest#pullChanges_upstreamChangesAvailable_pullSuccess
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit
  • com.appsmith.server.git.GitServiceCETest#toggleAutoCommit_WhenUserDoesNotHavePermission_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_EmptyData_Success
  • com.appsmith.server.git.GitServiceCETest#updateGitMetadata_validData_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListContainsOnlyDefaultBranch_Success
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListDoesNotContainOnlyDefaultBranch_ExceptionThrown
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenListIsEmpty_CurrentProtectedBranchesRemoved
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenOneOperationFails_ChangesReverted
  • com.appsmith.server.git.GitServiceCETest#updateProtectedBranches_WhenUserDoesNotHaveRequiredPermission_OperationFails
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#
  • com.appsmith.server.git.ServerSchemaMigrationEnforcerTest#importApplication_ThenExportApplication_MatchJson_equals_Success
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenAutoCommitNotEligible_returnsFalse
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyClientIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.ApplicationPageServiceAutoCommitTest#testAutoCommit_whenOnlyServerIsEligibleForMigration_commitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WhenPageDslAlreadyLatest_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitDSLMigration_WithFS_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenAutoCommitAlreadyStarted_ReturnsFalse
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenNoAutoCommitInProgress_AllStepsSuccessfullyCompleted_CaseJsonSchemaMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerHasNoChanges_NoCommitMade
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autoCommitServerMigration_WhenServerRequiresMigration
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenJsonSchemaMigrationPresent_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicChanges_CommitSuccess
  • com.appsmith.server.git.autocommit.AutoCommitEventHandlerImplTest#autocommitServerMigration_WhenSerialisationLogicDoesNotChange_CommitFailure
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_nullFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#checkAndExecuteMigrationsForFeatureFlag_validFeatureFlag_success
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithDisableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_pendingMigrationReportedWithEnableStatus
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_diffForExistingAndLatestFlag_sameFlagIsFlippedAsPerDBState_flagGetsRemovedFromPendingMigrationList
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_fetchTenantFlagsFailedFromCS_pendingMigrationReported
  • com.appsmith.server.helpers.FeatureFlagMigrationHelperTest#getUpdatedFlagsWithPendingMigration_noDiffForExistingAndLatestFlag_noPendingMigrations
  • com.appsmith.server.helpers.ResponseUtilsTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isBranchProtected
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsLessThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsMoreThanLimit_Success
  • com.appsmith.server.helpers.ce.GitPrivateRepoCEImplTest#isRepoLimitReached_connectedAppCountIsSameAsLimit_Success
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreEligible_verifyDTOReturnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenClientAndServerAreNotEligible_verifyDTOReturnFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenFeatureIsFlagFalse_returnsAllFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyClientIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isAutoCommitRequired_whenOnlyServerIsEligible_verifyDTOReturnTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenFeatureFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isClientMigrationRequired_whenLatestDslIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_fileSystemOperation_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenFeatureIsFlagFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsAhead_returnsTrue
  • com.appsmith.server.helpers.ce.autocommit.AutoCommitEligibilityHelperTest#isServerMigrationRequired_whenJsonSchemaIsNotAhead_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAllConditionsMatched_AutoCommitTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAnotherCommitIsRunning_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenAutoCommitDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenBranchIsProtected_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenFeatureFlagIsDisabled_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenRemoteAhead_AutoCommitNotTriggered
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerDoesNotRequireMigration_returnFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerMigrationFlagIsFalse_returnsFalse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#autoCommitApplication_WhenServerRequiresMigration_successIfEverythingIsRight
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitFinished_ReturnsValidResponse
  • com.appsmith.server.helpers.ce.autocommit.GitAutoCommitHelperImplTest#getAutoCommitProgress_WhenNoAutoCommitRunning_ReturnsValidResponse
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndDatasourceRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationByWhen_WhenGitConnectedAndPageRenamed_QueriesAreInUpdatedResources
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplicationTest_WithNavigationSettings
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithBearerTokenAndExportWithConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_WithPageIcon_ValidPageIcon
  • com.appsmith.server.imports.internal.ImportServiceTests#exportApplication_withDatasourceConfig_exportedWithDecryptedFields
  • com.appsmith.server.imports.internal.ImportServiceTests#exportImportApplication_importWithBranchName_updateApplicationResourcesWithBranch
  • com.appsmith.server.imports.internal.ImportServiceTests#extractFileAndUpdateExistingApplication_existingApplication_applicationNameAndSlugRemainsUnchanged
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithAppLayoutInEditMode_ImportedAppHasAppLayoutInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplicationInWorkspaceFromGit_WithNavSettingsInEditMode_ImportedAppHasNavSettingsInEditAndViewMode
  • com.appsmith.server.imports.internal.ImportServiceTests#importApplication_existingApplication_ApplicationReplacedWithImportedOne
  • com.appsmith.server.imports.internal.ImportServiceTests#importArtifactIntoWorkspace_pageAddedInBranchApplication_Success
  • com.appsmith.server.imports.internal.ImportServiceTests#importUpdatedApplicationIntoWorkspaceFromFile_publicApplication_visibilityFlagNotReset
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageListIProvided_OnlyListedPagesAreMerged
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplicationJsonWithApplication_WhenPageNameConflicts_PageNamesRenamed
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_existingApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationChildBranch_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_gitConnectedApplication_pageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedAllPages_selectedPageAddedSuccessfully
  • com.appsmith.server.imports.internal.ImportServiceTests#mergeApplication_nonGitConnectedApplicationSelectedSpecificPages_selectedPageAddedSuccessfully
  • com.appsmith.server.notifications.EmailSenderTest#
  • com.appsmith.server.notifications.EmailSenderTest#itShouldNotSendMailsWithInvalidAddresses
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withDuplicateName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCEImplTest#testRefactorCollectionName_withEmptyActions_returnsValidLayout
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionNameToDeletedName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorActionName_forGitConnectedAction_success
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#refactorDuplicateActionName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#simpleWidgetNameRefactor
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#tableWidgetKeyEscapeRefactorName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorActionName_withInvalidName_throwsError
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorCollection_withModifiedName_ignoresName
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testRefactorWidgetName_forDefaultWidgetsInList_updatesBothWidgetsAndTemplateReferences
  • com.appsmith.server.refactors.ce.RefactoringServiceCETest#testWidgetNameRefactor_withSimpleUpdate_refactorsActionCollectionAndItsAction
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#jsActionWithoutCollectionIdShouldBeIgnoredDuringNameChecking
  • com.appsmith.server.refactors.ce.RefactoringServiceTest#testIsNameAllowed_withRepeatedActionCollectionName_throwsError
  • com.appsmith.server.repositories.CacheableRepositoryTest#getUserPermissionsTest_onPermissionGroupDelete_valid
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#archiveDeletedUnpublishedActions_WhenApplicationIdMatchesAndDeletedFromEditMode_ActionDeleted
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkInsert_WhenInsertedWithProvidedId_InsertedWithProvidedId
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#bulkUpdate_WhenIdMatches_NewActionsUpdated
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#countActionsByPluginType_WhenMatchedApplicationId_ReturnsActualCount
  • com.appsmith.server.repositories.ce.CustomNewActionRepositoryCEImplTest#publishActions_WhenApplicationIdMatches_ActionPublished
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#findPageWithoutBranchName
  • com.appsmith.server.repositories.ce.CustomNewPageRepositoryTest#publishPages_WhenIdMatches_Published
  • com.appsmith.server.services.ActionCollectionServiceImplTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#
  • com.appsmith.server.services.ActionCollectionServiceTest#createValidActionCollectionAndCheckPermissions
  • com.appsmith.server.services.ActionCollectionServiceTest#refactorNameForActionRefactorsNameInCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testActionCollectionInViewMode
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testCreateActionCollection_verifySoftDeletedCollectionIsNotLoaded
  • com.appsmith.server.services.ActionCollectionServiceTest#testDeleteActionCollection_afterApplicationPublish_clearsActionCollection
  • com.appsmith.server.services.ActionCollectionServiceTest#testMoveActionCollection_whenMovedAcrossPages_thenContainsNewPageId
  • com.appsmith.server.services.ActionCollectionServiceTest#testRefactorActionName_withActionNameEqualsRun_doesNotRefactorApiRunCalls
  • com.appsmith.server.services.ApplicationPageServiceTest#
  • com.appsmith.server.services.ApplicationPageServiceTest#cloneApplication_WhenClonedSuccessfully_ApplicationIsPublished
  • com.appsmith.server.services.ApplicationPageServiceTest#createApplicationWithId_throwsException
  • com.appsmith.server.services.ApplicationPageServiceTest#createOrUpdateSuffixedApplication_GitConnectedAppExistsWithSameName_AppCreatedWithSuffixedName
  • com.appsmith.server.services.ApplicationPageServiceTest#deleteUnpublishedPage_WhenPageDeleted_ApplicationEditDateSet
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDSLHasNotVersion_DslMigratedToLatest
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenDslIsLatest_MigrationNotTriggered
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenEditModeDslIsNotLatest_EditModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#getPageAndMigrateDslByBranchAndDefaultPageId_WhenViewModeDslIsNotLatest_ViewModeDslMigrated
  • com.appsmith.server.services.ApplicationPageServiceTest#verifyGetPagesBasedOnApplicationMode_ReturnsRigthNumberOfPages_BasedOnApplicationMode
  • com.appsmith.server.services.ApplicationTemplateServiceTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorResponseWhenAnonymousUserAccessPrivateApp
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testErrorWhenModeIsNullAndPageIdAvailable
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForEditMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseForViewMode
  • com.appsmith.server.services.ConsolidatedAPIServiceImplTest#testPageLoadResponseWhenPageIdAndApplicationIdMissing
  • com.appsmith.server.services.CurlImporterServiceTest#
  • com.appsmith.server.services.CurlImporterServiceTest#checkActionConfigurationFormDataForApiContentKey
  • com.appsmith.server.services.CurlImporterServiceTest#chromeCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#dontEatBackslashesInSingleQuotes
  • com.appsmith.server.services.CurlImporterServiceTest#firefoxCurlCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidHeader
  • com.appsmith.server.services.CurlImporterServiceTest#importInvalidMethod
  • com.appsmith.server.services.CurlImporterServiceTest#importValidCurlCommand
  • com.appsmith.server.services.CurlImporterServiceTest#lexComments
  • com.appsmith.server.services.CurlImporterServiceTest#lexWhiteSpace
  • com.appsmith.server.services.CurlImporterServiceTest#lexerTests
  • com.appsmith.server.services.CurlImporterServiceTest#missingMethod
  • com.appsmith.server.services.CurlImporterServiceTest#multilineCommand
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlCommand1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart1
  • com.appsmith.server.services.CurlImporterServiceTest#parseCurlJsTestsPart2
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultiFormData
  • com.appsmith.server.services.CurlImporterServiceTest#parseMultipleData
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithDashedUrlArgument2
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithJson
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithSpacedHeader
  • com.appsmith.server.services.CurlImporterServiceTest#parseWithoutProtocol
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateDatasource
  • com.appsmith.server.services.CurlImporterServiceTest#postmanCreateProvider
  • com.appsmith.server.services.CurlImporterServiceTest#postmanExportCommands1
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnEmptyInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnInvalidInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnNullInput
  • com.appsmith.server.services.CurlImporterServiceTest#testImportActionOnURLWithCurlyBraces
  • com.appsmith.server.services.CurlImporterServiceTest#testUrlEncodedData
  • com.appsmith.server.services.CurlImporterServiceTest#urlInSingleQuotes
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceContextServiceTest#checkDecryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceContextServiceTest#testCachedDatasourceCreate
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCache_afterDatasourceDeleted_doesNotReturnOldConnection
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceContextIsInvalid_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testDatasourceCreate_withUpdatableConnection_recreatesConnectionAlways
  • com.appsmith.server.services.DatasourceContextServiceTest#testNewDatasourceContextCreate_whenCachedDatasourceContextMono_isInErrorState
  • com.appsmith.server.services.DatasourceContextServiceTest#testUpdateDatasourceAndSetAuthentication_withNoRealChange_keepsDatasourceConfigurationValuesDecrypted
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContextHasRightCredentialsAfterVariableReplacement
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDatasourceContext_withRateLimitExceeded_returnsTooManyRequests
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyDeleteDatasourceContext_whenContextDoesNotExist_returnsEmptyMono
  • com.appsmith.server.services.DatasourceContextServiceTest#verifyInitialiseDatasourceContextReturningRightIdentifier
  • com.appsmith.server.services.DatasourceServiceTest#
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterRemoval
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOAfterUpdate
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTONullPassword
  • com.appsmith.server.services.DatasourceServiceTest#checkEncryptionOfAuthenticationDTOTest
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceDifferentAuthentication
  • com.appsmith.server.services.DatasourceServiceTest#createAndUpdateDatasourceValidDB
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceNotInstalledPlugin
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithHostnameStartingWithSpace
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithId
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithInvalidCharsInHost
  • com.appsmith.server.services.DatasourceServiceTest#createDatasourceWithNullPluginId
  • com.appsmith.server.services.DatasourceServiceTest#createNamelessDatasource
  • com.appsmith.server.services.DatasourceServiceTest#datasourceDefaultNameCounterAsPerWorkspaceId
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithDeletedActions
  • com.appsmith.server.services.DatasourceServiceTest#deleteDatasourceWithoutActions
  • com.appsmith.server.services.DatasourceServiceTest#getErrorOnCreatingEmptyDatasource
  • com.appsmith.server.services.DatasourceServiceTest#get_WhenDatasourcesPresent_SortedAndIsRecentlyCreatedFlagSet
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceEmptyFields
  • com.appsmith.server.services.DatasourceServiceTest#testDatasourceValid
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageNPE
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostIPAddressOnUpdateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnCreateEventOnNonApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnTestDatasourceEvent
  • com.appsmith.server.services.DatasourceServiceTest#testHintMessageOnLocalhostUrlOnUpdateEventOnApiDatasource
  • com.appsmith.server.services.DatasourceServiceTest#testValidateDatasource_createDatasourceWithNullWorkspaceId
  • 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#verifyFindByDatasourceAndStorageIdGivesErrorWhenStorageIsAbsent
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyFindByDatasourceId
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationErrorsOutWhenStorageAlreadyExists
  • com.appsmith.server.services.DatasourceStorageServiceTest#verifyStorageCreationSucceedsWithDifferentEnvironmentId
  • com.appsmith.server.services.LayoutActionServiceTest#
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnActionViaWidget
  • com.appsmith.server.services.LayoutActionServiceTest#OnLoadActionsWhenActionDependentOnWidgetButNotPageLoadCandidate
  • com.appsmith.server.services.LayoutActionServiceTest#deleteUnpublishedAction_WhenActionDeleted_OnPageLoadActionsIsEmpty
  • com.appsmith.server.services.LayoutActionServiceTest#duplicateActionNameCreation
  • com.appsmith.server.services.LayoutActionServiceTest#introduceCyclicDependencyAndRemoveLater
  • com.appsmith.server.services.LayoutActionServiceTest#simpleOnPageLoadActionCreationTest
  • com.appsmith.server.services.LayoutActionServiceTest#tableWidgetKeyEscape
  • com.appsmith.server.services.LayoutActionServiceTest#testExecuteOnPageLoadOrderWhenAllActionsAreOnlyExplicitlySetToExecute
  • com.appsmith.server.services.LayoutActionServiceTest#testHintMessageOnLocalhostUrlOnUpdateActionEvent
  • com.appsmith.server.services.LayoutActionServiceTest#updateActionUpdatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenPageLoadActionSetBothWaysExplicitlyAndImplicitlyViaWidget_ActionsSaved
  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_withSelfReferencingWidget_updatesLayout
  • com.appsmith.server.services.LayoutActionServiceTest#updateMultipleLayouts_MultipleLayouts_LayoutsUpdated
  • com.appsmith.server.services.LayoutServiceTest#
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithInvalidPageID
  • com.appsmith.server.services.LayoutServiceTest#createLayoutWithNullPageId
  • com.appsmith.server.services.LayoutServiceTest#createValidLayout
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectDynamicBindingPathInDsl
  • com.appsmith.server.services.LayoutServiceTest#testIncorrectMustacheExpressionInBindingInDsl
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidAppId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutInvalidPageId
  • com.appsmith.server.services.LayoutServiceTest#updateLayoutValidPageId
  • com.appsmith.server.services.MockDataServiceTest#
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsDuplicateName
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsMongo
  • com.appsmith.server.services.MockDataServiceTest#testCreateMockDataSetsPostgres
  • com.appsmith.server.services.PageServiceTest#
  • com.appsmith.server.services.PageServiceTest#addDuplicatePageToApplication
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained
  • com.appsmith.server.services.PageServiceTest#createPageWithNullApplication
  • com.appsmith.server.services.PageServiceTest#createPageWithNullName
  • com.appsmith.server.services.PageServiceTest#createValidPage
  • com.appsmith.server.services.PageServiceTest#createValidPageWithLayout
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromHighOrderToLowOrder
  • com.appsmith.server.services.PageServiceTest#reOrderPageFromLowOrderToHighOrder
  • com.appsmith.server.services.PageServiceTest#reorderPage_pageReordered_success
  • com.appsmith.server.services.PageServiceTest#reuseDeletedPageName
  • com.appsmith.server.services.PageServiceTest#updatePage_WhenCustomSlugSet_CustomSlugIsNotUpdated
  • com.appsmith.server.services.PageServiceTest#validChangePageNameAndPageIcon
  • com.appsmith.server.services.PermissionGroupServiceTest#
  • com.appsmith.server.services.PluginServiceTest#
  • com.appsmith.server.services.PluginServiceTest#checkPluginExecutor
  • com.appsmith.server.services.PluginServiceTest#getPluginFormValid
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullEditorConfig
  • com.appsmith.server.services.PluginServiceTest#getPluginFormWithNullFormConfig
  • com.appsmith.server.services.ThemeServiceTest#
  • com.appsmith.server.services.UsagePulseServiceTest#
  • com.appsmith.server.services.UserDataServiceTest#
  • com.appsmith.server.services.UserServiceTest#
  • com.appsmith.server.services.UserServiceTest#buildUserProfileDTO_WhenAnonymousUser_ReturnsProfile
  • com.appsmith.server.services.UserServiceTest#createNewUserFormSignupNullPassword
  • com.appsmith.server.services.UserServiceTest#createNewUserValid
  • com.appsmith.server.services.UserServiceTest#createNewUser_WhenEmailHasUpperCase_SavedInLowerCase
  • com.appsmith.server.services.UserServiceTest#createUserWithInvalidEmailAddress
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenInstanceEmailVerificationIsNotEnabled_ThrowsException
  • com.appsmith.server.services.UserServiceTest#emailVerificationTokenGenerate_WhenUserEmailAlreadyVerified_ThrowsException
  • com.appsmith.server.services.UserServiceTest#forgotPasswordTokenGenerate_AfterTrying3TimesIn24Hours_ThrowsException
  • com.appsmith.server.services.UserServiceTest#getIntercomConsentOfUserOnCloudHosting_AlwaysTrue
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#resetPasswordAfterForgotPassword_WhenTokenDoesNotMatch_ThrowsException
  • com.appsmith.server.services.UserServiceTest#signUpAfterBeingInvitedToAppsmithWorkspace
  • com.appsmith.server.services.UserServiceTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#signUpViaGoogleIfAlreadyInvited
  • com.appsmith.server.services.UserServiceTest#testCreateNewUser_assertUserManagementRole
  • com.appsmith.server.services.UserServiceTest#updateIntercomConsentOfUser
  • com.appsmith.server.services.UserServiceTest#updateInvalidUserWithAnything
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithAccentedCharacters_IsValid
  • com.appsmith.server.services.UserServiceTest#updateNameOfUser_WithNotAllowedSpecialCharacter_InvalidName
  • com.appsmith.server.services.UserServiceTest#updateNameProficiencyAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateNameRoleAndUseCaseOfUser
  • com.appsmith.server.services.UserServiceTest#updateRoleOfUser
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenMalformedToken_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotExist_ThrowsException
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenDoesNotMatch_ReturnsFalse
  • com.appsmith.server.services.UserServiceTest#verifyPasswordResetToken_WhenTokenMatches_ReturnsTrue
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewAdminValidWhenDisabled2
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#createNewUserValidWhenDisabled
  • com.appsmith.server.services.UserServiceWithDisabledSignupTest#signUpViaFormLoginIfAlreadyInvited
  • com.appsmith.server.services.UserWorkspaceServiceTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_noRecentWorkspaces_allEntriesAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getUserWorkspacesByRecentlyUsedOrder_withRecentlyUsedWorkspaces_allEntriesWithSameOrderAreReturned
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenNoOrgFound_ThrowsException
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenRoleIsNull_ReturnsEmptyList
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForMultipleWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#getWorkspaceMembers_WhenUserHasProfilePhotoForOneWorkspace_ProfilePhotoIncluded
  • com.appsmith.server.services.UserWorkspaceServiceUnitTest#whenMapPermissionGroup_thenConvertsToPermissionGroupInfoDTO
  • com.appsmith.server.services.WorkspaceServiceTest#
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsAdmin
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUserToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addNewUsersBulkToWorkspaceAsViewer
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsAdminAndCheckApplicationAndDatasourcePermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceAsViewerAndCheckApplicationPermissions
  • com.appsmith.server.services.WorkspaceServiceTest#addUserToWorkspaceIfUserAlreadyMember_throwsError
  • com.appsmith.server.services.WorkspaceServiceTest#checkNewUsersDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDefaultWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#createDuplicateNameWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasApp_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WhenWorkspaceHasNoApp_WorkspaceIsDeleted
  • com.appsmith.server.services.WorkspaceServiceTest#delete_WithoutManagePermission_ThrowsException
  • com.appsmith.server.services.WorkspaceServiceTest#getAllMembersForWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#getAllUserRolesForWorkspaceDomainAsAdministrator
  • com.appsmith.server.services.WorkspaceServiceTest#getWorkspaceInvalidId
  • com.appsmith.server.services.WorkspaceServiceTest#inValidupdateWorkspaceEmptyName
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongDomainPart
  • com.appsmith.server.services.WorkspaceServiceTest#inviteInvalidEmailTooLongLocalPart
  • com.appsmith.server.services.WorkspaceServiceTest#nullCreateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#nullName
  • com.appsmith.server.services.WorkspaceServiceTest#save_WhenNameIsPresent_SlugGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#testDeleteLogo_invalidWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#testInviteDuplicateUsers_shouldReturnUniqueUsers
  • com.appsmith.server.services.WorkspaceServiceTest#testUpdateAndDeleteLogo_validLogo
  • com.appsmith.server.services.WorkspaceServiceTest#update_NewName_GroupNamesUpdated
  • com.appsmith.server.services.WorkspaceServiceTest#update_WhenNameIsNotPresent_SlugIsNotGenerated
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_largeFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#uploadWorkspaceLogo_nullFilePart
  • com.appsmith.server.services.WorkspaceServiceTest#validCreateWorkspaceTest
  • com.appsmith.server.services.WorkspaceServiceTest#validGetWorkspaceByName
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateCorrectWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspace
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceInvalidWebsite
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidEmail
  • com.appsmith.server.services.WorkspaceServiceTest#validUpdateWorkspaceValidWebsite
  • com.appsmith.server.services.ce.ActionServiceCE_Test#
  • 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#createAction_forGitConnectedAppWithInvalidBranchName_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#
  • 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#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsAbsent_allAppsAreReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_applicationPresentInWorkspace_recentlyUsedAppsPresent_orderedListIsReturned
  • com.appsmith.server.services.ce.ApplicationServiceCETest#findByWorkspaceIdAndDefaultApplicationsInRecentlyUsedOrder_noApplicationPresentInWorkspace_emptyListIsReturned
  • 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#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.services.ce.ApplicationSnapshotServiceUnitTest#createApplicationSnapshot_WhenApplicationTooLarge_SnapshotCreatedSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationConnectedToGit_ReturnApplicationWithDefaultIds
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenApplicationHasDefaultPageIds_IdReplacedWithDefaultPageId
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#restoreSnapshot_WhenSnapshotHasMultipleChunks_RestoredSuccessfully
  • com.appsmith.server.services.ce.ApplicationSnapshotServiceUnitTest#test
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendForgotPasswordEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#sendInviteUserToWorkspaceEmail
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testInviteWorkspaceUrl
  • com.appsmith.server.services.ce.EmailServiceCEImplTest#testSendInstanceAdminInviteEmail
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatureFlags_withUserIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#evictFeatures_withTenantIdentifier_redisKeyDoesNotExist
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_disableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_emptyMapForPendingMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getAllRemoteFeaturesForTenantAndUpdateFeatureFlagsWithPendingMigrations_enableMigration_statesUpdate
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getCachedTenantFeatureFlags_withDefaultTenant_tenantFeatureFlagsAreCached
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatureFlags_withUserIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getFeatures_withTenantIdentifier_redisKeyExists
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#getTenantFeatureFlags_withDefaultTenant_fetchLatestFlags
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testGetFeaturesForUser_overrideWithTenantFeature
  • com.appsmith.server.services.ce.FeatureFlagServiceCETest#testNullFeatureCheck
  • com.appsmith.server.services.ce.TenantServiceCETest#
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_emptyMigrationMap_revertSameTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_exceptionWhileRunningMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#checkAndExecuteMigrationsForTenantFeatureFlags_withPendingMigration_getUpdatedTenant
  • com.appsmith.server.services.ce.TenantServiceCETest#ensureMapsKey
  • com.appsmith.server.services.ce.TenantServiceCETest#getTenantConfig_Valid_AnonymousUser
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabledFalseAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithInvalidSMTPHost_ReturnsError
  • com.appsmith.server.services.ce.TenantServiceCETest#setEmailVerificationEnabled_WithValidSMTPHost_Success
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyAndGetItBack
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthentication
  • com.appsmith.server.services.ce.TenantServiceCETest#setMapsKeyWithoutAuthorization
  • com.appsmith.server.services.ce.TenantServiceCETest#testDeserializationErrors
  • com.appsmith.server.services.ce.TenantServiceCETest#updateTenantConfiguration_updateStrongPasswordPolicy_success
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenCloudHosting_returnsEmail
  • com.appsmith.server.services.ce.UserIdentifierServiceCEImplTest#getUserIdentifier_whenSelfHosted_returnsHashedEmail
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationFalseWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationForkWithConfigurationTrueWithActionsThrice
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#cloneApplicationMultipleTimes
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasCustomSavedTheme_NewCustomThemeCreated
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasSystemTheme_SystemThemeSet
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplicationToWorkspace_WhenAppHasUnsavedThemeCustomization_ForkedWithCustomizations
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_WhenContainsInternalFields_InternalFieldsNotForked
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_deletePageAfterBeingPublished_deletedPageIsNotCloned
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceNotUsed_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationFalseAndDatasourceUsed_IsPartialImportTrue
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkApplication_withForkWithConfigurationTrue_IsPartialImportFalse
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkGitConnectedApplication_defaultBranchUpdated_forkDefaultBranchApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#forkingEnabledPublicApp_noPermission_ForkApplicationSuccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test1_cloneWorkspaceWithItsContents
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test2_forkApplicationWithReadApplicationUserAccess
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test3_failForkApplicationWithInvalidPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test4_validForkApplication_cancelledMidWay_createValidApplication
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test5_failForkApplication_noPageEditPermission
  • com.appsmith.server.solutions.ApplicationForkingServiceTests#test6_failForkApplication_noDatasourceCreatePermission
  • com.appsmith.server.solutions.AuthenticationServiceTest#
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_invalidDatasourceWithNullAuthentication
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_missingDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasource
  • com.appsmith.server.solutions.AuthenticationServiceTest#testGetAuthorizationCodeURL_validDatasourceAndBranchName
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidApplicationIdTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidDatasourceTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithInvalidRequestBodyTest
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForPostgres
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithLessColumnsComparedToTemplateForSql
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageId
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForS3
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithNullPageIdForSnowflake
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForGoogleSheet
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMongoDB
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForMySqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForPostgresqlDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPageWithValidPageIdForRedshiftDS
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withInvalidBranchName_throwException
  • com.appsmith.server.solutions.CreateDBTablePageSolutionTests#createPage_withValidBranch_validDefaultIds
  • com.appsmith.server.solutions.DatasourceStructureSolutionTest#
  • 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.DatasourceTriggerSolutionTest#datasourceTriggerTest
  • com.appsmith.server.solutions.PartialExportServiceTest#
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_branchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_gitConnectedApp_featureBranchResourceExported
  • com.appsmith.server.solutions.PartialExportServiceTest#testGetPartialExport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImportWithBuildingBlock_nameClash_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_gitConnectedAppDefaultBranch_success
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nameClashInAction_successWithNoNameDuplicates
  • com.appsmith.server.solutions.PartialImportServiceTest#testPartialImport_nonGitConnectedApp_success
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminInviteRoles
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testAdminPermissionsForInviteAndMakePublic
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDevPermissionsForInvite
  • com.appsmith.server.solutions.ShareWorkspacePermissionTests#testDeveloperInviteRoles
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testEnrichExecutionParams_withBlobReference_performsSubstitutionCorrectly
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithParameterMapAsLastPart
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAPIWithUsualOrderingOfTheParts
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withMalformedExecuteActionDTO_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutActionId_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testExecuteAction_withoutExecuteActionDTOPart_failsValidation
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCEImplTest#testParsePartsAndGetParamsFlux_withBlobIdentifiers_replacesValueInParam
  • com.appsmith.server.solutions.ce.ActionExecutionSolutionCETest#
  • 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
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_exceptionDuringImportActions_savedPagesAndApplicationReverted
  • com.appsmith.server.transactions.ImportApplicationTransactionServiceTest#importApplication_transactionExceptionDuringListActionSave_omitTransactionMessagePart
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingListWidget_replacesTemplateReferences
  • com.appsmith.server.widgets.refactors.WidgetRefactoringServiceCEImplTest#testRefactorNameInDsl_whenRenamingTextWidget_replacesAllReferences

@vivonk vivonk merged commit e51bfbb into pg May 30, 2024
11 of 13 checks passed
@vivonk vivonk deleted the chore/fixing-server-tests-base-changes branch May 30, 2024 13:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants