feat(source-smoke-test): new Smoke Test Source for testing destinations#75181
Merged
Aaron ("AJ") Steers (aaronsteers) merged 10 commits intomasterfrom Mar 19, 2026
Merged
Conversation
Co-Authored-By: AJ Steers <aj@airbyte.io>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
👋 Greetings, Airbyte Team Member!Here are some helpful tips and reminders for your convenience. 💡 Show Tips and TricksPR Slash CommandsAirbyte Maintainers (that's you!) can execute the following slash commands on your PR:
📚 Show Repo GuidanceHelpful Resources
|
Co-Authored-By: AJ Steers <aj@airbyte.io>
airbyte-integrations/connectors/source-smoke-test/metadata.yaml
Outdated
Show resolved
Hide resolved
Contributor
|
Co-Authored-By: AJ Steers <aj@airbyte.io>
Member
Author
|
Devin, please fix the ci errors |
Co-Authored-By: AJ Steers <aj@airbyte.io>
Co-Authored-By: AJ Steers <aj@airbyte.io>
…e-release checks Co-Authored-By: AJ Steers <aj@airbyte.io>
Co-Authored-By: AJ Steers <aj@airbyte.io>
Contributor
|
Deploy preview for airbyte-docs ready! ✅ Preview Built with commit 383a489. |
…ck is non-required) Co-Authored-By: AJ Steers <aj@airbyte.io>
Co-Authored-By: AJ Steers <aj@airbyte.io>
… pre-release check) Co-Authored-By: AJ Steers <aj@airbyte.io>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a new
source-smoke-testconnector scaffold in the monorepo. This connector generates synthetic test data for destination regression testing (type variations, null handling, naming edge cases, schema variations, batch sizes).All business logic lives in PyAirbyte's
airbyte.cli.smoke_test_sourcemodule (shipped in PyAirbyte v0.41.0). This monorepo connector is intentionally a thin wrapper that delegates to it.Related:
How
Minimal connector scaffold following existing conventions (modeled after
source-faker):source_smoke_test/run.py— importsSourceSmokeTestfrom PyAirbyte and launches viaairbyte_cdk.entrypointpyproject.toml— declaresairbyte >= 0.41.0+airbyte-cdk >= 6.0.0(CDK is a transitive dep of PyAirbyte; declared explicitly to satisfy the monorepo's pre-release CDK version check)metadata.yaml— alpha release stage, enabled in both OSS and Cloud registries, PyPI publishing declareddocs/integrations/sources/smoke-test.md— user-facing documentation with stream catalog and changelogicon.svgReview guide
metadata.yaml— VerifydefinitionId(4eb59af1-...) is unique and doesn't collide with existing connectors. Registry is enabled for both OSS and Cloud. PyPI package name isairbyte-source-smoke-test(does not yet exist on PyPI).pyproject.toml— Pinsairbyte >= 0.41.0(the version that ships the smoke test source module). Also declaresairbyte-cdk >= 6.0.0as a direct dependency — this is redundant at runtime (PyAirbyte already depends onairbyte-cdk >=7.3.9,<8.0.0) but required to pass the monorepo'sdetect-python-cdk.py --detect-prereleasecheck. The loose lower bound is intentional since PyAirbyte controls the actual CDK version.source_smoke_test/run.py— Importsairbyte_cdk.entrypoint.launchdirectly. The CDK is provided transitively byairbyte(PyAirbyte).Human Review Checklist
definitionId4eb59af1-e69b-4849-84f0-5d81cc5ce490does not collide with any existing connectorairbyte-source-smoke-testis available / intendedUser Impact
Connector will be registered in both OSS and Cloud at alpha stage. It generates synthetic data only and has no external dependencies or side effects.
Can this PR be safely reverted and rolled back?
Link to Devin session: https://app.devin.ai/sessions/9c72389579884c06bf18cef11c4550e8
Requested by: Aaron ("AJ") Steers (@aaronsteers)