-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhmac_ruby_test.go
160 lines (156 loc) · 6.35 KB
/
hmac_ruby_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
package goutils
import (
"net/url"
"os/exec"
"strconv"
"testing"
"time"
. "github.com/smartystreets/goconvey/convey"
)
var test_tmp string
func Test_HMAC_ruby(t *testing.T) {
MyConvey("URL 0 OK", t, func() {
url := "http://www.eklenet.de"
pass := "geheim"
cur := time.Now().Unix()
var cur32 = int32(cur)
So(int64(cur32), ShouldEqual, cur)
ttl := 30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
})
MyConvey("URL 0_ OK", t, func() {
url := "/?abbes=abc&" + DATE + "123" + SIG + "abc&def=xyz"
pass := "geheim"
cur := time.Now().Unix()
ttl := 30000
endoflife := int(cur) + ttl
surl := HMAC.SignUrl(url, pass, endoflife)
So(HMAC.Validate(surl, pass), ShouldEqual, true)
})
MyConvey("URL 0a OK", t, func() {
url := "http://dev.doz.io:4080/info.json?url=https%3A%2F%2Fdemo.dozeoapp.com.dev.doz.io%2Fmeetings%2F50340910-96f1-0131-8282-7214ed8242fc%2Fattachments%2Fshow%3Fauth%5Bdate%5D%3DWed%252C%252026%2520Mar%25202014%252009%253A08%253A43%2520GMT%26auth%5Bsignature%5D%3D5cfc250f6ddfda5ed0e37d036ec8a6b8a8744a0c%26file%3De8d32e881c8c01bf036353154d3d2517b150cbee"
pass := "geheim"
cur := time.Now().Unix()
ttl := 30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
})
MyConvey("URL Double 1", t, func() {
url := "https://demo.dozeoapp.com.dev.doz.io/meetings/50340910-96f1-0131-8282-7214ed8242fc/attachments/show?file=e8d32e881c8c01bf036353154d3d2517b150cbee"
pass := "geheim"
cur := time.Now().Unix()
ttl := 30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
test_tmp = string(out)
})
MyConvey("URL Double 2", t, func() {
url := "http://dev.doz.io:4080/info.json?url=" + url.QueryEscape(test_tmp)
pass := "geheim"
cur := time.Now().Unix()
ttl := 30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
})
MyConvey("URL Double 3", t, func() {
url := "http://dev.doz.io:4080/info.json?url=" + url.QueryEscape(test_tmp) + "&page=1&size=50"
pass := "geheim"
cur := time.Now().Unix()
ttl := 30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
})
MyConvey("URL 1 OUTDATED", t, func() {
url := "http://www.eklenet.de"
pass := "geheim"
cur := time.Now().Unix()
ttl := -30000
endoflife := int(cur) + ttl
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(endoflife)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, endoflife), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, false)
})
MyConvey("URL 2 OK /", t, func() {
url := "http://www.eklenet.de/"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(true, ShouldEqual, HMAC.Validate(string(out), pass))
})
MyConvey("URL 3 OK /abc", t, func() {
url := "http://www.eklenet.de/abc"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(true, ShouldEqual, HMAC.Validate(string(out), pass))
})
MyConvey("URL 4 OK /abc/", t, func() {
url := "http://www.eklenet.de/abc/"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(true, ShouldEqual, HMAC.Validate(string(out), pass))
})
MyConvey("URL 5 OK /abc/def?xyz=123&ok=no", t, func() {
url := "http://www.eklenet.de/abc/def?xyz=123&ok=no"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(HMAC.Validate(string(out), pass), ShouldEqual, true)
})
MyConvey("URL 6 OK /abc/def?ok=no&xyz=123 (switched)", t, func() {
url := "http://www.eklenet.de/abc/def?ok=no&xyz=123"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(true, ShouldEqual, HMAC.Validate(string(out), pass))
})
MyConvey("URL 7 OK /abc/def?ok=no&xyz=123#what", t, func() {
url := "http://www.eklenet.de/abc/def?ok=no&xyz=123#what"
pass := "geheim"
ttl := int(time.Now().Unix()) + 30
out, err := exec.Command("ruby", "hmac_test/ref.rb", url, pass, strconv.Itoa(ttl)).Output()
So(nil, ShouldEqual, err)
So(HMAC.SignUrl(url, pass, ttl), ShouldEqual, string(out))
So(true, ShouldEqual, HMAC.Validate(string(out), pass))
})
MyConvey("URL 8 OK /abc/def?ok=no&xyz=123#what", t, func() {
url := "http://www.eklenet.de/abc/def?ok=no&xyz=123#what"
pass := "geheim"
surl := HMAC.SignUrl(url, pass, 30)
So(true, ShouldEqual, HMAC.Validate(surl, pass))
})
MyConvey("URL 9 OK /abc/def?ok=no&xyz=123#what (switched)", t, func() {
url := "http://www.eklenet.de/abc/def?ok=no&xyz=123#what"
pass := "geheim"
surl := HMAC.SignUrl(url, pass, 30)
So(true, ShouldNotEqual, HMAC.Validate("_"+surl, pass))
})
}