forked from ktrysmt/go-bitbucket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploykeys_test.go
202 lines (171 loc) · 5.34 KB
/
deploykeys_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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package tests
import (
"fmt"
"os"
"testing"
_ "github.com/k0kubun/pp"
"github.com/diggerhq/go-bitbucket"
)
func TestDeployKey(t *testing.T) {
user := os.Getenv("BITBUCKET_TEST_USERNAME")
pass := os.Getenv("BITBUCKET_TEST_PASSWORD")
owner := os.Getenv("BITBUCKET_TEST_OWNER")
repo := os.Getenv("BITBUCKET_TEST_REPOSLUG")
if user == "" {
t.Error("BITBUCKET_TEST_USERNAME is empty.")
}
if pass == "" {
t.Error("BITBUCKET_TEST_PASSWORD is empty.")
}
if owner == "" {
t.Error("BITBUCKET_TEST_OWNER is empty.")
}
if repo == "" {
t.Error("BITBUCKET_TEST_REPOSLUG is empty.")
}
c := bitbucket.NewBasicAuth(user, pass)
var deployKeyResourceId int
label := "go-bb-test"
key := "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5"
t.Run("create", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Label: label,
Key: key,
}
deployKey, err := c.Repositories.DeployKeys.Create(opt)
if err != nil {
t.Error(err)
}
if deployKey == nil {
t.Error("The Deploy Key could not be created.")
}
if deployKey.Label != label {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Key != key {
t.Error("The Deploy Key `key` attribute does not match the expected value.")
}
deployKeyResourceId = deployKey.Id
})
t.Run("get", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Id: deployKeyResourceId,
}
deployKey, err := c.Repositories.DeployKeys.Get(opt)
if err != nil {
t.Error(err)
}
if deployKey == nil {
t.Error("The Deploy Key could not be retrieved.")
}
if deployKey.Id != deployKeyResourceId {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Label != label {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Key != key {
t.Error("The Deploy Key `key` attribute does not match the expected value.")
}
})
t.Run("delete", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Id: deployKeyResourceId,
}
_, err := c.Repositories.DeployKeys.Delete(opt)
if err != nil {
t.Error(err)
}
})
}
func TestDeployKeyWithComment(t *testing.T) {
user := os.Getenv("BITBUCKET_TEST_USERNAME")
pass := os.Getenv("BITBUCKET_TEST_PASSWORD")
owner := os.Getenv("BITBUCKET_TEST_OWNER")
repo := os.Getenv("BITBUCKET_TEST_REPOSLUG")
if user == "" {
t.Error("BITBUCKET_TEST_USERNAME is empty.")
}
if pass == "" {
t.Error("BITBUCKET_TEST_PASSWORD is empty.")
}
if owner == "" {
t.Error("BITBUCKET_TEST_OWNER is empty.")
}
if repo == "" {
t.Error("BITBUCKET_TEST_REPOSLUG is empty.")
}
c := bitbucket.NewBasicAuth(user, pass)
var deployKeyResourceId int
label := "go-bb-test"
key := "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5"
comment := "key@example.com"
t.Run("create", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Label: label,
Key: fmt.Sprintf("%s %s", key, comment),
}
deployKey, err := c.Repositories.DeployKeys.Create(opt)
if err != nil {
t.Error(err)
}
if deployKey == nil {
t.Error("The Deploy Key could not be created.")
}
if deployKey.Label != label {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Key != key {
t.Error("The Deploy Key `key` attribute does not match the expected value.")
}
if deployKey.Comment != comment {
t.Error("The Deploy Key `comment` attribute does not match the expected value.")
}
deployKeyResourceId = deployKey.Id
})
t.Run("get", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Id: deployKeyResourceId,
}
deployKey, err := c.Repositories.DeployKeys.Get(opt)
if err != nil {
t.Error(err)
}
if deployKey == nil {
t.Error("The Deploy Key could not be retrieved.")
}
if deployKey.Id != deployKeyResourceId {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Label != label {
t.Error("The Deploy Key `label` attribute does not match the expected value.")
}
if deployKey.Key != key {
t.Error("The Deploy Key `key` attribute does not match the expected value.")
}
if deployKey.Comment != comment {
t.Error("The Deploy Key `comment` attribute does not match the expected value.")
}
})
t.Run("delete", func(t *testing.T) {
opt := &bitbucket.DeployKeyOptions{
Owner: owner,
RepoSlug: repo,
Id: deployKeyResourceId,
}
_, err := c.Repositories.DeployKeys.Delete(opt)
if err != nil {
t.Error(err)
}
})
}