adyen-admin 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (21) hide show
  1. data/CHANGES.md +3 -0
  2. data/VERSION +1 -1
  3. data/lib/adyen-admin/skin.rb +1 -1
  4. data/spec/adyen-admin/skin_spec.rb +6 -0
  5. data/spec/fixtures/cassettes/Adyen_Admin_Client/_get/raises_authenticated_error_when_not_logged_in.yml +9 -9
  6. data/spec/fixtures/cassettes/Adyen_Admin_Client/_login/passes_with_correct_username_password.yml +35 -35
  7. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/freezes_local_skins.yml +3 -3
  8. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/returns_the_skins.yml +3 -3
  9. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/returns_the_skins.yml +3 -3
  10. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/sets_local_path.yml +244 -244
  11. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/gets_the_file.yml +5520 -229
  12. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/is_a_zipfile.yml +5566 -0
  13. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_no_skin.yml +3 -3
  14. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_the_skin.yml +3 -3
  15. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_test_url/returns_url_to_test.yml +17 -17
  16. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_upload/valid_set/increases_version.yml +95 -95
  17. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_live_value.yml +3 -3
  18. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_test_value.yml +3 -3
  19. data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_version/returns_uploaded_value.yml +4 -4
  20. data/spec/fixtures/cassettes/login.yml +35 -35
  21. metadata +17 -15
data/CHANGES.md CHANGED
@@ -7,6 +7,9 @@
7
7
  * add CLI binaries (to compile + upload) -> read from .adyenrc file
8
8
  * make compatible with Live system
9
9
 
10
+ ## v0.0.6
11
+ * fix download issue
12
+
10
13
  ## v0.0.5
11
14
  * fix name with multiple - issue
12
15
  * added decompile with backup
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 0.0.6
@@ -5,7 +5,7 @@ module Adyen
5
5
  module Admin
6
6
  class Skin
7
7
  UPLOAD = "https://ca-test.adyen.com/ca/ca/skin/uploadskin.shtml?skinCode=%s"
8
- DOWNLOAD = "https://ca-test.adyen.com/ca/ca/skin/downloadskinsubmit.shtml?skinCode=%s"
8
+ DOWNLOAD = "https://ca-test.adyen.com/ca/ca/skin/downloadskinsubmit.shtml?downloadSkin=Download&skinCode=%s"
9
9
  TEST = "https://ca-test.adyen.com/ca/ca/skin/testpayment.shtml?skinCode=%s"
10
10
 
11
11
  VERSION_TEST = "https://test.adyen.com/hpp/version.shtml?skinCode=%s"
@@ -131,6 +131,12 @@ module Adyen::Admin
131
131
  skin.download
132
132
  File.should be_exists(zip_filename)
133
133
  end
134
+
135
+ it "is a zipfile" do
136
+ Zip::ZipFile.open(skin.download) do |zipfile|
137
+ zipfile.find_entry(File.join(skin_code, "inc", "cheader.txt")).should be_true
138
+ end
139
+ end
134
140
  end
135
141
 
136
142
  describe "#decompile" do
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: Moved Temporarily
30
30
  headers:
31
31
  Date:
32
- - Wed, 11 Apr 2012 17:34:15 GMT
32
+ - Thu, 12 Apr 2012 15:12:33 GMT
33
33
  Server:
34
34
  - Apache
35
35
  Set-Cookie:
36
- - JSESSIONID=0C617FF66E2DE96A96AF07119ACD3139.test5e; Path=/ca/; Secure; HttpOnly
36
+ - JSESSIONID=14B161A025DDDCA864B685B2B8936DF0.test5e; Path=/ca/; Secure; HttpOnly
37
37
  Location:
38
- - https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=0C617FF66E2DE96A96AF07119ACD3139.test5e
38
+ - https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=14B161A025DDDCA864B685B2B8936DF0.test5e
39
39
  Content-Length:
40
40
  - "0"
41
41
  Keep-Alive:
@@ -48,10 +48,10 @@ http_interactions:
48
48
  encoding: US-ASCII
49
49
  string: ""
50
50
  http_version:
51
- recorded_at: Wed, 11 Apr 2012 17:34:15 GMT
51
+ recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
52
52
  - request:
53
53
  method: get
54
- uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=0C617FF66E2DE96A96AF07119ACD3139.test5e
54
+ uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=14B161A025DDDCA864B685B2B8936DF0.test5e
55
55
  body:
56
56
  encoding: US-ASCII
57
57
  string: ""
@@ -67,7 +67,7 @@ http_interactions:
67
67
  Accept-Language:
68
68
  - en-us,en;q=0.5
69
69
  Cookie:
70
- - JSESSIONID=0C617FF66E2DE96A96AF07119ACD3139.test5e
70
+ - JSESSIONID=14B161A025DDDCA864B685B2B8936DF0.test5e
71
71
  Host:
