-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Cart: fix schema and allow to use connector on Airbyte Cloud (#…
- Loading branch information
1 parent
8b07903
commit 1cc5e53
Showing
11 changed files
with
158 additions
and
34 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
71 changes: 42 additions & 29 deletions
71
airbyte-integrations/connectors/source-cart/acceptance-test-config.yml
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 |
---|---|---|
@@ -1,38 +1,51 @@ | ||
# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) | ||
# for more information about how to configure these tests | ||
connector_image: airbyte/source-cart:dev | ||
tests: | ||
test_strictness_level: low | ||
acceptance_tests: | ||
spec: | ||
- spec_path: "source_cart/spec.json" | ||
backward_compatibility_tests_config: | ||
disable_for_version: "0.1.6" | ||
tests: | ||
- spec_path: "source_cart/spec.json" | ||
backward_compatibility_tests_config: | ||
disable_for_version: "0.1.6" | ||
connection: | ||
- config_path: "secrets/config.json" | ||
status: "succeed" | ||
- config_path: "integration_tests/invalid_config.json" | ||
status: "failed" | ||
timeout_seconds: 180 | ||
tests: | ||
- config_path: "secrets/config.json" | ||
status: "succeed" | ||
- config_path: "integration_tests/invalid_config.json" | ||
status: "failed" | ||
timeout_seconds: 180 | ||
discovery: | ||
- config_path: "secrets/config.json" | ||
backward_compatibility_tests_config: | ||
disable_for_version: "0.1.6" | ||
tests: | ||
- config_path: "secrets/config.json" | ||
backward_compatibility_tests_config: | ||
disable_for_version: "0.1.6" | ||
basic_read: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
timeout_seconds: 1800 | ||
tests: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
timeout_seconds: 1800 | ||
empty_streams: | ||
- name: "order_payments" | ||
bypass_reason: "no data" | ||
- name: "products" | ||
bypass_reason: "no data" | ||
incremental: | ||
- config_path: "secrets/config_central_api_router.json" | ||
configured_catalog_path: "integration_tests/configured_catalog_wo_order_statuses.json" | ||
future_state_path: "integration_tests/abnormal_state.json" | ||
timeout_seconds: 1800 | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
future_state_path: "integration_tests/abnormal_state.json" | ||
timeout_seconds: 1800 | ||
tests: | ||
# - config_path: "secrets/config_central_api_router.json" | ||
# configured_catalog_path: "integration_tests/configured_catalog_wo_order_statuses.json" | ||
# future_state_path: "integration_tests/abnormal_state.json" | ||
# timeout_seconds: 1800 | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
future_state: | ||
future_state_path: "integration_tests/abnormal_state.json" | ||
timeout_seconds: 1800 | ||
full_refresh: | ||
- config_path: "secrets/config_central_api_router.json" | ||
configured_catalog_path: "integration_tests/configured_catalog_wo_order_statuses.json" | ||
timeout_seconds: 1800 | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
timeout_seconds: 1800 | ||
tests: | ||
- config_path: "secrets/config_central_api_router.json" | ||
configured_catalog_path: "integration_tests/configured_catalog_wo_order_statuses.json" | ||
timeout_seconds: 1800 | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
timeout_seconds: 1800 |
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
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
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
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
2 changes: 2 additions & 0 deletions
2
airbyte-integrations/connectors/source-cart/source_cart/schemas/order_payments.json
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
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
19 changes: 19 additions & 0 deletions
19
airbyte-integrations/connectors/source-cart/source_cart/schemas/orders.json
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
2 changes: 2 additions & 0 deletions
2
airbyte-integrations/connectors/source-cart/source_cart/schemas/products.json
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
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