-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9785 from jmguzik/unification-of-label-filter
Unification of label and until filters across list/prune endpoints
- Loading branch information
Showing
8 changed files
with
152 additions
and
117 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package util | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestMatchLabelFilters(t *testing.T) { | ||
testLabels := map[string]string{ | ||
"label1": "", | ||
"label2": "test", | ||
"label3": "", | ||
} | ||
type args struct { | ||
filterValues []string | ||
labels map[string]string | ||
} | ||
tests := []struct { | ||
name string | ||
args args | ||
want bool | ||
}{ | ||
{ | ||
name: "Match when all filters the same as labels", | ||
args: args{ | ||
filterValues: []string{"label1", "label3", "label2=test"}, | ||
labels: testLabels, | ||
}, | ||
want: true, | ||
}, | ||
{ | ||
name: "Match when filter value not provided in args", | ||
args: args{ | ||
filterValues: []string{"label2"}, | ||
labels: testLabels, | ||
}, | ||
want: true, | ||
}, | ||
{ | ||
name: "Match when no filter value is given", | ||
args: args{ | ||
filterValues: []string{"label2="}, | ||
labels: testLabels, | ||
}, | ||
want: true, | ||
}, | ||
{ | ||
name: "Do not match when filter value differs", | ||
args: args{ | ||
filterValues: []string{"label2=differs"}, | ||
labels: testLabels, | ||
}, | ||
want: false, | ||
}, | ||
{ | ||
name: "Do not match when filter value not listed in labels", | ||
args: args{ | ||
filterValues: []string{"label1=xyz"}, | ||
labels: testLabels, | ||
}, | ||
want: false, | ||
}, | ||
{ | ||
name: "Do not match when one from many not ok", | ||
args: args{ | ||
filterValues: []string{"label1=xyz", "invalid=valid"}, | ||
labels: testLabels, | ||
}, | ||
want: false, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
tt := tt | ||
t.Run(tt.name, func(t *testing.T) { | ||
if got := MatchLabelFilters(tt.args.filterValues, tt.args.labels); got != tt.want { | ||
t.Errorf("MatchLabelFilters() = %v, want %v", got, tt.want) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestComputeUntilTimestamp(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
args []string | ||
wantErr bool | ||
}{ | ||
{ | ||
name: "Return error when more values in list", | ||
args: []string{"5h", "6s"}, | ||
wantErr: true, | ||
}, | ||
{ | ||
name: "Return error when invalid time", | ||
args: []string{"invalidTime"}, | ||
wantErr: true, | ||
}, | ||
{ | ||
name: "Do not return error when correct time format supplied", | ||
args: []string{"44m"}, | ||
wantErr: false, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
tt := tt | ||
t.Run(tt.name, func(t *testing.T) { | ||
_, err := ComputeUntilTimestamp(tt.args) | ||
if (err != nil) != tt.wantErr { | ||
t.Errorf("ComputeUntilTimestamp() error = %v, wantErr %v", err, tt.wantErr) | ||
return | ||
} | ||
}) | ||
} | ||
} |