72
72
  - ca-test.adyen.com
73
73
  Connection:
@@ -80,7 +80,7 @@ http_interactions:
80
80
  message: OK
81
81
  headers:
82
82
  Date:
83
- - Wed, 11 Apr 2012 17:34:15 GMT
83
+ - Thu, 12 Apr 2012 15:12:33 GMT
84
84
  Server:
85
85
  - Apache
86
86
  Cache-Control:
@@ -242,7 +242,7 @@ http_interactions:
242
242
 
243
243
  <tr>
244
244
  <td colspan="2"><br />
245
- <input type="hidden" name="j_formHash" value="271lVbzpKDQZwnZ5gmR45XtX+5/X84=" />
245
+ <input type="hidden" name="j_formHash" value="204t93A+Vr9sLSS0lCB/zfNwdobM4A=" />
246
246
  <input type="submit" class="button" value="Submit" /></td>
247
247
  </tr>
248
248
  </table>
@@ -267,5 +267,5 @@ http_interactions:
267
267
  </html>
268
268
 
269
269
  http_version:
270
- recorded_at: Wed, 11 Apr 2012 17:34:15 GMT
270
+ recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
271
271
  recorded_with: VCR 2.0.1
@@ -29,7 +29,7 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Wed, 11 Apr 2012 17:34:14 GMT
32
+ - Thu, 12 Apr 2012 15:12:32 GMT
33
33
  Server:
34
34
  - Apache
35
35
  Cache-Control:
@@ -41,7 +41,7 @@ http_interactions:
41
41
  X-Frame-Options:
42
42
  - SAMEORIGIN
43
43
  Set-Cookie:
44
- - JSESSIONID=49865C82C22EC228E01CA5527DF7088F.test5e; Path=/ca/; Secure; HttpOnly
44
+ - JSESSIONID=835803BCAD34B80F5BF46419CA9593A1.test5e; Path=/ca/; Secure; HttpOnly
45
45
  Content-Language:
46
46
  - en-GB
47
47
  Keep-Alive:
@@ -66,15 +66,15 @@ http_interactions:
66
66
  <meta http-equiv="imagetoolbar" content="no" />
67
67
  <meta content="TRUE" name="MSSmartTagsPreventParsing" />
68
68
 
69
- <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" type="image/ico"/>
69
+ <link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="image/ico"/>
70
70
 
71
- <script type="text/javascript" src="/ca/js/functions.js;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e"></script>
72
- <script src="/ca/js/prototype.js;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" type="text/javascript"></script>
73
- <script src="/ca/js/scriptaculous.js;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" type="text/javascript"></script>
71
+ <script type="text/javascript" src="/ca/js/functions.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"></script>
72
+ <script src="/ca/js/prototype.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="text/javascript"></script>
73
+ <script src="/ca/js/scriptaculous.js;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" type="text/javascript"></script>
74
74
 
75
- <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" />
75
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" />
76
76
  <!--[if lt IE 7]>
77
- <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" />
77
+ <link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" />
78
78
  <![endif]-->
79
79
 
80
80
 
@@ -84,9 +84,9 @@ http_interactions:
84
84
  <div id="topbar"><div class="iefillerdiv"></div></div>
85
85
  <div id="middlebarcontainer">
86
86
  <div id="middlebar">
87
- <a href="/ca/ca/overview/default.shtml;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="Logo"/>
88
- <img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="test"/></a>
89
- <img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="Complex Finance, Online Insight" />
87
+ <a href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Logo"/>
88
+ <img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="test"/></a>
89
+ <img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Complex Finance, Online Insight" />
90
90
  </div>
91
91
  </div>
92
92
  <div id="bottombar"><div id="bottombar2"></div></div>
@@ -101,9 +101,9 @@ http_interactions:
101
101
  </div>
102
102
 
103
103
  <div style="text-align: left; margin-top: 5px">
104
- <!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="Home"/></a-->
105
- <a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e"><img src="/ca/img/home.png;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="Home"/> home</a><br/>
106
- <a class="icon" href="/ca/logoff.shtml;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e" alt="Sign Off"/> sign off</a>
104
+ <!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Home"/></a-->
105
+ <a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e"><img src="/ca/img/home.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Home"/> home</a><br/>
106
+ <a class="icon" href="/ca/logoff.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e" alt="Sign Off"/> sign off</a>
107
107
  </div>
108
108
  </div>
109
109
  </div>
@@ -193,13 +193,13 @@ http_interactions:
193
193
 
194
194
  <tr>
195
195
  <td colspan="2"><br />
196
- <input type="hidden" name="j_formHash" value="711Z99PmP/aI68VyW5Et660q2Ya9LM=" />
196
+ <input type="hidden" name="j_formHash" value="369hCKSf1tc95xwgv+hGXVk+oCE6x8=" />
197
197
  <input type="submit" class="button" value="Submit" /></td>
