https://github.com/exasol/virtual-schema-shared-integration-tests
Common parts shared by all integration test for Exasol virtual schemas
https://github.com/exasol/virtual-schema-shared-integration-tests
exasol exasol-integration integration-testing virtual-schema
Last synced: 19 days ago
JSON representation
Common parts shared by all integration test for Exasol virtual schemas
- Host: GitHub
- URL: https://github.com/exasol/virtual-schema-shared-integration-tests
- Owner: exasol
- License: mit
- Created: 2021-03-08T14:02:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T09:06:15.000Z (2 months ago)
- Last Synced: 2025-05-25T08:42:03.131Z (about 2 months ago)
- Topics: exasol, exasol-integration, integration-testing, virtual-schema
- Language: Java
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Virtual Schema Shared Integration Tests
[](https://github.com/exasol/virtual-schema-shared-integration-tests/actions/workflows/ci-build.yml)
[](https://search.maven.org/artifact/com.exasol/virtual-schema-shared-integration-tests)[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)
[](https://sonarcloud.io/dashboard?id=com.exasol%3Avirtual-schema-shared-integration-tests)This repository contains abstract integration tests for Exasol Virtual Schemas.
The tests check that Exasol functions behave in the same way on a Virtual Schema table and on a regular Exasol table.
## Usage
You can use these tests by subclassing `ScalarFunctionsTestBase` in your project's tests. Your test will then inherit the shared tests.
### Excludes
For some dialects some tests might not be relevant or applicable. That's why this test suite allows you to exclude certain tests:
```
@Override
public Set getDialectSpecificExcludes(){
return Set.of("neg");
}
```You can also exclude certain parameter combinations for the automatic tests.
## Additional Information
* [Changelog](doc/changes/changelog.md)
* [Dependencies](dependencies.md)