forked from atlassian/go-sentry-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrule_test.go
111 lines (91 loc) · 2.35 KB
/
rule_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
package sentry
import (
"encoding/json"
"fmt"
"testing"
)
func TestRuleResource(t *testing.T) {
client := newTestClient(t)
org, err := client.GetOrganization(getDefaultOrg())
if err != nil {
t.Fatal(err)
}
team, cleanup := createTeamHelper(t)
defer cleanup()
project, cleanupproj := createProjectHelper(t, team)
defer cleanupproj()
t.Run("Get all rules for a project", func(t *testing.T) {
rules, err := client.GetRules(org, project)
if err != nil {
t.Error(err)
}
if len(rules) != 1 {
t.Fatalf("Expected a single rule got %d rules", len(rules))
}
fmt.Printf("%+v", rules)
ruleStr := `
{
"actionMatch": "all",
"actions": [
{
"id": "sentry.rules.actions.notify_event_service.NotifyEventServiceAction",
"service": "mail"
}
],
"conditions": [
{
"id": "sentry.rules.conditions.event_frequency.EventFrequencyCondition",
"interval": "1h",
"value": "10"
}
],
"name": "Send Email for Error Burst",
"frequency": 30
}
`
rule := Rule{}
err = json.Unmarshal([]byte(ruleStr), &rule)
if err != nil {
t.Error(err)
}
fmt.Printf("%+v", rule)
newRule, err := client.CreateRule(org, project, rule)
if err != nil {
t.Error(err)
}
if newRule.Actions[0].Id != "sentry.rules.actions.notify_event_service.NotifyEventServiceAction" {
t.Errorf("Expected action to be NotifyEventServiceAction got %s", newRule.Actions[0].Id)
}
condition := newRule.Conditions[0]
if condition.Id != "sentry.rules.conditions.event_frequency.EventFrequencyCondition" {
t.Errorf("Expected condition to be EventFrequencyCondition got %s", condition.Id)
}
if condition.Interval != "1h" {
t.Errorf("Expected interval to be 1h got %s", condition.Interval)
}
if condition.Value != "10" {
t.Errorf("Expected value to be 10 got %s", condition.Value)
}
rules, err = client.GetRules(org, project)
if err != nil {
t.Error(err)
}
if len(rules) != 2 {
t.Fatalf("Expected 2 rules got %d rules", len(rules))
}
err = client.DeleteRule(org, project, newRule.Id)
if err != nil {
t.Error(err)
}
rules, err = client.GetRules(org, project)
if err != nil {
t.Error(err)
}
if len(rules) != 1 {
t.Fatalf("Expected 1 rules got %d rules", len(rules))
}
})
if err := client.DeleteTeam(org, team); err != nil {
t.Error(err)
}
}