-
Notifications
You must be signed in to change notification settings - Fork 5
/
account_test.go
283 lines (276 loc) · 8.77 KB
/
account_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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
package lastpass_test
import (
"context"
"encoding/base64"
"fmt"
"net/http"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/ghttp"
. "github.com/ansd/lastpass-go"
)
var _ = Describe("Account", func() {
var (
client *Client
server *ghttp.Server
user string
passwd string
)
BeforeEach(func() {
user = readFile("user.txt")
passwd = readFile("passwd.txt")
server = ghttp.NewServer()
server.AppendHandlers(
ghttp.CombineHandlers(
ghttp.VerifyRequest(http.MethodPost, EndpointLogin),
ghttp.RespondWith(http.StatusOK,
fmt.Sprintf("<ok token=\"fakeToken\" privatekeyenc=\"%s\"/>", readFile("privatekeyencrypted.txt"))),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest(http.MethodPost, EndpointLoginCheck),
ghttp.RespondWith(http.StatusOK, `<response> <ok accts_version="111"/> </response>`),
),
)
var err error
client, err = NewClient(context.Background(), user, passwd, WithBaseURL(server.URL()))
Expect(err).NotTo(HaveOccurred())
})
AfterEach(func() {
server.Close()
})
Describe("Accounts()", func() {
When("server returns blob", func() {
var rsp string
JustBeforeEach(func() {
server.AppendHandlers(
ghttp.CombineHandlers(
ghttp.VerifyRequest(http.MethodGet, EndpointGetAccts,
"requestsrc=cli&mobile=1&b64=1&hasplugin=1.3.3"),
ghttp.RespondWith(http.StatusOK, rsp),
),
)
})
When("accounts including secure notes are returned", func() {
BeforeEach(func() {
rsp = readFile("blob-3accts.txt")
})
It("parses the accounts", func() {
accts, err := client.Accounts(context.Background())
Expect(err).NotTo(HaveOccurred())
Expect(accts).To(ConsistOf(
&Account{
ID: readFile("id-name0.txt"),
Name: "name0",
Username: "user0",
Password: "password0",
URL: "https://url0",
Group: "folder0",
Notes: "notes0",
LastModifiedGMT: "1566373887",
LastTouch: "1566373925",
},
&Account{
ID: readFile("id-name1.txt"),
Name: "name1",
URL: "https://sn",
Group: "folder0",
Notes: "some secure note",
LastModifiedGMT: "1566373920",
LastTouch: "1566373932",
},
&Account{
ID: readFile("id-name2.txt"),
Name: "name2",
URL: "https://url2",
LastModifiedGMT: "1566373921",
LastTouch: "1566373938",
},
))
// /login.php, /login_check.php, /getaccts.php
Expect(server.ReceivedRequests()).To(HaveLen(3))
})
})
When("group accounts are returned", func() {
BeforeEach(func() {
rsp = readFile("blob-groupaccount.txt")
})
It("filters out group accounts", func() {
accts, err := client.Accounts(context.Background())
Expect(err).NotTo(HaveOccurred())
Expect(accts).To(BeEmpty())
// /login.php, /login_check.php, /getaccts.php
Expect(server.ReceivedRequests()).To(HaveLen(3))
})
})
When("shared folders exist whose sharing key is AES encrypted with user's encryption key", func() {
BeforeEach(func() {
rsp = readFile("blob-sharedaccounts.txt")
})
It("parses accounts in shared folders", func() {
accts, err := client.Accounts(context.Background())
Expect(err).NotTo(HaveOccurred())
Expect(accts).To(ConsistOf(
&Account{
ID: readFile("id-name0.txt"),
Name: "name0",
Username: "user0",
Password: "password0",
URL: "https://url0",
Group: "folder0",
Notes: "notes0",
LastModifiedGMT: "1566373887",
LastTouch: "0",
},
&Account{
ID: readFile("id-nameshared0.txt"),
Name: "nameShared0",
Username: "userShared0",
Password: "passwordShared0",
URL: "https://urlShared0",
Group: "",
Share: "Shared-share1",
Notes: "notesShared0",
LastModifiedGMT: "1566373807",
LastTouch: "0",
},
&Account{
ID: readFile("id-nameshared1.txt"),
Name: "nameShared1",
Username: "userShared1",
Password: "passwordShared1",
URL: "https://urlShared1",
Group: "",
Share: "Shared-share2",
Notes: "notesShared1",
LastModifiedGMT: "1566373836",
LastTouch: "0",
},
&Account{
ID: readFile("id-nameshared2.txt"),
Name: "nameShared2",
Username: "userShared2",
Password: "passwordShared2",
URL: "https://urlShared2",
Group: "",
Share: "Shared-share2",
Notes: "notesShared2",
LastModifiedGMT: "1566373837",
LastTouch: "0",
},
))
// /login.php, /login_check.php, /getaccts.php
Expect(server.ReceivedRequests()).To(HaveLen(3))
})
})
When("shared folder exists whose sharing key needs to be decrypted with user's RSA private key", func() {
BeforeEach(func() {
rsp = readFile("blob-sharingkeyrsaencrypted.txt")
})
It("parses account in shared folder", func() {
accts, err := client.Accounts(context.Background())
Expect(err).NotTo(HaveOccurred())
Expect(accts).To(ConsistOf(
&Account{
ID: readFile("id-nameshared0.txt"),
Name: "nameShared0",
Username: "userShared0",
Password: "passwordShared0",
URL: "https://urlShared0",
Group: "",
Share: "Shared-share1",
Notes: "notesShared0",
LastModifiedGMT: "1566373807",
LastTouch: "0",
},
))
// /login.php, /login_check.php, /getaccts.php
Expect(server.ReceivedRequests()).To(HaveLen(3))
})
})
When("an account is AES 256 ECB encrypted", func() {
BeforeEach(func() {
rsp = readFile("blob-ecb.txt")
})
It("decrypts", func() {
accts, err := client.Accounts(context.Background())
Expect(err).NotTo(HaveOccurred())
Expect(accts).To(ConsistOf(
&Account{
ID: readFile("id-nameecb.txt"),
Name: "nameECB",
Username: "user ECB",
Password: "password ECB",
URL: "https://urlECB",
Group: "groupECB",
Notes: "notes ECB",
LastModifiedGMT: "1566373979",
LastTouch: "0",
},
))
// /login.php, /login_check.php, /getaccts.php
Expect(server.ReceivedRequests()).To(HaveLen(3))
})
})
When("blob is not base 64 encoded", func() {
BeforeEach(func() {
rsp = "!! blob not base64 encoded !!"
})
It("returns base64.CorruptInputError", func() {
_, err := client.Accounts(context.Background())
_, ok := err.(base64.CorruptInputError)
Expect(ok).To(BeTrue())
})
})
When("blob is empty", func() {
BeforeEach(func() {
rsp = ""
})
It("returns a descriptive error", func() {
_, err := client.Accounts(context.Background())
Expect(err).To(MatchError("blob is truncated"))
})
})
When("blob is truncated and therefore chunk cannot be extracted", func() {
BeforeEach(func() {
// 8 base64 digits (each 6 bit) = 48 bits = 6 bytes
// chunk contains 4-byte ID, 4-byte size and payload of that size
// therefore, the complete chunk cannot be read
rsp = "TFBBVgAA"
})
It("returns an EOF error", func() {
_, err := client.Accounts(context.Background())
Expect(err).To(MatchError("EOF"))
})
})
})
When("request gets canceled", func() {
var ctx context.Context
BeforeEach(func() {
var cancel context.CancelFunc
ctx, cancel = context.WithCancel(context.Background())
cancel()
})
It("returns correct error", func() {
_, err := client.Accounts(ctx)
Expect(err).To(MatchError(MatchRegexp("context canceled")))
})
})
When("HTTP error response", func() {
BeforeEach(func() {
server.AppendHandlers(
ghttp.CombineHandlers(
ghttp.VerifyRequest(http.MethodGet, EndpointGetAccts,
"requestsrc=cli&mobile=1&b64=1&hasplugin=1.3.3"),
ghttp.RespondWith(http.StatusInternalServerError, ""),
),
)
})
It("returns error including HTTP status code", func() {
_, err := client.Accounts(context.Background())
Expect(err).To(MatchError(MatchRegexp(
`GET https://127\.0\.0\.1:[0-9]{1,5}/getaccts.php` +
`\?b64=1&hasplugin=1\.3\.3&mobile=1&requestsrc=cli: 500 Internal Server Error$`)))
})
})
})
})