adyen-admin 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES.md +3 -0
- data/VERSION +1 -1
- data/lib/adyen-admin/skin.rb +2 -0
- data/spec/adyen-admin/skin_spec.rb +18 -2
- data/spec/fixtures/cassettes/Adyen_Admin_Client/_get/raises_authenticated_error_when_not_logged_in.yml +9 -9
- data/spec/fixtures/cassettes/Adyen_Admin_Client/_get/sets_authenticated_to_false_on_error.yml +9 -9
- data/spec/fixtures/cassettes/Adyen_Admin_Client/_login/passes_with_correct_username_password.yml +34 -34
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/freezes_local_skins.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all/returns_the_skins.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/returns_the_skins.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/sets_local_path.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_decompile/new_remote_skin/downloads_and_decompiles_skin.yml +1025 -196
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/gets_the_file.yml +89 -84
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_download/is_a_zipfile.yml +89 -84
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_no_skin.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_find/returns_the_skin.yml +6 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_remote_version/returns_live_value.yml +3 -3
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_remote_version/returns_test_value.yml +5 -5
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_remote_version/returns_uploaded_value.yml +7 -7
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_test_url/returns_url_to_test.yml +17 -17
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_update/create_skin_yml_file.yml +16 -16
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_upload/valid_set/increases_version.yml +115 -114
- data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_upload/valid_set/updates_skin_data.yml +84 -83
- data/spec/fixtures/cassettes/login.yml +35 -35
- data/spec/fixtures/skins/DV3tf95f/skin.yml +1 -1
- metadata +16 -16
data/CHANGES.md
CHANGED
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
* add CLI binaries (to compile + upload) -> read from .adyenrc file
|
|
7
7
|
* make compatible with Live system
|
|
8
8
|
|
|
9
|
+
## v0.0.12 - 2-05-2012
|
|
10
|
+
* fixed missing path when folder doesn't match `name-code` pattern
|
|
11
|
+
|
|
9
12
|
## v0.0.12 - 23-04-2012
|
|
10
13
|
* renamed `compile` to `compress`
|
|
11
14
|
* added `compile` which splits any given input to the inc/* file according to given pattern
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.13
|
data/lib/adyen-admin/skin.rb
CHANGED
|
@@ -22,6 +22,8 @@ module Adyen
|
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
self.path ||= File.expand_path File.join(Skin.default_path, [name,code].compact.join("-"))
|
|
25
|
+
self.path ||= File.expand_path File.join(Skin.default_path, name.to_s)
|
|
26
|
+
self.path ||= File.expand_path File.join(Skin.default_path, code.to_s)
|
|
25
27
|
|
|
26
28
|
raise ArgumentError, "No Code given" unless code
|
|
27
29
|
end
|
|
@@ -129,13 +129,17 @@ module Adyen::Admin
|
|
|
129
129
|
let(:skin) { Skin.new(:path => path) }
|
|
130
130
|
|
|
131
131
|
it "sets name" do
|
|
132
|
-
skin.name.should == "
|
|
132
|
+
skin.name.should == "DV3tf95f"
|
|
133
133
|
end
|
|
134
134
|
|
|
135
135
|
it "sets code" do
|
|
136
136
|
skin.code.should == "customCode"
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
+
it "sets version_live" do
|
|
140
|
+
skin.path.should == "#{skin_fixtures}/DV3tf95f"
|
|
141
|
+
end
|
|
142
|
+
|
|
139
143
|
it "sets version" do
|
|
140
144
|
skin.version.should == 12
|
|
141
145
|
end
|
|
@@ -147,6 +151,18 @@ module Adyen::Admin
|
|
|
147
151
|
it "sets version_live" do
|
|
148
152
|
skin.version_live.should == 2
|
|
149
153
|
end
|
|
154
|
+
|
|
155
|
+
context "init by code" do
|
|
156
|
+
let(:skin) { Skin.new(:name => "DV3tf95f", :code => "customCode") }
|
|
157
|
+
|
|
158
|
+
it "sets name" do
|
|
159
|
+
skin.name.should == "DV3tf95f"
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
it "sets version_live" do
|
|
163
|
+
skin.path.should == "#{skin_fixtures}/DV3tf95f"
|
|
164
|
+
end
|
|
165
|
+
end
|
|
150
166
|
end
|
|
151
167
|
end
|
|
152
168
|
|
|
@@ -397,7 +413,7 @@ module Adyen::Admin
|
|
|
397
413
|
|
|
398
414
|
describe "#remote_version" do
|
|
399
415
|
let(:skin) { Skin.new(:code => "Kx9axnRf", :name => "demo") }
|
|
400
|
-
let(:version) {
|
|
416
|
+
let(:version) { 17 }
|
|
401
417
|
|
|
402
418
|
it "returns uploaded value" do
|
|
403
419
|
skin.send(:remote_version).should == version
|
|
@@ -29,13 +29,13 @@ http_interactions:
|
|
|
29
29
|
message: Moved Temporarily
|
|
30
30
|
headers:
|
|
31
31
|
Date:
|
|
32
|
-
-
|
|
32
|
+
- Wed, 02 May 2012 10:49:55 GMT
|
|
33
33
|
Server:
|
|
34
34
|
- Apache
|
|
35
35
|
Set-Cookie:
|
|
36
|
-
- JSESSIONID=
|
|
36
|
+
- JSESSIONID=E30137F065AB57572237AF6AEC45FBCA.test5e; Path=/ca/; Secure; HttpOnly
|
|
37
37
|
Location:
|
|
38
|
-
- https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=
|
|
38
|
+
- https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=E30137F065AB57572237AF6AEC45FBCA.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:
|
|
51
|
+
recorded_at: Wed, 02 May 2012 10:49:55 GMT
|
|
52
52
|
- request:
|
|
53
53
|
method: get
|
|
54
|
-
uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=
|
|
54
|
+
uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=E30137F065AB57572237AF6AEC45FBCA.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=
|
|
70
|
+
- JSESSIONID=E30137F065AB57572237AF6AEC45FBCA.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
|
-
-
|
|
83
|
+
- Wed, 02 May 2012 10:49:55 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="
|
|
245
|
+
<input type="hidden" name="j_formHash" value="656TjKLtvt81K5iE0+dnpprOCeDx2s=" />
|
|
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:
|
|
270
|
+
recorded_at: Wed, 02 May 2012 10:49:55 GMT
|
|
271
271
|
recorded_with: VCR 2.0.1
|
data/spec/fixtures/cassettes/Adyen_Admin_Client/_get/sets_authenticated_to_false_on_error.yml
CHANGED
|
@@ -29,13 +29,13 @@ http_interactions:
|
|
|
29
29
|
message: Moved Temporarily
|
|
30
30
|
headers:
|
|
31
31
|
Date:
|
|
32
|
-
-
|
|
32
|
+
- Wed, 02 May 2012 10:49:55 GMT
|
|
33
33
|
Server:
|
|
34
34
|
- Apache
|
|
35
35
|
Set-Cookie:
|
|
36
|
-
- JSESSIONID=
|
|
36
|
+
- JSESSIONID=4C66E80C8AF47018BB6A37427FECC264.test5e; Path=/ca/; Secure; HttpOnly
|
|
37
37
|
Location:
|
|
38
|
-
- https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=
|
|
38
|
+
- https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=4C66E80C8AF47018BB6A37427FECC264.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:
|
|
51
|
+
recorded_at: Wed, 02 May 2012 10:49:55 GMT
|
|
52
52
|
- request:
|
|
53
53
|
method: get
|
|
54
|
-
uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=
|
|
54
|
+
uri: https://ca-test.adyen.com/ca/ca/login.shtml;jsessionid=4C66E80C8AF47018BB6A37427FECC264.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=
|
|
70
|
+
- JSESSIONID=4C66E80C8AF47018BB6A37427FECC264.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
|
-
-
|
|
83
|
+
- Wed, 02 May 2012 10:49:55 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="
|
|
245
|
+
<input type="hidden" name="j_formHash" value="357HvwgaGfNcAVR/oRdRQScoVFPQg8=" />
|
|
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:
|
|
270
|
+
recorded_at: Wed, 02 May 2012 10:49:55 GMT
|
|
271
271
|
recorded_with: VCR 2.0.1
|
data/spec/fixtures/cassettes/Adyen_Admin_Client/_login/passes_with_correct_username_password.yml
CHANGED
|
@@ -29,7 +29,7 @@ http_interactions:
|
|
|
29
29
|
message: OK
|
|
30
30
|
headers:
|
|
31
31
|
Date:
|
|
32
|
-
-
|
|
32
|
+
- Wed, 02 May 2012 10:49:54 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=
|
|
44
|
+
- JSESSIONID=81174283172EE18F1D1A18BCF28EF342.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=
|
|
69
|
+
<link rel="shortcut icon" href="/ca/img/adyen/favicon.ico;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" type="image/ico"/>
|
|
70
70
|
|
|
71
|
-
<script type="text/javascript" src="/ca/js/functions.js;jsessionid=
|
|
72
|
-
<script src="/ca/js/prototype.js;jsessionid=
|
|
73
|
-
<script src="/ca/js/scriptaculous.js;jsessionid=
|
|
71
|
+
<script type="text/javascript" src="/ca/js/functions.js;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e"></script>
|
|
72
|
+
<script src="/ca/js/prototype.js;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" type="text/javascript"></script>
|
|
73
|
+
<script src="/ca/js/scriptaculous.js;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" type="text/javascript"></script>
|
|
74
74
|
|
|
75
|
-
<link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=
|
|
75
|
+
<link rel="stylesheet" type="text/css" href="/ca/css/adyen/style.css;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" />
|
|
76
76
|
<!--[if lt IE 7]>
|
|
77
|
-
<link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=
|
|
77
|
+
<link rel="stylesheet" type="text/css" href="/ca/css/adyen/style_ie6.css;jsessionid=81174283172EE18F1D1A18BCF28EF342.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=
|
|
88
|
-
<img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=
|
|
89
|
-
<img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=
|
|
87
|
+
<a href="/ca/ca/overview/default.shtml;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e"><img id="mainlogo" src="/ca/img/adyen.png;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" alt="Logo"/>
|
|
88
|
+
<img id="testsystemwarning" src="/ca/img/adyen_test.png;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" alt="test"/></a>
|
|
89
|
+
<img id="maintagline" src="/ca/img/adyen_tagline.png;jsessionid=81174283172EE18F1D1A18BCF28EF342.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=
|
|
105
|
-
<a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=
|
|
106
|
-
<a class="icon" href="/ca/logoff.shtml;jsessionid=
|
|
104
|
+
<!--a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" title="Home"><img src="/ca/img/home.gif;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" alt="Home"/></a-->
|
|
105
|
+
<a class="icon" href="/ca/ca/overview/default.shtml;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e"><img src="/ca/img/home.png;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" alt="Home"/> home</a><br/>
|
|
106
|
+
<a class="icon" href="/ca/logoff.shtml;jsessionid=81174283172EE18F1D1A18BCF28EF342.test5e" title="Sign Off"><img src="/ca/img/exit.png;jsessionid=81174283172EE18F1D1A18BCF28EF342.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="
|
|
196
|
+
<input type="hidden" name="j_formHash" value="3333zFiNo4iJlSlLn+BQigib24Xrz8=" />
|
|
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=
|
|
202
|
+
<a href="/ca/forgotPassword.shtml;jsessionid=81174283172EE18F1D1A18BCF28EF342.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:
|
|
221
|
+
recorded_at: Wed, 02 May 2012 10:49:54 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=
|
|
227
|
+
string: j_account=SoundCloud&j_username=skinadmin&j_password=12312311&j_formHash=3333zFiNo4iJlSlLn%2BBQigib24Xrz8%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=
|
|
240
|
+
- JSESSIONID=81174283172EE18F1D1A18BCF28EF342.test5e
|
|
241
241
|
Host:
|
|
242
242
|
- ca-test.adyen.com
|
|
243
243
|
Referer:
|
|
@@ -267,11 +267,11 @@ http_interactions:
|
|
|
267
267
|
message: Moved Temporarily
|
|
268
268
|
headers:
|
|
269
269
|
Date:
|
|
270
|
-
-
|
|
270
|
+
- Wed, 02 May 2012 10:49:54 GMT
|
|
271
271
|
Server:
|
|
272
272
|
- Apache
|
|
273
273
|
Set-Cookie:
|
|
274
|
-
- JSESSIONID=
|
|
274
|
+
- JSESSIONID=11FBFDA60D92206D13514651B6F0DFD0.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:
|
|
289
|
+
recorded_at: Wed, 02 May 2012 10:49:54 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=
|
|
308
|
+
- JSESSIONID=11FBFDA60D92206D13514651B6F0DFD0.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
|
-
-
|
|
323
|
+
- Wed, 02 May 2012 10:49:54 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:
|
|
342
|
+
recorded_at: Wed, 02 May 2012 10:49:54 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=
|
|
361
|
+
- JSESSIONID=11FBFDA60D92206D13514651B6F0DFD0.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
|
-
-
|
|
376
|
+
- Wed, 02 May 2012 10:49:54 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-
|
|
504
|
+
<div style="float: right; text-align: right; font-size: 0.8em;"><h1 title="Page Generation Time">2012-05-02 12:49:54 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-
|
|
527
|
+
Your last login was on <b>2012-04-27 01:23:02 CEST</b>.
|
|
528
528
|
</div>
|
|
529
529
|
</div>
|
|
530
530
|
<div id="system_messages" class="block">
|
|
@@ -552,7 +552,7 @@ http_interactions:
|
|
|
552
552
|
<script type="text/javascript">
|
|
553
553
|
var chart1 = new FusionCharts("/ca/Charts/AngularGauge.swf", "sampleChart", "180", "110", "0", "0","#FFFFFF","noScale","EN");
|
|
554
554
|
//debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
|
|
555
|
-
chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=
|
|
555
|
+
chart1.setDataURL("/ca/ca/reports/chartdata/speedometer.shtml?random=1335955794861");
|
|
556
556
|
chart1.render("chart2div");
|
|
557
557
|
</script> </div>
|
|
558
558
|
</div>
|
|
@@ -589,7 +589,7 @@ http_interactions:
|
|
|
589
589
|
<script type="text/javascript">
|
|
590
590
|
var chart1 = new FusionCharts("/ca/Charts/MSLine.swf", "sampleChart", "374", "180", "0", "1","#FFFFFF","noScale","EN","1","0");
|
|
591
591
|
//debugMode, registerWithJS, c, scaleMode, lang, detectFlashVersion, autoInstallRedirect
|
|
592
|
-
chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=
|
|
592
|
+
chart1.setDataURL("/ca/ca/reports/chartdata/chart_weekhistory.shtml?random=1335955794862");
|
|
593
593
|
chart1.render("chart1div");
|
|
594
594
|
</script> </div>
|
|
595
595
|
</div>
|
|
@@ -605,7 +605,7 @@ http_interactions:
|
|
|
605
605
|
Current system time:
|
|
606
606
|
</th>
|
|
607
607
|
<td>
|
|
608
|
-
2012-
|
|
608
|
+
2012-05-02 12:49:54 CEST
|
|
609
609
|
</td>
|
|
610
610
|
</tr>
|
|
611
611
|
<tr>
|
|
@@ -613,7 +613,7 @@ http_interactions:
|
|
|
613
613
|
Backoffice up-to-date till:
|
|
614
614
|
</th>
|
|
615
615
|
<td>
|
|
616
|
-
<span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-
|
|
616
|
+
<span title="All payments made till this time are listed in the payments list. Newer payments may not be visible yet.">2012-05-02 12:48:45 CEST</span>
|
|
617
617
|
</td>
|
|
618
618
|
</tr>
|
|
619
619
|
</table> </div>
|
|
@@ -645,5 +645,5 @@ http_interactions:
|
|
|
645
645
|
</html>
|
|
646
646
|
|
|
647
647
|
http_version:
|
|
648
|
-
recorded_at:
|
|
648
|
+
recorded_at: Wed, 02 May 2012 10:49:54 GMT
|
|
649
649
|
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=
|
|
21
|
+
- JSESSIONID=6B0311CC4E89FEA6AF12A8C4194D5FB9.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
|
-
-
|
|
34
|
+
- Wed, 02 May 2012 10:49:57 GMT
|
|
35
35
|
Server:
|
|
36
36
|
- Apache
|
|
37
37
|
Cache-Control:
|
|
@@ -267,9 +267,10 @@ http_interactions:
|
|
|
267
267
|
/></a>
|
|
268
268
|
</td>
|
|
269
269
|
</tr>
|
|
270
|
-
|
|
270
|
+
</tbody>
|
|
271
271
|
</table>
|
|
272
|
-
|
|
272
|
+
|
|
273
|
+
</div>
|
|
273
274
|
|
|
274
275
|
|
|
275
276
|
<div class="bbarl">
|
|
@@ -288,5 +289,5 @@ http_interactions:
|
|
|
288
289
|
</html>
|
|
289
290
|
|
|
290
291
|
http_version:
|
|
291
|
-
recorded_at:
|
|
292
|
+
recorded_at: Wed, 02 May 2012 10:49:57 GMT
|
|
292
293
|
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=
|
|
21
|
+
- JSESSIONID=6B0311CC4E89FEA6AF12A8C4194D5FB9.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
|
-
-
|
|
34
|
+
- Wed, 02 May 2012 10:49:56 GMT
|
|
35
35
|
Server:
|
|
36
36
|
- Apache
|
|
37
37
|
Cache-Control:
|
|
@@ -267,9 +267,10 @@ http_interactions:
|
|
|
267
267
|
/></a>
|
|
268
268
|
</td>
|
|
269
269
|
</tr>
|
|
270
|
-
|
|
270
|
+
</tbody>
|
|
271
271
|
</table>
|
|
272
|
-
|
|
272
|
+
|
|
273
|
+
</div>
|
|
273
274
|
|
|
274
275
|
|
|
275
276
|
<div class="bbarl">
|
|
@@ -288,5 +289,5 @@ http_interactions:
|
|
|
288
289
|
</html>
|
|
289
290
|
|
|
290
291
|
http_version:
|
|
291
|
-
recorded_at:
|
|
292
|
+
recorded_at: Wed, 02 May 2012 10:49:57 GMT
|
|
292
293
|
recorded_with: VCR 2.0.1
|
data/spec/fixtures/cassettes/Adyen_Admin_Skin/authenticated/_all_remote/returns_the_skins.yml
CHANGED
|
@@ -18,7 +18,7 @@ http_interactions:
|
|
|
18
18
|
Accept-Language:
|
|
19
19
|
- en-us,en;q=0.5
|
|
20
20
|
Cookie:
|
|
21
|
-
- JSESSIONID=
|
|
21
|
+
- JSESSIONID=6B0311CC4E89FEA6AF12A8C4194D5FB9.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
|
-
-
|
|
34
|
+
- Wed, 02 May 2012 10:49:56 GMT
|
|
35
35
|
Server:
|
|
36
36
|
- Apache
|
|
37
37
|
Cache-Control:
|
|
@@ -267,9 +267,10 @@ http_interactions:
|
|
|
267
267
|
/></a>
|
|
268
268
|
</td>
|
|
269
269
|
</tr>
|
|
270
|
-
|
|
270
|
+
</tbody>
|
|
271
271
|
</table>
|
|
272
|
-
|
|
272
|
+
|
|
273
|
+
</div>
|
|
273
274
|
|
|
274
275
|
|
|
275
276
|
<div class="bbarl">
|
|
@@ -288,5 +289,5 @@ http_interactions:
|
|
|
288
289
|
</html>
|
|
289
290
|
|
|
290
291
|
http_version:
|
|
291
|
-
recorded_at:
|
|
292
|
+
recorded_at: Wed, 02 May 2012 10:49:56 GMT
|
|
292
293
|
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=
|
|
21
|
+
- JSESSIONID=6B0311CC4E89FEA6AF12A8C4194D5FB9.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
|
-
-
|
|
34
|
+
- Wed, 02 May 2012 10:49:56 GMT
|
|
35
35
|
Server:
|
|
36
36
|
- Apache
|
|
37
37
|
Cache-Control:
|
|
@@ -267,9 +267,10 @@ http_interactions:
|
|
|
267
267
|
/></a>
|
|
268
268
|
</td>
|
|
269
269
|
</tr>
|
|
270
|
-
|
|
270
|
+
</tbody>
|
|
271
271
|
</table>
|
|
272
|
-
|
|
272
|
+
|
|
273
|
+
</div>
|
|
273
274
|
|
|
274
275
|
|
|
275
276
|
<div class="bbarl">
|
|
@@ -288,5 +289,5 @@ http_interactions:
|
|
|
288
289
|
</html>
|
|
289
290
|
|
|
290
291
|
http_version:
|
|
291
|
-
recorded_at:
|
|
292
|
+
recorded_at: Wed, 02 May 2012 10:49:56 GMT
|
|
292
293
|
recorded_with: VCR 2.0.1
|