198
198
  </tr>
199
199
  </table>
200
200
  </form>
201
201
  <br/>
202
- <a href="/ca/forgotPassword.shtml;jsessionid=49865C82C22EC228E01CA5527DF7088F.test5e">Forgot your password?</a>
202
+ <a href="/ca/forgotPassword.shtml;jsessionid=835803BCAD34B80F5BF46419CA9593A1.test5e">Forgot your password?</a>
203
203
  </div>
204
204
 
205
205
  <div class="bbarl">
@@ -218,13 +218,13 @@ http_interactions:
218
218
  </html>
219
219
 
220
220
  http_version:
221
- recorded_at: Wed, 11 Apr 2012 17:34:14 GMT
221
+ recorded_at: Thu, 12 Apr 2012 15:12:32 GMT
222
222
  - request:
223
223
  method: post
224
224
  uri: https://ca-test.adyen.com/ca/ca/config/j_security_check
225
225
  body:
226
226
  encoding: UTF-8
227
- string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=711Z99PmP%2FaI68VyW5Et660q2Ya9LM%3D
227
+ string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=369hCKSf1tc95xwgv%2BhGXVk%2BoCE6x8%3D
228
228
  headers:
229
229
  Accept:
230
230
  - "*/*"
@@ -237,7 +237,7 @@ http_interactions:
237
237
  Accept-Language:
238
238
  - en-us,en;q=0.5
239
239
  Cookie:
240
- - JSESSIONID=49865C82C22EC228E01CA5527DF7088F.test5e
240
+ - JSESSIONID=835803BCAD34B80F5BF46419CA9593A1.test5e
241
241
  Host:
242
242
  - ca-test.adyen.com
243
243
  Referer:
@@ -256,7 +256,7 @@ http_interactions:
256
256
  Content-Type:
257
257
  - application/x-www-form-urlencoded
258
258
  Content-Length:
259
- - "108"
259
+ - "110"
260
260
  Connection:
261
261
  - keep-alive
262
262
  Keep-Alive:
@@ -267,11 +267,11 @@ http_interactions:
267
267
  message: Moved Temporarily
268
268
  headers:
269
269
  Date:
270
- - Wed, 11 Apr 2012 17:34:14 GMT
270
+ - Thu, 12 Apr 2012 15:12:33 GMT
271
271
  Server:
272
272
  - Apache
273
273
  Set-Cookie:
274
- - JSESSIONID=3DD812578F14B1571E026803BB689637.test5e; Path=/ca/; Secure; HttpOnly
274
+ - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e; Path=/ca/; Secure; HttpOnly
275
275
  Location:
276
276
  - https://ca-test.adyen.com/ca/
277
277
  Content-Length:
@@ -286,7 +286,7 @@ http_interactions:
286
286
  encoding: US-ASCII
287
287
  string: ""
288
288
  http_version:
289
- recorded_at: Wed, 11 Apr 2012 17:34:15 GMT
289
+ recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
290
290
  - request:
291
291
  method: get
292
292
  uri: https://ca-test.adyen.com/ca/
@@ -305,7 +305,7 @@ http_interactions:
305
305
  Accept-Language:
306
306
  - en-us,en;q=0.5
307
307
  Cookie:
308
- - JSESSIONID=3DD812578F14B1571E026803BB689637.test5e
308
+ - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e
309
309
  Host:
310
310
  - ca-test.adyen.com
311
311
  Referer:
@@ -320,7 +320,7 @@ http_interactions:
320
320
  message: Moved Temporarily
321
321
  headers:
322
322
  Date:
323
- - Wed, 11 Apr 2012 17:34:15 GMT
323
+ - Thu, 12 Apr 2012 15:12:33 GMT
324
324
  Server:
325
325
  - Apache
326
326
  Location:
@@ -339,7 +339,7 @@ http_interactions:
339
339
  encoding: US-ASCII
340
340
  string: ""
341
341
  http_version:
342
- recorded_at: Wed, 11 Apr 2012 17:34:15 GMT
342
+ recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
343
343
  - request:
344
344
  method: get
345
345
  uri: https://ca-test.adyen.com/ca/ca/overview/default.shtml
@@ -358,7 +358,7 @@ http_interactions:
358
358
  Accept-Language:
359
359
  - en-us,en;q=0.5
360
360
  Cookie:
361
- - JSESSIONID=3DD812578F14B1571E026803BB689637.test5e
361
+ - JSESSIONID=AEF01AA9362D2B7BCE355B423ADFCF31.test5e
362
362
  Host:
363
363
  - ca-test.adyen.com
364
364
  Referer:
@@ -373,7 +373,7 @@ http_interactions:
373
373
  message: OK
374
374
  headers:
375
375
  Date:
