Differentiate base paths for searchable snapshots QA tests (#58664) (#58714)

This commit adds the BuildParams.testSeed to the repository base paths used 
in searchable snapshots QA tests. For S3 and GCS the test seed is added for 
coherency sake with other integration tests while it's required for Azure as 
Azure 3rd party tests are executed on CI simultaneously for regular and 
SAS token accounts.

Closes #58260
This commit is contained in:
Tanguy Leroux 2020-06-30 10:18:33 +02:00 committed by GitHub
parent dcc5a06dec
commit 4e03633a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ integTest {
dependsOn repositoryPlugin.bundlePlugin dependsOn repositoryPlugin.bundlePlugin
runner { runner {
systemProperty 'test.azure.container', azureContainer systemProperty 'test.azure.container', azureContainer
systemProperty 'test.azure.base_path', azureBasePath + "_searchable_snapshots_tests" systemProperty 'test.azure.base_path', azureBasePath + "_searchable_snapshots_tests_" + BuildParams.testSeed
} }
} }

View File

@ -107,7 +107,7 @@ integTest {
dependsOn repositoryPlugin.bundlePlugin dependsOn repositoryPlugin.bundlePlugin
runner { runner {
systemProperty 'test.gcs.bucket', gcsBucket systemProperty 'test.gcs.bucket', gcsBucket
systemProperty 'test.gcs.base_path', gcsBasePath + "_searchable_snapshots_tests" systemProperty 'test.gcs.base_path', gcsBasePath + "_searchable_snapshots_tests" + BuildParams.testSeed
} }
} }

View File

@ -45,7 +45,7 @@ integTest {
dependsOn repositoryPlugin.bundlePlugin dependsOn repositoryPlugin.bundlePlugin
runner { runner {
systemProperty 'test.s3.bucket', s3Bucket systemProperty 'test.s3.bucket', s3Bucket
systemProperty 'test.s3.base_path', s3BasePath ? s3BasePath + "_searchable_snapshots_tests" : 'base_path' systemProperty 'test.s3.base_path', s3BasePath ? s3BasePath + "_searchable_snapshots_tests" + BuildParams.testSeed : 'base_path'
} }
} }