bit_wallet 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bit_wallet.gemspec +3 -1
- data/lib/bit_wallet/account.rb +3 -1
- data/lib/bit_wallet/version.rb +1 -1
- data/spec/bit_wallet/account_spec.rb +15 -12
- data/spec/bit_wallet/accounts_spec.rb +1 -1
- data/spec/bit_wallet/address_spec.rb +1 -1
- data/spec/bit_wallet/addresses_spec.rb +1 -1
- data/spec/bit_wallet/transaction_spec.rb +1 -1
- data/spec/bit_wallet/wallet_spec.rb +12 -11
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_be_able_to_override_the_min_conf.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_default_to_the_config_min_conf.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_return_the_balance_of_the_account.yml +188 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_recent_transactions/should_default_to_list_10_transactions.yml +558 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/_to_is_a_BitWallet_Address/should_send_it_to_the_address_of_the_given_BitWallet_Address.yml +225 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/account_does_not_have_enough_money/should_fail_with_the_InsufficientFunds_error.yml +189 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/should_send_money_to_the_given_address.yml +225 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_total_received/should_return_the_total_amount_received_by_the_address.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/addresses/.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/should_be_assigned_that_name.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/should_have_a_default_name.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/when_the_account_name_already_exists/should_return_that_same_address.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/wallet/.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Accounts/_includes_account_name_account_/should_return_true_if_the_array_includes_the_account.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Accounts/_new/should_create_a_new_BitWallet_Account_with_a_default_address.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Accounts/_with_balance/should_return_accounts_with_a_balance_0.yml +484 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Accounts/wallet/.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Address/_total_received/should_return_the_total_amount_received_by_the_address.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Address/account/.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Address/on_initialization/address_given_already_exists/should_not_create_an_address.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Address/on_initialization/no_address_is_given/should_create_an_address.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Addresses/_new/with_address_string_given/should_return_an_Address_with_the_given_address_string.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Addresses/_new/without_any_address_string_given/should_return_an_Address_that_points_to_the_same_account.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Addresses/account/.yml +40 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Addresses/new/.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Transaction/on_initialization/should_be_able_to_take_a_bitcoind_hash.yml +114 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Wallet/_accounts/should_return_array_of_BitWallet_Accounts.yml +77 -0
- data/spec/fixtures/vcr_cassettes/BitWallet_Wallet/_recent_transactions/should_return_the_most_recent_transactions_of_all_accounts_defaulting_to_10_transactions.yml +558 -0
- data/spec/spec_helper.rb +9 -1
- metadata +94 -5
@@ -0,0 +1,558 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://admin1:123@localhost:19001/
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"method":"listaccounts","params":[1],"id":"jsonrpc"}'
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- ! '*/*; q=0.5, application/xml'
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip, deflate
|
14
|
+
Content-Length:
|
15
|
+
- '53'
|
16
|
+
User-Agent:
|
17
|
+
- Ruby
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
25
|
+
Connection:
|
26
|
+
- keep-alive
|
27
|
+
Content-Length:
|
28
|
+
- '58'
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Server:
|
32
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '{"result":{"":8800.00000000},"error":null,"id":"jsonrpc"}
|
36
|
+
|
37
|
+
'
|
38
|
+
http_version:
|
39
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
40
|
+
- request:
|
41
|
+
method: post
|
42
|
+
uri: http://admin1:123@localhost:19001/
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: ! '{"method":"getnewaddress","params":[""],"id":"jsonrpc"}'
|
46
|
+
headers:
|
47
|
+
Accept:
|
48
|
+
- ! '*/*; q=0.5, application/xml'
|
49
|
+
Accept-Encoding:
|
50
|
+
- gzip, deflate
|
51
|
+
Content-Length:
|
52
|
+
- '55'
|
53
|
+
User-Agent:
|
54
|
+
- Ruby
|
55
|
+
response:
|
56
|
+
status:
|
57
|
+
code: 200
|
58
|
+
message: OK
|
59
|
+
headers:
|
60
|
+
Date:
|
61
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
62
|
+
Connection:
|
63
|
+
- keep-alive
|
64
|
+
Content-Length:
|
65
|
+
- '76'
|
66
|
+
Content-Type:
|
67
|
+
- application/json
|
68
|
+
Server:
|
69
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
70
|
+
body:
|
71
|
+
encoding: US-ASCII
|
72
|
+
string: ! '{"result":"mi487X6jj8ggY6FAoG8ibv7qomcq9TXL1U","error":null,"id":"jsonrpc"}
|
73
|
+
|
74
|
+
'
|
75
|
+
http_version:
|
76
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
77
|
+
- request:
|
78
|
+
method: post
|
79
|
+
uri: http://admin1:123@localhost:19001/
|
80
|
+
body:
|
81
|
+
encoding: UTF-8
|
82
|
+
string: ! '{"method":"getnewaddress","params":["1"],"id":"jsonrpc"}'
|
83
|
+
headers:
|
84
|
+
Accept:
|
85
|
+
- ! '*/*; q=0.5, application/xml'
|
86
|
+
Accept-Encoding:
|
87
|
+
- gzip, deflate
|
88
|
+
Content-Length:
|
89
|
+
- '56'
|
90
|
+
User-Agent:
|
91
|
+
- Ruby
|
92
|
+
response:
|
93
|
+
status:
|
94
|
+
code: 200
|
95
|
+
message: OK
|
96
|
+
headers:
|
97
|
+
Date:
|
98
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
99
|
+
Connection:
|
100
|
+
- keep-alive
|
101
|
+
Content-Length:
|
102
|
+
- '76'
|
103
|
+
Content-Type:
|
104
|
+
- application/json
|
105
|
+
Server:
|
106
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
107
|
+
body:
|
108
|
+
encoding: US-ASCII
|
109
|
+
string: ! '{"result":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","error":null,"id":"jsonrpc"}
|
110
|
+
|
111
|
+
'
|
112
|
+
http_version:
|
113
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
114
|
+
- request:
|
115
|
+
method: post
|
116
|
+
uri: http://admin1:123@localhost:19001/
|
117
|
+
body:
|
118
|
+
encoding: UTF-8
|
119
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",1,0],"id":"jsonrpc"}'
|
120
|
+
headers:
|
121
|
+
Accept:
|
122
|
+
- ! '*/*; q=0.5, application/xml'
|
123
|
+
Accept-Encoding:
|
124
|
+
- gzip, deflate
|
125
|
+
Content-Length:
|
126
|
+
- '91'
|
127
|
+
User-Agent:
|
128
|
+
- Ruby
|
129
|
+
response:
|
130
|
+
status:
|
131
|
+
code: 200
|
132
|
+
message: OK
|
133
|
+
headers:
|
134
|
+
Date:
|
135
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
136
|
+
Connection:
|
137
|
+
- keep-alive
|
138
|
+
Content-Length:
|
139
|
+
- '106'
|
140
|
+
Content-Type:
|
141
|
+
- application/json
|
142
|
+
Server:
|
143
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
144
|
+
body:
|
145
|
+
encoding: US-ASCII
|
146
|
+
string: ! '{"result":"04a758f735165837de43552147448a0b95456d1e6b031fe3085dae84ef182a60","error":null,"id":"jsonrpc"}
|
147
|
+
|
148
|
+
'
|
149
|
+
http_version:
|
150
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
151
|
+
- request:
|
152
|
+
method: post
|
153
|
+
uri: http://admin1:123@localhost:19001/
|
154
|
+
body:
|
155
|
+
encoding: UTF-8
|
156
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",2,0],"id":"jsonrpc"}'
|
157
|
+
headers:
|
158
|
+
Accept:
|
159
|
+
- ! '*/*; q=0.5, application/xml'
|
160
|
+
Accept-Encoding:
|
161
|
+
- gzip, deflate
|
162
|
+
Content-Length:
|
163
|
+
- '91'
|
164
|
+
User-Agent:
|
165
|
+
- Ruby
|
166
|
+
response:
|
167
|
+
status:
|
168
|
+
code: 200
|
169
|
+
message: OK
|
170
|
+
headers:
|
171
|
+
Date:
|
172
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
173
|
+
Connection:
|
174
|
+
- keep-alive
|
175
|
+
Content-Length:
|
176
|
+
- '106'
|
177
|
+
Content-Type:
|
178
|
+
- application/json
|
179
|
+
Server:
|
180
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
181
|
+
body:
|
182
|
+
encoding: US-ASCII
|
183
|
+
string: ! '{"result":"842dddcbd3ce56ef06c7f1ec77f2781e1518ffe27ab410815b31103f2f94c2d7","error":null,"id":"jsonrpc"}
|
184
|
+
|
185
|
+
'
|
186
|
+
http_version:
|
187
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
188
|
+
- request:
|
189
|
+
method: post
|
190
|
+
uri: http://admin1:123@localhost:19001/
|
191
|
+
body:
|
192
|
+
encoding: UTF-8
|
193
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",3,0],"id":"jsonrpc"}'
|
194
|
+
headers:
|
195
|
+
Accept:
|
196
|
+
- ! '*/*; q=0.5, application/xml'
|
197
|
+
Accept-Encoding:
|
198
|
+
- gzip, deflate
|
199
|
+
Content-Length:
|
200
|
+
- '91'
|
201
|
+
User-Agent:
|
202
|
+
- Ruby
|
203
|
+
response:
|
204
|
+
status:
|
205
|
+
code: 200
|
206
|
+
message: OK
|
207
|
+
headers:
|
208
|
+
Date:
|
209
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
210
|
+
Connection:
|
211
|
+
- keep-alive
|
212
|
+
Content-Length:
|
213
|
+
- '106'
|
214
|
+
Content-Type:
|
215
|
+
- application/json
|
216
|
+
Server:
|
217
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
218
|
+
body:
|
219
|
+
encoding: US-ASCII
|
220
|
+
string: ! '{"result":"ebfe29860de5abc5113f80adbba43dd8050c091ebd1a106efc5ec16eea6b562c","error":null,"id":"jsonrpc"}
|
221
|
+
|
222
|
+
'
|
223
|
+
http_version:
|
224
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
225
|
+
- request:
|
226
|
+
method: post
|
227
|
+
uri: http://admin1:123@localhost:19001/
|
228
|
+
body:
|
229
|
+
encoding: UTF-8
|
230
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",4,0],"id":"jsonrpc"}'
|
231
|
+
headers:
|
232
|
+
Accept:
|
233
|
+
- ! '*/*; q=0.5, application/xml'
|
234
|
+
Accept-Encoding:
|
235
|
+
- gzip, deflate
|
236
|
+
Content-Length:
|
237
|
+
- '91'
|
238
|
+
User-Agent:
|
239
|
+
- Ruby
|
240
|
+
response:
|
241
|
+
status:
|
242
|
+
code: 200
|
243
|
+
message: OK
|
244
|
+
headers:
|
245
|
+
Date:
|
246
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
247
|
+
Connection:
|
248
|
+
- keep-alive
|
249
|
+
Content-Length:
|
250
|
+
- '106'
|
251
|
+
Content-Type:
|
252
|
+
- application/json
|
253
|
+
Server:
|
254
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
255
|
+
body:
|
256
|
+
encoding: US-ASCII
|
257
|
+
string: ! '{"result":"3d7461e67f7403af63c906945369e5094b80b95a85fffdd994ea174a8c496d17","error":null,"id":"jsonrpc"}
|
258
|
+
|
259
|
+
'
|
260
|
+
http_version:
|
261
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
262
|
+
- request:
|
263
|
+
method: post
|
264
|
+
uri: http://admin1:123@localhost:19001/
|
265
|
+
body:
|
266
|
+
encoding: UTF-8
|
267
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",5,0],"id":"jsonrpc"}'
|
268
|
+
headers:
|
269
|
+
Accept:
|
270
|
+
- ! '*/*; q=0.5, application/xml'
|
271
|
+
Accept-Encoding:
|
272
|
+
- gzip, deflate
|
273
|
+
Content-Length:
|
274
|
+
- '91'
|
275
|
+
User-Agent:
|
276
|
+
- Ruby
|
277
|
+
response:
|
278
|
+
status:
|
279
|
+
code: 200
|
280
|
+
message: OK
|
281
|
+
headers:
|
282
|
+
Date:
|
283
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
284
|
+
Connection:
|
285
|
+
- keep-alive
|
286
|
+
Content-Length:
|
287
|
+
- '106'
|
288
|
+
Content-Type:
|
289
|
+
- application/json
|
290
|
+
Server:
|
291
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
292
|
+
body:
|
293
|
+
encoding: US-ASCII
|
294
|
+
string: ! '{"result":"4c9670a5bff902b53440baf3cbe1798866f668cd6319dbef7fd7cce9e26142a2","error":null,"id":"jsonrpc"}
|
295
|
+
|
296
|
+
'
|
297
|
+
http_version:
|
298
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
299
|
+
- request:
|
300
|
+
method: post
|
301
|
+
uri: http://admin1:123@localhost:19001/
|
302
|
+
body:
|
303
|
+
encoding: UTF-8
|
304
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",6,0],"id":"jsonrpc"}'
|
305
|
+
headers:
|
306
|
+
Accept:
|
307
|
+
- ! '*/*; q=0.5, application/xml'
|
308
|
+
Accept-Encoding:
|
309
|
+
- gzip, deflate
|
310
|
+
Content-Length:
|
311
|
+
- '91'
|
312
|
+
User-Agent:
|
313
|
+
- Ruby
|
314
|
+
response:
|
315
|
+
status:
|
316
|
+
code: 200
|
317
|
+
message: OK
|
318
|
+
headers:
|
319
|
+
Date:
|
320
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
321
|
+
Connection:
|
322
|
+
- keep-alive
|
323
|
+
Content-Length:
|
324
|
+
- '106'
|
325
|
+
Content-Type:
|
326
|
+
- application/json
|
327
|
+
Server:
|
328
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
329
|
+
body:
|
330
|
+
encoding: US-ASCII
|
331
|
+
string: ! '{"result":"375de989d23a1d121396527f0f2307805ca1f0cb747817eed56f5b46c955e9c7","error":null,"id":"jsonrpc"}
|
332
|
+
|
333
|
+
'
|
334
|
+
http_version:
|
335
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
336
|
+
- request:
|
337
|
+
method: post
|
338
|
+
uri: http://admin1:123@localhost:19001/
|
339
|
+
body:
|
340
|
+
encoding: UTF-8
|
341
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",7,0],"id":"jsonrpc"}'
|
342
|
+
headers:
|
343
|
+
Accept:
|
344
|
+
- ! '*/*; q=0.5, application/xml'
|
345
|
+
Accept-Encoding:
|
346
|
+
- gzip, deflate
|
347
|
+
Content-Length:
|
348
|
+
- '91'
|
349
|
+
User-Agent:
|
350
|
+
- Ruby
|
351
|
+
response:
|
352
|
+
status:
|
353
|
+
code: 200
|
354
|
+
message: OK
|
355
|
+
headers:
|
356
|
+
Date:
|
357
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
358
|
+
Connection:
|
359
|
+
- keep-alive
|
360
|
+
Content-Length:
|
361
|
+
- '106'
|
362
|
+
Content-Type:
|
363
|
+
- application/json
|
364
|
+
Server:
|
365
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
366
|
+
body:
|
367
|
+
encoding: US-ASCII
|
368
|
+
string: ! '{"result":"7f689da81bd755940cb31ca403fb3083a02a93fe1e918827ac2de2326142a911","error":null,"id":"jsonrpc"}
|
369
|
+
|
370
|
+
'
|
371
|
+
http_version:
|
372
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
373
|
+
- request:
|
374
|
+
method: post
|
375
|
+
uri: http://admin1:123@localhost:19001/
|
376
|
+
body:
|
377
|
+
encoding: UTF-8
|
378
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",8,0],"id":"jsonrpc"}'
|
379
|
+
headers:
|
380
|
+
Accept:
|
381
|
+
- ! '*/*; q=0.5, application/xml'
|
382
|
+
Accept-Encoding:
|
383
|
+
- gzip, deflate
|
384
|
+
Content-Length:
|
385
|
+
- '91'
|
386
|
+
User-Agent:
|
387
|
+
- Ruby
|
388
|
+
response:
|
389
|
+
status:
|
390
|
+
code: 200
|
391
|
+
message: OK
|
392
|
+
headers:
|
393
|
+
Date:
|
394
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
395
|
+
Connection:
|
396
|
+
- keep-alive
|
397
|
+
Content-Length:
|
398
|
+
- '106'
|
399
|
+
Content-Type:
|
400
|
+
- application/json
|
401
|
+
Server:
|
402
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
403
|
+
body:
|
404
|
+
encoding: US-ASCII
|
405
|
+
string: ! '{"result":"c8872c40493dc16b438c74cb4a0454921ccd24f7a7158d32a171e0451ed6539b","error":null,"id":"jsonrpc"}
|
406
|
+
|
407
|
+
'
|
408
|
+
http_version:
|
409
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
410
|
+
- request:
|
411
|
+
method: post
|
412
|
+
uri: http://admin1:123@localhost:19001/
|
413
|
+
body:
|
414
|
+
encoding: UTF-8
|
415
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",9,0],"id":"jsonrpc"}'
|
416
|
+
headers:
|
417
|
+
Accept:
|
418
|
+
- ! '*/*; q=0.5, application/xml'
|
419
|
+
Accept-Encoding:
|
420
|
+
- gzip, deflate
|
421
|
+
Content-Length:
|
422
|
+
- '91'
|
423
|
+
User-Agent:
|
424
|
+
- Ruby
|
425
|
+
response:
|
426
|
+
status:
|
427
|
+
code: 200
|
428
|
+
message: OK
|
429
|
+
headers:
|
430
|
+
Date:
|
431
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
432
|
+
Connection:
|
433
|
+
- keep-alive
|
434
|
+
Content-Length:
|
435
|
+
- '106'
|
436
|
+
Content-Type:
|
437
|
+
- application/json
|
438
|
+
Server:
|
439
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
440
|
+
body:
|
441
|
+
encoding: US-ASCII
|
442
|
+
string: ! '{"result":"5ff90dbc85fb7b6563daf3aa6e03a3be93fd3058d7752317a48d371dccd0fc0d","error":null,"id":"jsonrpc"}
|
443
|
+
|
444
|
+
'
|
445
|
+
http_version:
|
446
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
447
|
+
- request:
|
448
|
+
method: post
|
449
|
+
uri: http://admin1:123@localhost:19001/
|
450
|
+
body:
|
451
|
+
encoding: UTF-8
|
452
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",10,0],"id":"jsonrpc"}'
|
453
|
+
headers:
|
454
|
+
Accept:
|
455
|
+
- ! '*/*; q=0.5, application/xml'
|
456
|
+
Accept-Encoding:
|
457
|
+
- gzip, deflate
|
458
|
+
Content-Length:
|
459
|
+
- '92'
|
460
|
+
User-Agent:
|
461
|
+
- Ruby
|
462
|
+
response:
|
463
|
+
status:
|
464
|
+
code: 200
|
465
|
+
message: OK
|
466
|
+
headers:
|
467
|
+
Date:
|
468
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
469
|
+
Connection:
|
470
|
+
- keep-alive
|
471
|
+
Content-Length:
|
472
|
+
- '106'
|
473
|
+
Content-Type:
|
474
|
+
- application/json
|
475
|
+
Server:
|
476
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
477
|
+
body:
|
478
|
+
encoding: US-ASCII
|
479
|
+
string: ! '{"result":"159f30ebf63dec760979aa5e07ad9693a2c80866ab4a582717bc6562faad5ea7","error":null,"id":"jsonrpc"}
|
480
|
+
|
481
|
+
'
|
482
|
+
http_version:
|
483
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
484
|
+
- request:
|
485
|
+
method: post
|
486
|
+
uri: http://admin1:123@localhost:19001/
|
487
|
+
body:
|
488
|
+
encoding: UTF-8
|
489
|
+
string: ! '{"method":"sendfrom","params":["","mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv",11,0],"id":"jsonrpc"}'
|
490
|
+
headers:
|
491
|
+
Accept:
|
492
|
+
- ! '*/*; q=0.5, application/xml'
|
493
|
+
Accept-Encoding:
|
494
|
+
- gzip, deflate
|
495
|
+
Content-Length:
|
496
|
+
- '92'
|
497
|
+
User-Agent:
|
498
|
+
- Ruby
|
499
|
+
response:
|
500
|
+
status:
|
501
|
+
code: 200
|
502
|
+
message: OK
|
503
|
+
headers:
|
504
|
+
Date:
|
505
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
506
|
+
Connection:
|
507
|
+
- keep-alive
|
508
|
+
Content-Length:
|
509
|
+
- '106'
|
510
|
+
Content-Type:
|
511
|
+
- application/json
|
512
|
+
Server:
|
513
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
514
|
+
body:
|
515
|
+
encoding: US-ASCII
|
516
|
+
string: ! '{"result":"4bdb4276eabfa7349a1eaddeee1bf31c1706bce4d067f7519399cb45a7339a67","error":null,"id":"jsonrpc"}
|
517
|
+
|
518
|
+
'
|
519
|
+
http_version:
|
520
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
521
|
+
- request:
|
522
|
+
method: post
|
523
|
+
uri: http://admin1:123@localhost:19001/
|
524
|
+
body:
|
525
|
+
encoding: UTF-8
|
526
|
+
string: ! '{"method":"listtransactions","params":[],"id":"jsonrpc"}'
|
527
|
+
headers:
|
528
|
+
Accept:
|
529
|
+
- ! '*/*; q=0.5, application/xml'
|
530
|
+
Accept-Encoding:
|
531
|
+
- gzip, deflate
|
532
|
+
Content-Length:
|
533
|
+
- '56'
|
534
|
+
User-Agent:
|
535
|
+
- Ruby
|
536
|
+
response:
|
537
|
+
status:
|
538
|
+
code: 200
|
539
|
+
message: OK
|
540
|
+
headers:
|
541
|
+
Date:
|
542
|
+
- Thu, 07 Mar 2013 10:31:19 +0000
|
543
|
+
Connection:
|
544
|
+
- keep-alive
|
545
|
+
Content-Length:
|
546
|
+
- '2515'
|
547
|
+
Content-Type:
|
548
|
+
- application/json
|
549
|
+
Server:
|
550
|
+
- bitcoin-json-rpc/v0.7.2-beta
|
551
|
+
body:
|
552
|
+
encoding: US-ASCII
|
553
|
+
string: ! '{"result":[{"account":"1","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"receive","amount":7.00000000,"confirmations":0,"txid":"7f689da81bd755940cb31ca403fb3083a02a93fe1e918827ac2de2326142a911","time":1362652279,"timereceived":1362652279},{"account":"","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"send","amount":-7.00000000,"fee":0.00000000,"confirmations":0,"txid":"7f689da81bd755940cb31ca403fb3083a02a93fe1e918827ac2de2326142a911","time":1362652279,"timereceived":1362652279},{"account":"1","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"receive","amount":8.00000000,"confirmations":0,"txid":"c8872c40493dc16b438c74cb4a0454921ccd24f7a7158d32a171e0451ed6539b","time":1362652279,"timereceived":1362652279},{"account":"","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"send","amount":-8.00000000,"fee":0.00000000,"confirmations":0,"txid":"c8872c40493dc16b438c74cb4a0454921ccd24f7a7158d32a171e0451ed6539b","time":1362652279,"timereceived":1362652279},{"account":"1","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"receive","amount":9.00000000,"confirmations":0,"txid":"5ff90dbc85fb7b6563daf3aa6e03a3be93fd3058d7752317a48d371dccd0fc0d","time":1362652279,"timereceived":1362652279},{"account":"","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"send","amount":-9.00000000,"fee":0.00000000,"confirmations":0,"txid":"5ff90dbc85fb7b6563daf3aa6e03a3be93fd3058d7752317a48d371dccd0fc0d","time":1362652279,"timereceived":1362652279},{"account":"1","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"receive","amount":10.00000000,"confirmations":0,"txid":"159f30ebf63dec760979aa5e07ad9693a2c80866ab4a582717bc6562faad5ea7","time":1362652279,"timereceived":1362652279},{"account":"","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"send","amount":-10.00000000,"fee":0.00000000,"confirmations":0,"txid":"159f30ebf63dec760979aa5e07ad9693a2c80866ab4a582717bc6562faad5ea7","time":1362652279,"timereceived":1362652279},{"account":"1","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"receive","amount":11.00000000,"confirmations":0,"txid":"4bdb4276eabfa7349a1eaddeee1bf31c1706bce4d067f7519399cb45a7339a67","time":1362652279,"timereceived":1362652279},{"account":"","address":"mkwWW2pnqFkDfH5esHxXBNARTN7GnUDpsv","category":"send","amount":-11.00000000,"fee":0.00000000,"confirmations":0,"txid":"4bdb4276eabfa7349a1eaddeee1bf31c1706bce4d067f7519399cb45a7339a67","time":1362652279,"timereceived":1362652279}],"error":null,"id":"jsonrpc"}
|
554
|
+
|
555
|
+
'
|
556
|
+
http_version:
|
557
|
+
recorded_at: Thu, 07 Mar 2013 10:31:19 GMT
|
558
|
+
recorded_with: VCR 2.4.0
|
data/spec/spec_helper.rb
CHANGED
@@ -10,6 +10,8 @@ require 'pry'
|
|
10
10
|
require 'factory_girl'
|
11
11
|
require_relative 'factories'
|
12
12
|
require 'bitcoin_testnet'
|
13
|
+
require 'vcr'
|
14
|
+
require 'webmock'
|
13
15
|
|
14
16
|
Config = {}
|
15
17
|
yaml_config_file = File.open(File.join(File.dirname(__FILE__), 'config.yml'))
|
@@ -18,7 +20,13 @@ Config[:username] = yaml_config[:rpcuser]
|
|
18
20
|
Config[:port] = yaml_config[:rpcport]
|
19
21
|
Config[:password] = yaml_config[:rpcpassword]
|
20
22
|
|
21
|
-
|
23
|
+
VCR.configure do |c|
|
24
|
+
c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
|
25
|
+
c.hook_into :webmock
|
26
|
+
c.configure_rspec_metadata!
|
27
|
+
end
|
28
|
+
|
29
|
+
BitcoinTestnet.configure_with_rspec_and_vcr!
|
22
30
|
BitcoinTestnet.dir = File.join(File.dirname(__FILE__), 'testnet')
|
23
31
|
|
24
32
|
RSpec.configure do |config|
|