-
Notifications
You must be signed in to change notification settings - Fork 31
chore: adds FDv2 contract tests to CI #884
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
2f4e25d
chore: adds FDv2 contract tests to CI
tanderson-ld d37d605
tweaking when test service is stopped
tanderson-ld 427c025
Merge branch 'main' into ta/SDK-1318/run-fdv2-contract-tests-ci
tanderson-ld 185b2b3
Merge branch 'main' into ta/SDK-1318/run-fdv2-contract-tests-ci
tanderson-ld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,8 +37,19 @@ jobs: | |
| run: yarn contract-test-service-build | ||
| - name: Launch the test service in the background | ||
| run: yarn contract-test-service 2>&1 & | ||
| - name: Clone and run contract tests from feat/fdv2 branch | ||
| run: | | ||
| mkdir -p /tmp/sdk-test-harness | ||
| git clone https://github.com/launchdarkly/sdk-test-harness.git /tmp/sdk-test-harness | ||
| cp ./contract-tests/testharness-suppressions-fdv2.txt /tmp/sdk-test-harness/testharness-suppressions-fdv2.txt | ||
| cd /tmp/sdk-test-harness | ||
| git checkout feat/fdv2 | ||
| go build -o test-harness . | ||
| ./test-harness -url http://localhost:8000 -debug --skip-from=testharness-suppressions-fdv2.txt | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| - uses: launchdarkly/gh-actions/actions/[email protected] | ||
| with: | ||
| test_service_port: 8000 | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
| extra_params: '--skip-from=./contract-tests/testharness-suppressions.txt' | ||
| extra_params: '--skip-from=./contract-tests/testharness-suppressions.txt -stop-service-at-end' | ||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| streaming/validation/drop and reconnect if stream event has malformed JSON | ||
| streaming/validation/drop and reconnect if stream event has well-formed JSON not matching schema | ||
| streaming/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has no trailing slash/GET | ||
| streaming/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has a trailing slash/GET | ||
| polling/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has no trailing slash/GET | ||
| polling/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has a trailing slash/GET | ||
|
|
||
| streaming/fdv2/reconnection state management/initializes from polling initializer | ||
| streaming/fdv2/reconnection state management/initializes from 2 polling initializers | ||
| streaming/fdv2/reconnection state management/saves previously known state | ||
| streaming/fdv2/reconnection state management/replaces previously known state | ||
| streaming/fdv2/reconnection state management/updates previously known state | ||
| streaming/fdv2/ignores model version | ||
| streaming/fdv2/can discard partial events on errors |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,7 +30,7 @@ export default class OneShotInitializerFDv2 implements subsystemCommon.DataSourc | |
| statusCallback(subsystemCommon.DataSourceState.Initializing); | ||
|
|
||
| this._logger?.debug('Performing initialization request to LaunchDarkly for feature flag data.'); | ||
| this._requestor.requestAllData((err, body) => { | ||
| this._requestor.requestAllData((err, body, headers) => { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For reviewers: Realized env id wasn't being piped through in the one shot initializer, so fixed that. |
||
| if (this._stopped) { | ||
| return; | ||
| } | ||
|
|
@@ -57,6 +57,8 @@ export default class OneShotInitializerFDv2 implements subsystemCommon.DataSourc | |
| return; | ||
| } | ||
|
|
||
| const initMetadata = internal.initMetadataFromHeaders(headers); | ||
|
|
||
| try { | ||
| const parsed = JSON.parse(body) as internal.FDv2EventsCollection; | ||
| const payloadProcessor = new internal.PayloadProcessor( | ||
|
|
@@ -82,7 +84,7 @@ export default class OneShotInitializerFDv2 implements subsystemCommon.DataSourc | |
| statusCallback(subsystemCommon.DataSourceState.Valid); | ||
|
|
||
| payloadProcessor.addPayloadListener((payload) => { | ||
| dataCallback(payload.basis, payload); | ||
| dataCallback(payload.basis, { initMetadata, payload }); | ||
| }); | ||
|
|
||
| payloadProcessor.processEvents(parsed.events); | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reviewers: Realized env id wasn't being piped through in the one shot initializer, so fixed that.