-
Notifications
You must be signed in to change notification settings - Fork 0
feat(features): support scoped 'features disable' #246
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 all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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,60 @@ | ||
| package actions | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "github.com/cego/gitte/config" | ||
| "github.com/cego/gitte/state" | ||
| ) | ||
|
|
||
| // TestExtraEnvForProject_OverrideCannotBroadenConfigScope guards against a scoped | ||
| // `features disable` (or the TUI scope editor) reconstructing an OverrideScope that | ||
| // matches projects outside the gate's configured scope. The override may only narrow | ||
| // the config scope, never broaden it. | ||
| func TestExtraEnvForProject_OverrideCannotBroadenConfigScope(t *testing.T) { | ||
| cfg := &config.GitteConfig{ | ||
| FeatureGates: map[string]config.FeatureGate{ | ||
| "hot": { | ||
| Scope: config.FeatureScope{Projects: []string{"svc-a", "svc-b"}}, | ||
| Effects: config.FeatureEffects{Env: map[string]string{"FOO": "bar"}}, | ||
| }, | ||
| }, | ||
| Projects: map[string]config.ProjectConfig{ | ||
| "svc-a": {Remote: "git@gitlab.example.com:myorg/services/svc-a.git"}, | ||
| "svc-b": {Remote: "git@gitlab.example.com:myorg/services/svc-b.git"}, | ||
| "other": {Remote: "git@gitlab.example.com:myorg/tools/other.git"}, | ||
| }, | ||
| } | ||
|
|
||
| // Simulates the state after `disable hot --project svc-a`: the reconstruction | ||
| // collapses the remaining projects into the top-level "myorg" group excluding | ||
| // svc-a — a group that also covers myorg/tools/other, which was never in scope. | ||
| st := &state.GitteState{ | ||
| Features: map[string]state.FeatureState{ | ||
| "hot": { | ||
| Enabled: true, | ||
| OverrideScope: &state.ScopeOverride{ | ||
| GitlabGroups: []state.ScopeOverrideGroup{ | ||
| {Host: "gitlab.example.com", Group: "myorg", ExcludeProjects: []string{"svc-a"}}, | ||
| }, | ||
| }, | ||
| }, | ||
| }, | ||
| } | ||
|
|
||
| cases := []struct { | ||
| proj string | ||
| wantEnv bool | ||
| }{ | ||
| {"svc-b", true}, // still in scope and not excluded | ||
| {"svc-a", false}, // in config scope but excluded by the override | ||
| {"other", false}, // NEVER in config scope — must not be broadened in | ||
| } | ||
|
|
||
| for _, tc := range cases { | ||
| env := extraEnvForProject(cfg, st, tc.proj, cfg.Projects[tc.proj]) | ||
| if got := env["FOO"] == "bar"; got != tc.wantEnv { | ||
| t.Errorf("%s: got env=%v, want %v (env=%v)", tc.proj, got, tc.wantEnv, env) | ||
| } | ||
| } | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.