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
284
285
286
287
288
289
290
291
292
|
/*
* Copyright 2012 Red Hat, Inc.
* This file is part of IcedTea, http://icedtea.classpath.org
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package net.sourceforge.jnlp;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Hashtable;
import java.util.List;
import junit.framework.Assert;
import net.sourceforge.jnlp.cache.UpdatePolicy;
import net.sourceforge.jnlp.util.replacements.BASE64Encoder;
import org.junit.Test;
public class PluginBridgeTest {
private class MockJNLPCreator extends JNLPCreator {
private URL JNLPHref;
public URL getJNLPHref() {
return JNLPHref;
}
@Override
public JNLPFile create(URL location, Version version, ParserSettings settings,
UpdatePolicy policy, URL forceCodebase) throws IOException, ParseException {
JNLPHref = location;
return new MockJNLPFile();
}
}
private class MockJNLPFile extends JNLPFile {
public AppletDesc getApplet() {
return new AppletDesc(null, null, null, 0, 0, new HashMap<String, String>());
}
public ResourcesDesc getResources() {
return new ResourcesDesc(null, null, null, null);
}
}
static private PluginParameters createValidParamObject() {
Map<String, String> params = new HashMap<String, String>();
params.put("code", ""); // Avoids an exception being thrown
return new PluginParameters(params);
}
@Test
public void testAbsoluteJNLPHref() throws MalformedURLException, Exception {
URL codeBase = new URL("http://undesired.absolute.codebase.com");
String absoluteLocation = "http://absolute.href.com/test.jnlp";
PluginParameters params = createValidParamObject();
params.put("jnlp_href", absoluteLocation);
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginBridge pb = new PluginBridge(codeBase, null, "", "", 0, 0, params, mockCreator);
assertEquals(absoluteLocation, mockCreator.getJNLPHref().toExternalForm());
}
@Test
public void testRelativeJNLPHref() throws MalformedURLException, Exception {
URL codeBase = new URL("http://desired.absolute.codebase.com/");
String relativeLocation = "sub/dir/test.jnlp";
PluginParameters params = createValidParamObject();
params.put("jnlp_href", relativeLocation);
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginBridge pb = new PluginBridge(codeBase, null, "", "", 0, 0, params, mockCreator);
assertEquals(codeBase.toExternalForm() + relativeLocation,
mockCreator.getJNLPHref().toExternalForm());
}
@Test
public void testNoSubDirInCodeBase() throws MalformedURLException, Exception {
String desiredDomain = "http://desired.absolute.codebase.com";
URL codeBase = new URL(desiredDomain + "/undesired/sub/dir");
String relativeLocation = "/app/test/test.jnlp";
PluginParameters params = createValidParamObject();
params.put("jnlp_href", relativeLocation);
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginBridge pb = new PluginBridge(codeBase, null, "", "", 0, 0, params, mockCreator);
assertEquals(desiredDomain + relativeLocation,
mockCreator.getJNLPHref().toExternalForm());
}
@Test
public void testBase64StringDecoding() throws Exception {
String actualFile = "This is a sample string that will be encoded to" +
"a Base64 string and then decoded using PluginBridge's" +
"decoding method and compared.";
BASE64Encoder encoder = new BASE64Encoder();
String encodedFile = encoder.encodeBuffer(actualFile.getBytes());
byte[] decodedBytes = PluginBridge.decodeBase64String(encodedFile);
String decodedString = new String(decodedBytes);
Assert.assertEquals(actualFile, decodedString);
}
@Test
public void testEmbeddedJnlpWithValidCodebase() throws Exception {
URL codeBase = new URL("http://icedtea.classpath.org");
String relativeLocation = "/EmbeddedJnlpFile.jnlp";
//Codebase within jnlp file is VALID
/**
<?xml version="1.0"?>
<jnlp spec="1.5+"
href="EmbeddedJnlpFile.jnlp"
codebase="http://www.redhat.com"
>
<information>
<title>Sample Test</title>
<vendor>RedHat</vendor>
<offline-allowed/>
</information>
<resources>
<j2se version='1.6+' />
<jar href='EmbeddedJnlpJarOne.jar' main='true' />
<jar href='EmbeddedJnlpJarTwo.jar' main='true' />
</resources>
<applet-desc
documentBase="."
name="redhat.embeddedjnlp"
main-class="redhat.embeddedjnlp"
width="0"
height="0"
/>
</jnlp>
**/
String jnlpFileEncoded = "ICAgICAgICA8P3htbCB2ZXJzaW9uPSIxLjAiPz4NCiAgICAgICAgICAgIDxqbmxwIHNwZWM9IjEu" +
"NSsiIA0KICAgICAgICAgICAgICBocmVmPSJFbWJlZGRlZEpubHBGaWxlLmpubHAiIA0KICAgICAg" +
"ICAgICAgICBjb2RlYmFzZT0iaHR0cDovL3d3dy5yZWRoYXQuY29tIiAgICANCiAgICAgICAgICAg" +
"ID4NCg0KICAgICAgICAgICAgPGluZm9ybWF0aW9uPg0KICAgICAgICAgICAgICAgIDx0aXRsZT5T" +
"YW1wbGUgVGVzdDwvdGl0bGU+DQogICAgICAgICAgICAgICAgPHZlbmRvcj5SZWRIYXQ8L3ZlbmRv" +
"cj4NCiAgICAgICAgICAgICAgICA8b2ZmbGluZS1hbGxvd2VkLz4NCiAgICAgICAgICAgIDwvaW5m" +
"b3JtYXRpb24+DQoNCiAgICAgICAgICAgIDxyZXNvdXJjZXM+DQogICAgICAgICAgICAgICAgPGoy" +
"c2UgdmVyc2lvbj0nMS42KycgLz4NCiAgICAgICAgICAgICAgICA8amFyIGhyZWY9J0VtYmVkZGVk" +
"Sm5scEphck9uZS5qYXInIG1haW49J3RydWUnIC8+DQogICAgICAgICAgICAgICAgPGphciBocmVm" +
"PSdFbWJlZGRlZEpubHBKYXJUd28uamFyJyBtYWluPSd0cnVlJyAvPg0KICAgICAgICAgICAgPC9y" +
"ZXNvdXJjZXM+DQoNCiAgICAgICAgICAgIDxhcHBsZXQtZGVzYw0KICAgICAgICAgICAgICAgIGRv" +
"Y3VtZW50QmFzZT0iLiINCiAgICAgICAgICAgICAgICBuYW1lPSJyZWRoYXQuZW1iZWRkZWRqbmxw" +
"Ig0KICAgICAgICAgICAgICAgIG1haW4tY2xhc3M9InJlZGhhdC5lbWJlZGRlZGpubHAiDQogICAg" +
"ICAgICAgICAgICAgd2lkdGg9IjAiDQogICAgICAgICAgICAgICAgaGVpZ2h0PSIwIg0KICAgICAg" +
"ICAgICAgLz4NCiAgICAgICAgICAgIDwvam5scD4=";
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginParameters params = createValidParamObject();
params.put("jnlp_href", relativeLocation);
params.put("jnlp_embedded", jnlpFileEncoded);
String jnlpCodebase = "http://www.redhat.com";
PluginBridge pb = new PluginBridge(codeBase, null, "", "", 0, 0, params, mockCreator);
JARDesc[] jars = pb.getResources().getJARs();
//Check if there are two jars cached
Assert.assertTrue(jars.length == 2);
//Resource can be in any order
List<String> resourceLocations = new ArrayList<String>();
resourceLocations.add(jars[0].getLocation().toExternalForm());
resourceLocations.add(jars[1].getLocation().toExternalForm());
//Check URLs of jars
Assert.assertTrue(resourceLocations.contains(jnlpCodebase + "/EmbeddedJnlpJarOne.jar"));
Assert.assertTrue((resourceLocations.contains(jnlpCodebase + "/EmbeddedJnlpJarTwo.jar")));
}
@Test
//http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/applet/codebase_determination.html
//example 3
public void testEmbeddedJnlpWithInvalidCodebase() throws Exception {
URL overwrittenCodebase = new URL("http://icedtea.classpath.org");
String relativeLocation = "/EmbeddedJnlpFile.jnlp";
//Codebase within jnlp file is INVALID
/**
<?xml version="1.0"?>
<jnlp spec="1.5+"
href="EmbeddedJnlpFile.jnlp"
codebase="invalidPath"
>
<information>
<title>Sample Test</title>
<vendor>RedHat</vendor>
<offline-allowed/>
</information>
<resources>
<j2se version='1.6+' />
<jar href='EmbeddedJnlpJarOne.jar' main='true' />
<jar href='EmbeddedJnlpJarTwo.jar' main='true' />
</resources>
<applet-desc
documentBase="."
name="redhat.embeddedjnlp"
main-class="redhat.embeddedjnlp"
width="0"
height="0"
/>
</jnlp>
**/
String jnlpFileEncoded = "ICAgICAgICA8P3htbCB2ZXJzaW9uPSIxLjAiPz4NCiAgICAgICAgICAgIDxqbmxwIHNwZWM9IjEu" +
"NSsiIA0KICAgICAgICAgICAgICBocmVmPSJFbWJlZGRlZEpubHBGaWxlLmpubHAiIA0KICAgICAg" +
"ICAgICAgICBjb2RlYmFzZT0iaW52YWxpZFBhdGgiICAgIA0KICAgICAgICAgICAgPg0KDQogICAg" +
"ICAgICAgICA8aW5mb3JtYXRpb24+DQogICAgICAgICAgICAgICAgPHRpdGxlPlNhbXBsZSBUZXN0" +
"PC90aXRsZT4NCiAgICAgICAgICAgICAgICA8dmVuZG9yPlJlZEhhdDwvdmVuZG9yPg0KICAgICAg" +
"ICAgICAgICAgIDxvZmZsaW5lLWFsbG93ZWQvPg0KICAgICAgICAgICAgPC9pbmZvcm1hdGlvbj4N" +
"Cg0KICAgICAgICAgICAgPHJlc291cmNlcz4NCiAgICAgICAgICAgICAgICA8ajJzZSB2ZXJzaW9u" +
"PScxLjYrJyAvPg0KICAgICAgICAgICAgICAgIDxqYXIgaHJlZj0nRW1iZWRkZWRKbmxwSmFyT25l" +
"LmphcicgbWFpbj0ndHJ1ZScgLz4NCiAgICAgICAgICAgICAgICA8amFyIGhyZWY9J0VtYmVkZGVk" +
"Sm5scEphclR3by5qYXInIG1haW49J3RydWUnIC8+DQogICAgICAgICAgICA8L3Jlc291cmNlcz4N" +
"Cg0KICAgICAgICAgICAgPGFwcGxldC1kZXNjDQogICAgICAgICAgICAgICAgZG9jdW1lbnRCYXNl" +
"PSIuIg0KICAgICAgICAgICAgICAgIG5hbWU9InJlZGhhdC5lbWJlZGRlZGpubHAiDQogICAgICAg" +
"ICAgICAgICAgbWFpbi1jbGFzcz0icmVkaGF0LmVtYmVkZGVkam5scCINCiAgICAgICAgICAgICAg" +
"ICB3aWR0aD0iMCINCiAgICAgICAgICAgICAgICBoZWlnaHQ9IjAiDQogICAgICAgICAgICAvPg0K" +
"ICAgICAgICAgICAgPC9qbmxwPg==";
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginParameters params = createValidParamObject();
params.put("jnlp_href", relativeLocation);
params.put("jnlp_embedded", jnlpFileEncoded);
PluginBridge pb = new PluginBridge(overwrittenCodebase, null, "", "", 0, 0, params, mockCreator);
JARDesc[] jars = pb.getResources().getJARs();
//Check if there are two jars cached
Assert.assertTrue(jars.length == 2);
//Resource can be in any order
List<String> resourceLocations = new ArrayList<String>();
resourceLocations.add(jars[0].getLocation().toExternalForm());
resourceLocations.add(jars[1].getLocation().toExternalForm());
//Check URLs of jars
Assert.assertTrue(resourceLocations.contains(overwrittenCodebase + "/EmbeddedJnlpJarOne.jar"));
Assert.assertTrue((resourceLocations.contains(overwrittenCodebase + "/EmbeddedJnlpJarTwo.jar")));
}
@Test
public void testInvalidEmbeddedJnlp() throws Exception {
URL overwrittenCodebase = new URL("http://icedtea.classpath.org");
String relativeLocation = "/EmbeddedJnlpFile.jnlp";
//Embedded jnlp is invalid
String jnlpFileEncoded = "thisContextIsInvalid";
MockJNLPCreator mockCreator = new MockJNLPCreator();
PluginParameters params = createValidParamObject();
params.put("jnlp_href", relativeLocation);
params.put("jnlp_embedded", jnlpFileEncoded);
try {
new PluginBridge(overwrittenCodebase, null, "", "", 0, 0, params, mockCreator);
} catch (Exception e) {
return;
}
Assert.fail("PluginBridge was successfully created with an invalid embedded jnlp value");
}
}
|