forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorization_test.go
226 lines (197 loc) · 7.91 KB
/
authorization_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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package storage
import (
"encoding/base64"
"net/http"
chk "gopkg.in/check.v1"
)
type AuthorizationSuite struct{}
var _ = chk.Suite(&AuthorizationSuite{})
func (a *AuthorizationSuite) Test_addAuthorizationHeader(c *chk.C) {
cli, err := NewBasicClient("mindgotest", "zHDHGs7C+Di9pZSDMuarxJJz3xRBzAHBYaobxpLEc7kwTptR/hPEa9j93hIfb2Tbe9IA50MViGmjQ6nUF/OVvA==")
c.Assert(err, chk.IsNil)
cli.UseSharedKeyLite = true
tableCli := cli.GetTableService()
headers := map[string]string{
"Accept-Charset": "UTF-8",
headerContentType: "application/json",
headerXmsDate: "Wed, 23 Sep 2015 16:40:05 GMT",
headerContentLength: "0",
headerXmsVersion: "2015-02-21",
"Accept": "application/json;odata=nometadata",
}
url := "https://mindgotest.table.core.windows.net/tquery()"
headers, err = tableCli.client.addAuthorizationHeader("", url, headers, tableCli.auth)
c.Assert(err, chk.IsNil)
c.Assert(headers[headerAuthorization], chk.Equals, "SharedKeyLite mindgotest:+32DTgsPUgXPo/O7RYaTs0DllA6FTXMj3uK4Qst8y/E=")
}
func (a *AuthorizationSuite) Test_getSharedKey(c *chk.C) {
// Shared Key Lite for Tables
cli, err := NewBasicClient("mindgotest", "zHDHGs7C+Di9pZSDMuarxJJz3xRBzAHBYaobxpLEc7kwTptR/hPEa9j93hIfb2Tbe9IA50MViGmjQ6nUF/OVvA==")
c.Assert(err, chk.IsNil)
headers := map[string]string{
"Accept-Charset": "UTF-8",
headerContentType: "application/json",
headerXmsDate: "Wed, 23 Sep 2015 16:40:05 GMT",
headerContentLength: "0",
headerXmsVersion: "2015-02-21",
"Accept": "application/json;odata=nometadata",
}
url := "https://mindgotest.table.core.windows.net/tquery()"
key, err := cli.getSharedKey("", url, headers, sharedKeyLiteForTable)
c.Assert(err, chk.IsNil)
c.Assert(key, chk.Equals, "SharedKeyLite mindgotest:+32DTgsPUgXPo/O7RYaTs0DllA6FTXMj3uK4Qst8y/E=")
}
func (a *AuthorizationSuite) Test_buildCanonicalizedResource(c *chk.C) {
cli, err := NewBasicClient("foo", "YmFy")
c.Assert(err, chk.IsNil)
type test struct {
url string
auth authentication
expected string
}
tests := []test{
// Shared Key
{"https://foo.blob.core.windows.net/path?a=b&c=d", sharedKey, "/foo/path\na:b\nc:d"},
{"https://foo.blob.core.windows.net/?comp=list", sharedKey, "/foo/\ncomp:list"},
{"https://foo.blob.core.windows.net/cnt/blob", sharedKey, "/foo/cnt/blob"},
{"https://foo.blob.core.windows.net/cnt/bl ob", sharedKey, "/foo/cnt/bl%20ob"},
{"https://foo.blob.core.windows.net/c nt/blob", sharedKey, "/foo/c%20nt/blob"},
{"https://foo.blob.core.windows.net/cnt/blob%3F%23%5B%5D%21$&%27%28%29%2A blob", sharedKey, "/foo/cnt/blob%3F%23%5B%5D%21$&%27%28%29%2A%20blob"},
{"https://foo.blob.core.windows.net/cnt/blob-._~:,@;+=blob", sharedKey, "/foo/cnt/blob-._~:,@;+=blob"},
{"https://foo.blob.core.windows.net/c nt/blob-._~:%3F%23%5B%5D@%21$&%27%28%29%2A,;+=/blob", sharedKey, "/foo/c%20nt/blob-._~:%3F%23%5B%5D@%21$&%27%28%29%2A,;+=/blob"},
// Shared Key Lite for Table
{"https://foo.table.core.windows.net/mytable", sharedKeyLiteForTable, "/foo/mytable"},
{"https://foo.table.core.windows.net/mytable?comp=acl", sharedKeyLiteForTable, "/foo/mytable?comp=acl"},
{"https://foo.table.core.windows.net/mytable?comp=acl&timeout=10", sharedKeyForTable, "/foo/mytable?comp=acl"},
{"https://foo.table.core.windows.net/mytable(PartitionKey='pkey',RowKey='rowkey%3D')", sharedKeyForTable, "/foo/mytable(PartitionKey='pkey',RowKey='rowkey%3D')"},
}
for _, t := range tests {
out, err := cli.buildCanonicalizedResource(t.url, t.auth)
c.Assert(err, chk.IsNil)
c.Assert(out, chk.Equals, t.expected)
}
}
func (a *AuthorizationSuite) Test_buildCanonicalizedString(c *chk.C) {
var tests = []struct {
verb string
headers map[string]string
canonicalizedResource string
auth authentication
out string
}{
{
// Shared Key
verb: http.MethodGet,
headers: map[string]string{
headerXmsDate: "Sun, 11 Oct 2009 21:49:13 GMT",
headerXmsVersion: "2009-09-19",
},
canonicalizedResource: "/myaccount/ mycontainer\ncomp:metadata\nrestype:container\ntimeout:20",
auth: sharedKey,
out: "GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 11 Oct 2009 21:49:13 GMT\nx-ms-version:2009-09-19\n/myaccount/ mycontainer\ncomp:metadata\nrestype:container\ntimeout:20",
},
{
// Shared Key for Tables
verb: http.MethodPut,
headers: map[string]string{
headerContentType: "text/plain; charset=UTF-8",
headerDate: "Sun, 11 Oct 2009 19:52:39 GMT",
},
canonicalizedResource: "/testaccount1/Tables",
auth: sharedKeyForTable,
out: "PUT\n\ntext/plain; charset=UTF-8\nSun, 11 Oct 2009 19:52:39 GMT\n/testaccount1/Tables",
},
{
// Shared Key Lite
verb: http.MethodPut,
headers: map[string]string{
headerContentType: "text/plain; charset=UTF-8",
headerXmsDate: "Sun, 20 Sep 2009 20:36:40 GMT",
"x-ms-meta-m1": "v1",
"x-ms-meta-m2": "v2",
},
canonicalizedResource: "/testaccount1/mycontainer/hello.txt",
auth: sharedKeyLite,
out: "PUT\n\ntext/plain; charset=UTF-8\n\nx-ms-date:Sun, 20 Sep 2009 20:36:40 GMT\nx-ms-meta-m1:v1\nx-ms-meta-m2:v2\n/testaccount1/mycontainer/hello.txt",
},
{
// Shared Key Lite for Tables
verb: "",
headers: map[string]string{
headerDate: "Sun, 11 Oct 2009 19:52:39 GMT",
},
canonicalizedResource: "/testaccount1/Tables",
auth: sharedKeyLiteForTable,
out: "Sun, 11 Oct 2009 19:52:39 GMT\n/testaccount1/Tables",
},
}
for _, t := range tests {
canonicalizedString, err := buildCanonicalizedString(t.verb, t.headers, t.canonicalizedResource, t.auth)
c.Assert(err, chk.IsNil)
c.Assert(canonicalizedString, chk.Equals, t.out)
}
}
func (a *AuthorizationSuite) Test_buildCanonicalizedHeader(c *chk.C) {
type test struct {
headers map[string]string
expected string
}
tests := []test{
{map[string]string{},
""},
{map[string]string{
"x-ms-foo": "bar"},
"x-ms-foo:bar"},
{map[string]string{
"foo:": "bar"},
""},
{map[string]string{
"foo:": "bar",
"x-ms-foo": "bar"},
"x-ms-foo:bar"},
{map[string]string{
"x-ms-version": "9999-99-99",
"x-ms-blob-type": "BlockBlob"},
"x-ms-blob-type:BlockBlob\nx-ms-version:9999-99-99"}}
for _, i := range tests {
c.Assert(buildCanonicalizedHeader(i.headers), chk.Equals, i.expected)
}
}
func (a *AuthorizationSuite) Test_createAuthorizationHeader(c *chk.C) {
cli, err := NewBasicClient("foo", base64.StdEncoding.EncodeToString([]byte("bar")))
c.Assert(err, chk.IsNil)
canonicalizedString := `foobarzoo`
c.Assert(cli.createAuthorizationHeader(canonicalizedString, sharedKey),
chk.Equals, `SharedKey foo:h5U0ATVX6SpbFX1H6GNuxIMeXXCILLoIvhflPtuQZ30=`)
c.Assert(cli.createAuthorizationHeader(canonicalizedString, sharedKeyLite),
chk.Equals, `SharedKeyLite foo:h5U0ATVX6SpbFX1H6GNuxIMeXXCILLoIvhflPtuQZ30=`)
}
func (a *AuthorizationSuite) Test_allSharedKeys(c *chk.C) {
cli := getBasicClient(c)
blobCli := cli.GetBlobService()
tableCli := cli.GetTableService()
cnt1 := randContainer()
cnt2 := randContainer()
tn1 := AzureTable(randTable())
tn2 := AzureTable(randTable())
// Shared Key
c.Assert(blobCli.auth, chk.Equals, sharedKey)
c.Assert(blobCli.CreateContainer(cnt1, ContainerAccessTypePrivate), chk.IsNil)
c.Assert(blobCli.DeleteContainer(cnt1), chk.IsNil)
// Shared Key for Tables
c.Assert(tableCli.auth, chk.Equals, sharedKeyForTable)
c.Assert(tableCli.CreateTable(tn1), chk.IsNil)
c.Assert(tableCli.DeleteTable(tn1), chk.IsNil)
// Change to Lite
cli.UseSharedKeyLite = true
blobCli = cli.GetBlobService()
tableCli = cli.GetTableService()
// Shared Key Lite
c.Assert(blobCli.auth, chk.Equals, sharedKeyLite)
c.Assert(blobCli.CreateContainer(cnt2, ContainerAccessTypeBlob), chk.IsNil)
c.Assert(blobCli.DeleteContainer(cnt2), chk.IsNil)
// Shared Key Lite for Tables
c.Assert(tableCli.auth, chk.Equals, sharedKeyLiteForTable)
c.Assert(tableCli.CreateTable(tn2), chk.IsNil)
c.Assert(tableCli.DeleteTable(tn2), chk.IsNil)
}