Skip to content

Commit

Permalink
chore: remove unused (#3277)
Browse files Browse the repository at this point in the history
Signed-off-by: achmelo <[email protected]>
  • Loading branch information
achmelo authored Jan 19, 2024
1 parent f855289 commit 30fbac7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 150 deletions.
25 changes: 0 additions & 25 deletions .circleci/config.yml

This file was deleted.

20 changes: 2 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,6 @@ task buildCore(dependsOn: [':gateway-service:build', ':discovery-service:build',
group "build"
}

task runIntegrationTests(dependsOn: ":integration-tests:runIntegrationTests") {
description "Run integration tests"
group "Integration tests"
}

task runAllIntegrationTests(dependsOn: ":integration-tests:runAllIntegrationTests") {
description "Run all integration tests"
group "Integration tests"
Expand Down Expand Up @@ -207,11 +202,6 @@ task runIdPrefixReplacerTests(dependsOn: [":integration-tests:runIdPrefixReplace
group "Integration tests"
}

task runMainFrameTests(dependsOn: ":integration-tests:runMainFrameTests") {
description "Run only tests related to the MainFrame"
group "Integration tests"
}

task publishAllVersions {
group 'Zowe Publishing'
description 'Publish ZIP file and SDK libraries to Zowe Artifactory'
Expand All @@ -234,10 +224,7 @@ task runBaseTests(dependsOn: ":integration-tests:runBaseTests") {
description "Run base tests"
group "Integration tests"
}
task runSafAuthTest(dependsOn: ":integration-tests:runSafAuthTest") {
description "Run SAF dependant authentication tests only"
group "Integration tests"
}

task runZosmfAuthTest(dependsOn: ":integration-tests:runZosmfAuthTest") {
description "Run zOSMF dependant authentication tests only"
group "Integration tests"
Expand All @@ -246,10 +233,7 @@ task runZaasTest(dependsOn: ":integration-tests:runZaasTest") {
description "Run Zaas dependant authentication tests only"
group "Integration tests"
}
task runX509AuthTest(dependsOn: ":integration-tests:runX509AuthTest") {
description "Run x509 dependant authentication tests only"
group "Integration tests"
}

task runBaseTestsInternalPort(dependsOn: ":integration-tests:runBaseTestsInternalPort") {
description "Run base tests on internal port"
group "Integration tests"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Start the suite of slow tests by executing the following shell script:
## Running a Specific Test
```sh
./gradlew :integration-tests:runIntegrationTests --tests org.zowe.apiml.gatewayservice.PassTicketTest
./gradlew :integration-tests:runAllIntegrationTests --tests org.zowe.apiml.gatewayservice.PassTicketTest
```
## Running specific tests to test Zowe RC
Expand Down
108 changes: 2 additions & 106 deletions integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,37 +112,6 @@ task runStartUpCheck(type: Test) {
outputs.upToDateWhen { false }
}

task runWebsocketTests(type: Test) {
group "integration tests"
description "Runs tests for WebSockets"

systemProperties System.properties
useJUnitPlatform {
includeTags 'WebsocketTest'
}
outputs.upToDateWhen { false }
}

task runIntegrationTests(type: Test) {
group "Integration tests"
description "Run only tests without long tests"

dependsOn startUpCheck
systemProperties System.properties
useJUnitPlatform {
excludeTags(
'StartupCheck',
'EnvironmentCheck',
'SlowTests',
'AdditionalLocalTest',
'HATest',
'ChaoticHATest',
'OktaOauth2Test',
'MultipleRegistrationsTest'
)
}
}

task runLocalIntegrationTests(type: Test) {
group "Integration tests"
description "Run integration tests that are not dependent on mainframe"
Expand All @@ -165,27 +134,6 @@ task runLocalIntegrationTests(type: Test) {
outputs.upToDateWhen { false }
}

task runAllLocalIntegrationTests(type: Test) {
group "Integration tests"
description "Run integration tests for additional local services"

dependsOn startUpCheck
systemProperties System.getProperties()
useJUnitPlatform {
excludeTags(
'StartupCheck',
'EnvironmentCheck',
'SlowTests',
'MainframeDependentTests',
'HATest',
'ChaoticHATest',
'OktaOauth2Test',
'MultipleRegistrationsTest'
)
}
outputs.upToDateWhen { false }
}

task runAllIntegrationTestsNormal(type: Test) {
group "Integration tests"
description "Run all integration tests normal"
Expand Down Expand Up @@ -227,22 +175,13 @@ task runAllIntegrationTests(type: Test) {
outputs.upToDateWhen { false }
}

task runTestWithoutStartupCheck(type: Test) {
group "Integration tests"
description "Run integration test without startup check"

useJUnitPlatform()

systemProperties System.properties

outputs.upToDateWhen { false }
}

task runAllIntegrationTestsForZoweTesting(type: Test) {
group "Integration tests"
description "Run all integration tests for Zowe testing"

systemProperty "environment.offPlatform", "true"
systemProperties System.properties

useJUnitPlatform {
excludeTags(
'StartupCheck',
Expand Down Expand Up @@ -319,21 +258,6 @@ task runContainerTests(type: Test) {
}
}

task runMainFrameTests(type: Test) {
group "integration tests"
description "Run tests that verify integration with MainFrame"

dependsOn startUpCheck
systemProperties System.getProperties()
useJUnitPlatform {
includeTags(
'MainframeDependentTests'
)
}
outputs.upToDateWhen { false }
}


task runBaseTests(type: Test) {
group "integration tests"
description "Run base tests"
Expand Down Expand Up @@ -453,20 +377,6 @@ task runIdPrefixReplacerTests(type: Test) {
}
}

task runSafAuthTest(type: Test) {
group "integration tests"
description "Run SAF dependant authentication tests only"

outputs.cacheIf { false }

systemProperties System.getProperties()
useJUnitPlatform {
includeTags(
'SAFAuthTest'
)
}
}

task runZosmfAuthTest(type: Test) {
group "integration tests"
description "Run zOSMF dependant authentication tests only"
Expand Down Expand Up @@ -498,20 +408,6 @@ task runZaasTest(type: Test) {
}
}

task runX509AuthTest(type: Test) {
group "integration tests"
description "Run x509 dependant authentication tests only"

outputs.cacheIf { false }

systemProperties System.getProperties()
useJUnitPlatform {
includeTags(
'X509Test'
)
}
}

task runCachingServiceTests(type: Test) {
group "integration tests"
description "Run Caching service tests only"
Expand Down

0 comments on commit 30fbac7

Please sign in to comment.