-
Notifications
You must be signed in to change notification settings - Fork 11
fix!: flagd, behavioral tests conformance (evaluation and config) #76
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
Open
erenatas
wants to merge
10
commits into
main
Choose a base branch
from
eren/behavioral-conformance-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
67e804f
chore: Update dependencies and fix flaky retry mechanism tests
erenatas 608c65b
run fmt
erenatas 2184d6b
fix clippy warnings/errors
erenatas 6a4fc07
fmt
erenatas 1b26140
gemini comment
erenatas 6f43120
fix: better behavioral test handling
erenatas d55d62e
fix config tests
erenatas f5c6a3b
Add evaluation gherkin tests
erenatas 97f7ab6
Validate file resolver configuration
erenatas 9b604a8
fmt
erenatas 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
Submodule flagd-testbed
updated
31 files
| +2 −2 | .github/workflows/ci.yml | |
| +7 −14 | .github/workflows/release-please.yml | |
| +94 −0 | .release-please-config.json | |
| +2 −2 | .release-please-manifest.json | |
| +175 −0 | CHANGELOG.md | |
| +6 −0 | CODEOWNERS | |
| +69 −25 | README.md | |
| +176 −0 | docker-compose.yaml | |
| +1 −1 | flagd/Dockerfile | |
| +15 −0 | flags/metadata-flags.json | |
| +38 −0 | flags/selector-flag-combined-metadata.json | |
| +56 −0 | flags/testing-flags.json | |
| +64 −0 | flags/zero-flags.json | |
| +31 −0 | gherkin/config.feature | |
| +59 −18 | gherkin/connection.feature | |
| +52 −0 | gherkin/evaluation.feature | |
| +55 −0 | gherkin/metadata.feature | |
| +1 −1 | gherkin/rpc-caching.feature | |
| +28 −0 | gherkin/sync-payload.feature | |
| +7 −6 | gherkin/targeting.feature | |
| +8 −0 | launchpad/configs/metadata.json | |
| +16 −0 | launchpad/configs/sync-payload.json | |
| +1 −1 | launchpad/go.mod | |
| +2 −0 | launchpad/go.sum | |
| +82 −3 | launchpad/handlers/http.go | |
| +50 −1 | launchpad/pkg/filewatcher.go | |
| +49 −9 | launchpad/pkg/flagd.go | |
| +2 −1 | launchpad/pkg/json.go | |
| +0 −65 | release-please-config.json | |
| +11 −4 | renovate.json | |
| +1 −1 | version.txt |
Submodule schemas
updated
27 files
| +2 −2 | .release-please-manifest.json | |
| +1 −1 | CODEOWNERS | |
| +4 −2 | Makefile | |
| +3 −6 | go.mod | |
| +6 −13 | go.sum | |
| +22 −0 | json/CHANGELOG.md | |
| +5 −0 | json/flagd.json | |
| +3 −0 | json/flagd.yaml | |
| +3 −0 | json/flagd_definitions.go | |
| +85 −33 | json/flagd_definitions_test.go | |
| +142 −63 | json/flags.json | |
| +102 −71 | json/flags.yaml | |
| +1 −1 | json/targeting.json | |
| +1 −1 | json/targeting.yaml | |
| +0 −0 | json/test/flagd/negative/.gitkeep | |
| +153 −0 | json/test/flagd/positive/with-array-flags.json | |
| +127 −0 | json/test/flagd/positive/with-object-flags.json | |
| +14 −0 | json/test/flags/negative/with-array-flags.json | |
| +153 −0 | json/test/flags/positive/example.flagdimport.array.json | |
| +127 −0 | json/test/flags/positive/example.flagdimport.map.json | |
| +0 −0 | json/test/flags/positive/no-default-variant.json | |
| +13 −0 | json/test/flags/positive/null-default-variant.json | |
| +12 −0 | json/test/flags/positive/undefined-default-variant.json | |
| +1 −1 | json/version.txt | |
| +25 −244 | package-lock.json | |
| +12 −0 | protobuf/CHANGELOG.md | |
| +10 −2 | protobuf/flagd/sync/v1/sync.proto |
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
Oops, something went wrong.
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.
should we also add a check here that source_configuration needs to be set, if the ResolverType is file?
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.
Thank you very much! I updated it.
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.
i am not sure i can really provide a review - i have no clue about rust, i just saw that this behaviour was missing, but i can give it a shot