-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain_test.go
158 lines (156 loc) · 3.55 KB
/
main_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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package main
import "testing"
func TestConfigRejectionCondition(t *testing.T) {
cfg := config{
RejectionConditions: []RejectionCondition{
{
App: "my-app",
Version: "0.1.0",
},
{
App: "my-app",
Label: "0.1.1",
},
{
App: "my-app",
Version: "0.1.2",
Label: "nightly",
Reason: "no nightlies",
},
{
App: "block-my-app",
},
{
UserTextMatch: "(\\w{4}\\s){11}\\w{4}",
Reason: "it matches a recovery key and recovery keys are private",
},
},
}
rejectPayloads := []payload{
{
AppName: "my-app",
Data: map[string]string{
"Version": "0.1.0",
// Hack add how we expect the rageshake to be rejected to the test
// The actual data in a rageshake has no ExpectedRejectReason field
"ExpectedRejectReason": "app or user text rejected",
},
},
{
AppName: "my-app",
Data: map[string]string{
"ExpectedRejectReason": "app or user text rejected",
},
Labels: []string{"0.1.1"},
},
{
AppName: "my-app",
Labels: []string{"foo", "nightly"},
Data: map[string]string{
"Version": "0.1.2",
"ExpectedRejectReason": "no nightlies",
},
},
{
AppName: "block-my-app",
Data: map[string]string{
"ExpectedRejectReason": "app or user text rejected",
},
},
{
AppName: "block-my-app",
Labels: []string{"foo"},
Data: map[string]string{
"ExpectedRejectReason": "app or user text rejected",
},
},
{
AppName: "block-my-app",
Data: map[string]string{
"Version": "42",
"ExpectedRejectReason": "app or user text rejected",
},
},
{
AppName: "block-my-app",
Labels: []string{"foo"},
Data: map[string]string{
"Version": "42",
"ExpectedRejectReason": "app or user text rejected",
},
},
{
AppName: "my-app",
UserText: "Looks like a recover key abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd",
Data: map[string]string{
"ExpectedRejectReason": "it matches a recovery key and recovery keys are private",
},
},
}
for _, p := range rejectPayloads {
reject := cfg.matchesRejectionCondition(&p)
if reject != nil {
if *reject != p.Data["ExpectedRejectReason"] {
t.Errorf("payload was rejected with the wrong reason:\n payload=%+v\nconfig=%+v", p, cfg)
}
}
if reject == nil {
t.Errorf("payload was accepted when it should be rejected:\n payload=%+v\nconfig=%+v", p, cfg)
}
}
acceptPayloads := []payload{
{
AppName: "different-app",
Data: map[string]string{
"Version": "0.1.0",
},
},
{
AppName: "different-app",
Data: map[string]string{},
Labels: []string{"0.1.1"},
},
{
AppName: "different-app",
Labels: []string{"foo", "nightly"},
Data: map[string]string{
"Version": "0.1.2",
},
},
{
AppName: "my-app",
Data: map[string]string{
"Version": "0.1.0-suffix",
},
},
{
AppName: "my-app",
Data: map[string]string{},
Labels: []string{"0.1.1-suffix"},
},
{
AppName: "my-app",
Labels: []string{"foo", "nightly-suffix"},
Data: map[string]string{
"Version": "0.1.2",
},
},
{ // version matches but label does not (it's Label AND Version not OR)
AppName: "my-app",
Labels: []string{"foo"},
Data: map[string]string{
"Version": "0.1.2",
},
},
{
AppName: "my-app",
UserText: "Some description",
},
}
for _, p := range acceptPayloads {
reject := cfg.matchesRejectionCondition(&p)
if reject != nil {
t.Errorf("payload was rejected when it should be accepted:\n payload=%+v\nconfig=%+v", p, cfg)
}
}
}