-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Polaris Integration Tests | ||
|
||
## Overview | ||
|
||
This module contains integration tests for Polaris. These tests are designed as black box tests | ||
that can be run against a local or remote Polaris instance. | ||
|
||
## Runtime Expectations | ||
|
||
### PolarisApplicationIntegrationTest | ||
|
||
This test expects the server to be configured with the following features configured: | ||
|
||
* `ALLOW_OVERLAPPING_CATALOG_URLS`: `true` | ||
|
||
The server must also be configured to reject request body sizes larger than 1MB (1000000 bytes). | ||
|
||
### PolarisManagementServiceIntegrationTest | ||
|
||
This test expects the server to be configured with the following features configured: | ||
|
||
* `ALLOW_OVERLAPPING_CATALOG_URLS`: `true` | ||
* `ENFORCE_PRINCIPAL_CREDENTIAL_ROTATION_REQUIRED_CHECKING`: `true` | ||
|
||
### PolarisRestCatalogIntegrationTest | ||
|
||
This test expects the server to be configured with the following features configured: | ||
|
||
* `ALLOW_EXTERNAL_CATALOG_CREDENTIAL_VENDING`: `false` | ||
|
||
### PolarisRestCatalogView*IntegrationTest | ||
|
||
These tests expect the server to be configured with teh feature `SUPPORTED_CATALOG_STORAGE_TYPES` | ||
set to the appropriate storage type. | ||
|
||
### PolarisSparkIntegrationTest | ||
|
||
This test expects the server to be configured with the following features enabled: | ||
|
||
* `SKIP_CREDENTIAL_SUBSCOPING_INDIRECTION`: `true` | ||
* `ALLOW_OVERLAPPING_CATALOG_URLS`: `true` |