-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfields_test.go
55 lines (49 loc) · 1.02 KB
/
fields_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package meter_test
import (
"testing"
meter "github.com/alxarch/go-meter/v2"
)
func TestFields_MatchSorted(t *testing.T) {
{
match := meter.Fields{
{Label: "color", Value: "blue"},
}
fields := meter.Fields{
{Label: "color", Value: "blue"},
{Label: "taste", Value: "sour"},
}
ok := fields.MatchSorted(match)
if !ok {
t.Errorf("No match")
}
}
{
match := meter.Fields{
{Label: "color", Value: "blue"},
{Label: "color", Value: "green"},
{Label: "taste", Value: "bitter"},
}
fields := meter.Fields{
{Label: "color", Value: "green"},
{Label: "shape", Value: "round"},
{Label: "taste", Value: "bitter"},
}
if !fields.MatchSorted(match) {
t.Errorf("No match")
}
}
{
match := meter.Fields{
{Label: "color", Value: "blue"},
{Label: "color", Value: "green"},
{Label: "taste", Value: "bitter"},
}
fields := meter.Fields{
{Label: "color", Value: "green"},
{Label: "taste", Value: "sweet"},
}
if fields.MatchSorted(match) {
t.Errorf("Invalid match")
}
}
}