-
Notifications
You must be signed in to change notification settings - Fork 2
/
app_protection_test.go
87 lines (69 loc) · 1.54 KB
/
app_protection_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
package deploygate
import (
"net/http"
"testing"
"github.com/dnaeon/go-vcr/cassette"
"github.com/dnaeon/go-vcr/recorder"
)
func Test_EnableAppProtection(t *testing.T) {
t.Parallel()
conf := setUpConfigForTest()
c, err := NewClient(conf)
if err != nil {
t.Fatal(err)
}
r, err := recorder.New("fixtures/app/enable_app_protection")
if err != nil {
t.Fatal(err)
}
r.AddSaveFilter(func(i *cassette.Interaction) error {
delete(i.Request.Headers, "Authorization")
i.Response.Headers = make(http.Header)
return nil
})
c.HttpClient.Transport = r
defer r.Stop()
resp, err := c.EnableAppProtection(&EnableAppProtectionRequest{
Owner: "f-naoto832",
Platform: "android",
AppId: "com.deploygate.sample",
Revision: 1,
})
if err != nil {
t.Fatal(err)
}
if resp.Error {
t.Error("response caused error")
}
}
func Test_DisableAppProtection(t *testing.T) {
t.Parallel()
conf := setUpConfigForTest()
c, err := NewClient(conf)
if err != nil {
t.Fatal(err)
}
r, err := recorder.New("fixtures/app/disable_app_protection")
if err != nil {
t.Fatal(err)
}
r.AddSaveFilter(func(i *cassette.Interaction) error {
delete(i.Request.Headers, "Authorization")
i.Response.Headers = make(http.Header)
return nil
})
c.HttpClient.Transport = r
defer r.Stop()
resp, err := c.DisableAppProtection(&DisableAppProtectionRequest{
Owner: "f-naoto832",
Platform: "android",
AppId: "com.deploygate.sample",
Revision: 1,
})
if err != nil {
t.Fatal(err)
}
if resp.Error {
t.Error("response caused error")
}
}