This is an automated email from the ASF dual-hosted git repository.

yasith pushed a change to branch service-layer-improvements
in repository https://gitbox.apache.org/repos/asf/airavata.git


 discard 48ea58a517 Refactor integration tests to improve consistency and 
readability. Update timestamp generation for gateway creation. Enhance test 
conditions with @EnabledIf for clean database checks. Ensure proper user 
existence in sharing registry. Modernize syntax and fix property mapping for 
test classes. Add manual timeouts to test cases to avoid indefinitely hanging.
     add 264c57b7e4 Refactor integration tests to improve consistency and 
readability. Update timestamp generation for gateway creation. Enhance test 
conditions with @EnabledIf for clean database checks. Ensure proper user 
existence in sharing registry. Modernize syntax and fix property mapping for 
test classes. Add manual timeouts to test cases to avoid indefinitely hanging.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (48ea58a517)
            \
             N -- N -- N   refs/heads/service-layer-improvements (264c57b7e4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 QUICKSTART.md                                      |  472 +
 README.md                                          |   25 +
 modules/airavata-api/pom.xml                       |   56 +-
 .../airavata/config/AiravataServerProperties.java  |   26 +
 .../java/org/apache/airavata/config/JpaConfig.java |   24 +-
 .../apache/airavata/config/RestClientConfig.java   |   20 +
 .../org/apache/airavata/messaging/Dispatcher.java  |   63 +-
 .../messaging/rabbitmq/MessagingFactory.java       |   79 +-
 .../utils/TenantManagementKeycloakImpl.java        |   39 +-
 .../profile/utils/keycloak/KeycloakRestClient.java |   19 +-
 .../entities/expcatalog/ExperimentErrorEntity.java |   10 +-
 .../expcatalog/ExperimentStatusEntity.java         |    5 +-
 .../registry/entities/expcatalog/JobEntity.java    |    9 +-
 .../entities/expcatalog/JobStatusEntity.java       |    8 +-
 .../entities/expcatalog/ProcessEntity.java         |    2 +-
 .../entities/expcatalog/ProcessErrorEntity.java    |    5 +-
 .../entities/expcatalog/ProcessStatusEntity.java   |    5 +-
 .../entities/expcatalog/TaskErrorEntity.java       |    5 +-
 .../entities/expcatalog/TaskStatusEntity.java      |    8 +-
 .../registry/mappers/ErrorModelMapper.java         |    3 +
 .../registry/services/ComputeResourceService.java  |    8 +-
 .../registry/services/ExperimentInputService.java  |   10 +-
 .../registry/services/ExperimentOutputService.java |   10 +-
 .../registry/services/ExperimentStatusService.java |   49 +-
 .../registry/services/JobStatusService.java        |   85 +-
 .../registry/services/ProcessErrorService.java     |   12 +-
 .../registry/services/ProcessInputService.java     |   12 +-
 .../registry/services/ProcessOutputService.java    |   12 +-
 .../airavata/registry/services/ProcessService.java |   53 +-
 .../registry/services/ProcessStatusService.java    |   71 +-
 .../registry/services/TaskErrorService.java        |   12 +-
 .../airavata/registry/services/TaskService.java    |    6 +-
 .../registry/services/TaskStatusService.java       |   21 +-
 .../apache/airavata/service/AiravataService.java   |   54 +-
 .../service/experiment/ExperimentService.java      |   37 +-
 .../airavata/service/registry/RegistryService.java |   32 +-
 .../service/security/AuthorizationService.java     |    8 +-
 .../service/security/CredentialStoreService.java   |    2 +-
 .../airavata/service/security/IamAdminService.java |   71 +-
 .../airavata/service/sharing/SharingManager.java   |    8 +-
 .../airavata/sharing/mappers/GroupAdminMapper.java |    2 +
 .../SSHAccountProvisionerFactoryTest.java          |    2 -
 .../airavata/accountprovisioning/SSHUtilTest.java  |    2 -
 .../airavata/common/utils/NameValidatorTest.java   |    2 -
 .../airavata/common/utils/SecurityUtilTest.java    |    2 -
 .../config/BackgroundServicesStartupTest.java      |    7 -
 .../apache/airavata/config/EntityLoadingTest.java  |    2 -
 .../config/ExternalServiceStartupTest.java         |    7 -
 .../airavata/config/FlywayLocalStartupTest.java    |    2 -
 .../airavata/config/FlywayMigrationTest.java       |    2 -
 .../config/IntegrationTestConfiguration.java       |   65 +-
 .../airavata/config/KeycloakTokenHelper.java       |  181 +
 .../apache/airavata/config/MinimalStartupTest.java |   23 +-
 .../config/PersistenceConfigurationTest.java       |    2 -
 .../airavata/config/RestModeStartupTest.java       |    7 -
 .../airavata/config/ServiceStatusVerifier.java     |    9 +-
 .../airavata/config/SpringContextLoadTest.java     |    2 -
 .../airavata/config/TestPropertiesHelper.java      |   15 +-
 .../airavata/config/TestcontainersConfig.java      |   96 +-
 .../airavata/config/TestcontainersSetupTest.java   |    2 -
 .../airavata/config/ThriftModeStartupTest.java     |    7 -
 .../config/UnifiedApplicationStartupTest.java      |   12 +-
 .../messaging/kafka/KafkaIntegrationTest.java      |    2 -
 .../rabbitmq/RabbitMQIntegrationTest.java          |    2 -
 .../airavata/messaging/rabbitmq/TestClient.java    |    2 -
 .../orchestrator/core/BaseOrchestratorTest.java    |    2 -
 .../orchestrator/core/NewOrchestratorTest.java     |    2 -
 .../ApplicationDeploymentRepositoryTest.java       |    1 -
 .../ApplicationInterfaceRepositoryTest.java        |    1 -
 .../appcatalog/GatewayProfileRepositoryTest.java   |    1 -
 .../UserResourceProfileRepositoryTest.java         |    1 -
 .../registry/repositories/common/TestBase.java     |    1 -
 .../security/GatewayGroupsInitializerTest.java     |    2 -
 .../security/KeyCloakSecurityManagerTest.java      |    2 -
 .../DataMovementStateMachineIntegrationTest.java   |   12 +-
 .../ExperimentLifecycleIntegrationTest.java        |   36 +-
 .../IamAdminServiceIntegrationTest.java            |   11 +-
 .../JobSubmissionStateMachineIntegrationTest.java  |   12 +-
 .../service/integration/MockKeycloakHelper.java    |  153 -
 .../OrchestratorServiceIntegrationTest.java        |    2 -
 ...rocessExecutionStateMachineIntegrationTest.java |   12 +-
 .../RegistryServiceIntegrationTest.java            |    4 +-
 .../integration/ServiceIntegrationTestBase.java    |  279 +-
 .../SlurmConnectivityIntegrationTest.java          |   58 +-
 .../StateTransitionValidationIntegrationTest.java  |   12 +-
 modules/distribution/pom.xml                       |   54 +
 .../org/apache/airavata/AiravataCommandLine.java   |   10 +
 .../apache/airavata/cli/CLIInfrastructureTest.java |  278 +
 .../apache/airavata/cli/CLIIntegrationTest.java    |  344 +
 modules/thrift-api/pom.xml                         |    9 +
 .../client/TestAiravataServiceClientFactory.java   |    2 -
 output.log                                         | 8997 ++++++++++++++++++++
 pom.xml                                            |   28 +-
 scripts/aggregate-test-reports.sh                  |  150 -
 .../main/resources/application.properties          |    0
 .../test/resources/application.properties          |   12 +-
 96 files changed, 11281 insertions(+), 1120 deletions(-)
 create mode 100644 QUICKSTART.md
 create mode 100644 
modules/airavata-api/src/test/java/org/apache/airavata/config/KeycloakTokenHelper.java
 delete mode 100644 
modules/airavata-api/src/test/java/org/apache/airavata/service/integration/MockKeycloakHelper.java
 create mode 100644 
modules/distribution/src/test/java/org/apache/airavata/cli/CLIInfrastructureTest.java
 create mode 100644 
modules/distribution/src/test/java/org/apache/airavata/cli/CLIIntegrationTest.java
 create mode 100644 output.log
 delete mode 100755 scripts/aggregate-test-reports.sh
 rename {modules/distribution/src => src}/main/resources/application.properties 
(100%)
 rename {modules/airavata-api/src => src}/test/resources/application.properties 
(95%)

Reply via email to