376
- - Wed, 11 Apr 2012 17:34:15 GMT
376
+ - Thu, 12 Apr 2012 15:12:33 GMT
377
377
  Server:
378
378
  - Apache
379
379
  Cache-Control:
@@ -501,7 +501,7 @@ http_interactions:
501
501
 
502
502
 
503
503
 
504
- <div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-04-11 19:34:15 CEST</h1>
504
+ <div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-04-12 17:12:33 CEST</h1>
505
505
  <span class="topright">
506
506
  <a href="/ca/ca/overview/default.shtml?configure=true" title="Configure this page">
507
507
  <img src="/ca/img/icons/layout_edit.png" alt="Edit Layout" /> Customise this page </a>
@@ -524,7 +524,7 @@ http_interactions:
524
524
  <div class="content">
525
525
  You are logged in under the SoundCloud
526
526
  Company account.<br />
527
- Your last login was on <b>2012-04-11 19:33:52 CEST</b>.
527
+ Your last login was on <b>2012-04-12 17:04:18 CEST</b>.
528
528
  </div>
529
529
  </div>
530
530
  <div id="system_messages" class="block">
@@ -564,7 +564,7 @@ http_interactions:
564
564
  <script type="text/javascript">
565
565
  var chart1 = new FusionCharts("/ca/Charts/AngularGauge.swf", "sampleChart", "180", "110", "0", "0","#FFFFFF","noScale","EN");
566
566
  //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
567
- chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1334165655419");
567
+ chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1334243553579");
568
568
  chart1.render("chart2div");
569
569
  </script> </div>
570
570
  </div>
@@ -601,7 +601,7 @@ http_interactions:
601
601
  <script type="text/javascript">
602
602
  var chart1 = new FusionCharts("/ca/Charts/MSLine.swf", "sampleChart", "374", "180", "0", "1","#FFFFFF","noScale","EN","1","0");
603
603
  //debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
604
- chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1334165655420");
604
+ chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1334243553580");
605
605
  chart1.render("chart1div");
606
606
  </script> </div>
607
607
  </div>
@@ -617,7 +617,7 @@ http_interactions:
617
617
  Current system time:
618
618
  </th>
619
619
  <td>
620
- 2012-04-11 19:34:15 CEST
620
+ 2012-04-12 17:12:33 CEST
621
621
  </td>
622
622
  </tr>
623
623
  <tr>
@@ -625,7 +625,7 @@ http_interactions:
625
625
  Backoffice up-to-date till:
626
626
  </th>
627
627
  <td>
628
- <span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-04-11 19:33:28 CEST</span>
628
+ <span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-04-12 17:11:44 CEST</span>
629
629
  </td>
630
630
  </tr>
631
631
  </table> </div>
@@ -657,5 +657,5 @@ http_interactions:
657
657
  </html>
658
658
 
659
659
  http_version:
660
- recorded_at: Wed, 11 Apr 2012 17:34:15 GMT
660
+ recorded_at: Thu, 12 Apr 2012 15:12:33 GMT
661
661
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=90A4E71B7C6A54FEF7409AB3B2BFB7D4.test5e
21
+ - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Wed, 11 Apr 2012 17:34:17 GMT
34
+ - Thu, 12 Apr 2012 15:12:35 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Wed, 11 Apr 2012 17:34:17 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:12:35 GMT
292
292
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=90A4E71B7C6A54FEF7409AB3B2BFB7D4.test5e
21
+ - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Wed, 11 Apr 2012 17:34:16 GMT
34
+ - Thu, 12 Apr 2012 15:12:35 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Wed, 11 Apr 2012 17:34:17 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:12:35 GMT
292
292
  recorded_with: VCR 2.0.1
@@ -18,7 +18,7 @@ http_interactions:
18
18
  Accept-Language:
19
19
  - en-us,en;q=0.5
20
20
  Cookie:
21
- - JSESSIONID=90A4E71B7C6A54FEF7409AB3B2BFB7D4.test5e
21
+ - JSESSIONID=8C3D2F4728B757CCE97F3C32698E9008.test5e
22
22
  Host:
23
23
  - ca-test.adyen.com
24
24
  Connection:
@@ -31,7 +31,7 @@ http_interactions:
31
31
  message: OK
32
32
  headers:
33
33
  Date:
34
- - Wed, 11 Apr 2012 17:34:16 GMT
34
+ - Thu, 12 Apr 2012 15:12:34 GMT
35
35
  Server:
36
36
  - Apache
37
37
  Cache-Control:
@@ -288,5 +288,5 @@ http_interactions:
288
288
  </html>
289
289
 
290
290
  http_version:
291
- recorded_at: Wed, 11 Apr 2012 17:34:16 GMT
291
+ recorded_at: Thu, 12 Apr 2012 15:12:34 GMT
292
292
  recorded_with: VCR 2.0.1