/hg/icedtea-web: Fixing various reproducers
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Wed Jul 15 17:15:25 UTC 2015
changeset 6fa605fbab3a in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=6fa605fbab3a
author: Jiri Vanek <jvanek at redhat.com>
date: Wed Jul 15 19:15:07 2015 +0200
Fixing various reproducers
* netx/net/sourceforge/jnlp/runtime/JnlpBoot.java: LaunchException now also cause exit with nonzero return
* tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java: fixed url for SunSwingDemo and checking reduced to no exception only
* tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java: moved to one browser only
* tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java: added flush, validateTree replaced by validate
* tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java: same
* tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java: fixed check on sucess
* tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java: added comment explaining failure in most browsers
* tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java: verification on counts loosed to 7 from 10 (last are often consumed via exit)
* tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java: added exclusive handlers for midori and epiphany
* tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java: added comment explaining failure in most browsers
* tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp: added second description to make ti fail in strict mode
* tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java: fixed verification asserts
diffstat:
ChangeLog | 28 ++++++++++
netx/net/sourceforge/jnlp/runtime/JnlpBoot.java | 1 +
tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java | 13 +++-
tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java | 5 +-
tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java | 3 +-
tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java | 7 +-
tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java | 1 +
tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java | 3 +-
tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java | 24 ++++++--
tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java | 15 +++++
tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java | 2 +
tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp | 2 +
tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java | 13 +++-
13 files changed, 95 insertions(+), 22 deletions(-)
diffs (388 lines):
diff -r 438a49dce528 -r 6fa605fbab3a ChangeLog
--- a/ChangeLog Tue Jul 14 15:29:37 2015 +0200
+++ b/ChangeLog Wed Jul 15 19:15:07 2015 +0200
@@ -1,3 +1,31 @@
+2015-07-15 Jiri Vanek <jvanek at redhat.com>
+
+ Fixing various reproducers
+ * netx/net/sourceforge/jnlp/runtime/JnlpBoot.java: LaunchException now also
+ cause exit with nonzero return
+ * tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java:
+ fixed url for SunSwingDemo and checking reduced to no exception only
+ * tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java:
+ moved to one browser only
+ * tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java:
+ added flush, validateTree replaced by validate
+ * tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java:
+ same
+ * tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java:
+ fixed check on sucess
+ * tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java:
+ added comment explaining failure in most browsers
+ * tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java:
+ verification on counts loosed to 7 from 10 (last are often consumed via exit)
+ * tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java:
+ added exclusive handlers for midori and epiphany
+ * tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java:
+ added comment explaining failure in most browsers
+ * tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp:
+ added second description to make ti fail in strict mode
+ * tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java:
+ fixed verification asserts
+
2015-07-14 Jiri Vanek <jvanek at redhat.com>
Fixed various tests
diff -r 438a49dce528 -r 6fa605fbab3a netx/net/sourceforge/jnlp/runtime/JnlpBoot.java
--- a/netx/net/sourceforge/jnlp/runtime/JnlpBoot.java Tue Jul 14 15:29:37 2015 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/JnlpBoot.java Wed Jul 15 19:15:07 2015 +0200
@@ -67,6 +67,7 @@
launcher.launch(Boot.getFileLocation());
} catch (LaunchException ex) {
// default handler prints this
+ JNLPRuntime.exit(1);
} catch (Exception ex) {
OutputController.getLogger().log(ex);
Boot.fatalError(R("RUnexpected", ex.toString(), ex.getStackTrace()[0]));
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java
--- a/tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/custom/remote/testcases/RemoteApplicationSettings.java Wed Jul 15 19:15:07 2015 +0200
@@ -248,10 +248,19 @@
}
}
- public static class SunSwingDemo extends NearlyNoOutputs {
+ public static class SunSwingDemo extends StringBasedURL {
public SunSwingDemo() throws MalformedURLException {
- super("http://java.sun.com/docs/books/tutorialJWS/uiswing/events/ex6/ComponentEventDemo.jnlp");
+ super("https://docs.oracle.com/javase/tutorialJWS/samples/uiswing/ComponentEventDemoProject/ComponentEventDemo.jnlp");
+ }
+
+ @Override
+ public void evaluate(ProcessResult pr) {
+ Assert.assertFalse(pr.stdout.contains("Exception"));
+ Assert.assertFalse(pr.stdout.contains("Error"));
+ Assert.assertFalse(pr.stderr.contains("Exception"));
+ Assert.assertFalse(pr.stderr.contains("Error"));
+
}
}
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java
--- a/tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java Wed Jul 15 19:15:07 2015 +0200
@@ -43,7 +43,6 @@
import net.sourceforge.jnlp.browsertesting.BrowserTest;
import net.sourceforge.jnlp.browsertesting.Browsers;
import net.sourceforge.jnlp.annotations.TestInBrowsers;
-import net.sourceforge.jnlp.closinglisteners.Rule;
import net.sourceforge.jnlp.closinglisteners.RulesFolowingClosingListener;
import static net.sourceforge.jnlp.closinglisteners.RulesFolowingClosingListener.*;
import org.junit.Assert;
@@ -90,7 +89,7 @@
}
@Test
- @TestInBrowsers(testIn = {Browsers.all})
+ @TestInBrowsers(testIn = {Browsers.one})
public void AppletTestSignedFirefoxTestXslowX() throws Exception {
ServerAccess.PROCESS_TIMEOUT = 30 * 1000;
try {
@@ -104,7 +103,7 @@
}
@Test
- @TestInBrowsers(testIn = {Browsers.all})
+ @TestInBrowsers(testIn = {Browsers.one})
public void AppletTestSignedFirefoxTest() throws Exception {
ProcessResult pr = server.executeBrowser("/AppletTestSigned.html", ServerAccess.AutoClose.CLOSE_ON_CORRECT_END);
evaluateSignedApplet(pr, false);
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java
--- a/tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/signed/CountingAppletSigned/srcs/CountingAppletSigned.java Wed Jul 15 19:15:07 2015 +0200
@@ -51,6 +51,7 @@
int i = 0;
while (true) {
System.out.println("counting... " + i);
+ System.out.flush();
if (counter != null && i == counter.intValue()) {
System.exit(-i);
}
@@ -69,7 +70,7 @@
public void run() {
self.setLayout(new BorderLayout());
self.add(new JLabel("S"));
- self.validateTree();
+ self.validate();
self.repaint();
}
});
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java
--- a/tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/signed/DeploymentPropertiesAreExposed/testcases/DeploymentPropertiesAreExposedTest.java Wed Jul 15 19:15:07 2015 +0200
@@ -37,9 +37,7 @@
import static org.junit.Assert.*;
-import java.io.File;
import java.util.Arrays;
-import java.util.Collections;
import java.util.List;
import net.sourceforge.jnlp.ServerAccess;
import net.sourceforge.jnlp.ProcessResult;
@@ -60,12 +58,11 @@
DeploymentConfiguration config = JNLPRuntime.getConfiguration();
config.load();
String userLogDir = config.getProperty(DeploymentConfiguration.KEY_USER_LOG_DIR);
- String expectedRegex = userLogDir + "/?";
String actual = result.stdout.trim();
- boolean stdOutMatches = actual.matches(expectedRegex);
+ boolean stdOutMatches = actual.contains(userLogDir);
- assertTrue("'" + actual + "' should match '" + expectedRegex + "' but did not", stdOutMatches);
+ assertTrue("'" + actual + "' should contains '" + userLogDir + "' but did not", stdOutMatches);
}
}
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java
--- a/tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/AppletTagWithMissingCodeAttribute/testcases/AppletTagWithMissingCodeAttribute.java Wed Jul 15 19:15:07 2015 +0200
@@ -50,6 +50,7 @@
@Test
@TestInBrowsers(testIn = { Browsers.firefox })
+ //fails everywhere but in firefox. other browsers dont know how to handle it
public void EmbeddedAppletWithMissingCodeAttribute() throws Exception {
ProcessResult pr = server.executeBrowser("/AppletTagWithMissingCodeAttribute.html", AutoClose.CLOSE_ON_CORRECT_END);
Assert.assertTrue("Stdout should contain " + closingString + " but did not", pr.stdout.contains(closingString));
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java
--- a/tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/CountingApplet1/srcs/CountingApplet1.java Wed Jul 15 19:15:07 2015 +0200
@@ -50,6 +50,7 @@
int i = 0;
while (true) {
System.out.println("counting... " + i);
+ System.out.flush();
if (counter != null && i == counter.intValue()) {
System.exit(-i);
}
@@ -68,7 +69,7 @@
public void run() {
self.setLayout(new BorderLayout());
self.add(new JLabel("C1"));
- self.validateTree();
+ self.validate();
self.repaint();
}
});
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java
--- a/tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/CountingApplet1/testcases/ParallelAppletsTest.java Wed Jul 15 19:15:07 2015 +0200
@@ -36,6 +36,7 @@
*/
import net.sourceforge.jnlp.ProcessResult;
+import net.sourceforge.jnlp.ServerAccess;
import net.sourceforge.jnlp.browsertesting.BrowserTest;
import net.sourceforge.jnlp.browsertesting.Browsers;
import net.sourceforge.jnlp.annotations.NeedsDisplay;
@@ -60,7 +61,7 @@
@NeedsDisplay
public void testParallelAppletsTest1x2E() throws Exception {
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1_x_2EE.html");
- checkExactCounts(1, 10, pr);
+ checkExactCounts(1, 7, pr);
checkNotInitialised(pr);
}
@@ -70,7 +71,7 @@
@NeedsDisplay
public void testParallelAppletsTest1x2e() throws Exception {
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1_x_2e.html");
- checkExactCounts(1, 10, pr);
+ checkExactCounts(1, 7, pr);
checkException(pr);
}
@@ -118,7 +119,7 @@
public void testParallelAppletsTest1x2sk() throws Exception {
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1_x_2sk.html");
checkExitNotAllowed(pr);
- checkAtLeastCounts(1, 10, pr);
+ checkAtLeastCounts(1, 7, pr);
checkExactCounts(2, 5, pr);
}
@@ -129,7 +130,7 @@
public void testParallelAppletsTest1kx2() throws Exception {
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1k_x_2.html");
checkExitNotAllowed(pr);
- checkAtLeastCounts(1, 10, pr);
+ checkAtLeastCounts(1, 7, pr);
checkExactCounts(2, 5, pr);
}
@@ -138,8 +139,14 @@
@TestInBrowsers(testIn = {Browsers.one})
@NeedsDisplay
public void testParallelAppletsTest1x2() throws Exception {
+ long back = ServerAccess.PROCESS_TIMEOUT;
+ ServerAccess.PROCESS_TIMEOUT = 40 * 1000;//ms
+ try{
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1_x_2.html");
- checkExactCounts(2, 10, pr);
+ checkExactCounts(2, 7, pr);
+ }finally {
+ ServerAccess.PROCESS_TIMEOUT = back;
+ }
}
@Test
@@ -147,7 +154,7 @@
@NeedsDisplay
public void testParallelAppletsTest1x1() throws Exception {
ProcessResult pr = server.executeBrowser("ParallelAppletsTest_1_x_1.html");
- checkExactCounts(2, 10, pr);
+ checkExactCounts(2, 7, pr);
}
private static final String ACE = "java.security.AccessControlException";
private static final String Sexit = "System.exit()";
@@ -164,7 +171,8 @@
private void checkExitNotAllowed(ProcessResult pr) {
- Assert.assertTrue("Applets cant call " + Sexit, pr.stderr.matches("(?s).*" + ACE + ".*" + Sexit + ".*"));
+ Assert.assertTrue("Applets cant call " + Sexit, pr.stderr.contains(ACE));
+ Assert.assertTrue("Applets cant call " + Sexit, pr.stderr.contains(Sexit));
}
private void checkNotInitialised(ProcessResult pr) {
@@ -184,6 +192,8 @@
Assert.assertTrue("Applet's exception should be confirmed by " + AppletThrowedException, pr.stderr.contains(AppletThrowedException));
}
+ //appelt is counting to ten, but last shouts are very often consumated during termination,
+ //so the chek is now called with "7" instead of "10"
private void checkExactCounts(int howManyTimes, int countIdTill, ProcessResult pr) {
for (int i = 0; i <= countIdTill; i++) {
String countId = CountStub + i+"\n";
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java
--- a/tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/JnlpHrefAttribute/testcases/JnlpHrefAttributeTest.java Wed Jul 15 19:15:07 2015 +0200
@@ -39,6 +39,7 @@
import org.junit.Test;
import net.sourceforge.jnlp.ProcessResult;
+import net.sourceforge.jnlp.ServerAccess;
import net.sourceforge.jnlp.annotations.NeedsDisplay;
import net.sourceforge.jnlp.annotations.TestInBrowsers;
import net.sourceforge.jnlp.browsertesting.BrowserTest;
@@ -51,6 +52,13 @@
@TestInBrowsers(testIn = { Browsers.firefox, Browsers.opera})
@NeedsDisplay
public void testJnlpHrefAttributeWorks() throws Exception {
+ //midori and epiphany really do not understand jnlpHref
+ if (server.getBrowserLocation().endsWith("midori") || server.getBrowserLocation().endsWith("epiphany")){
+ return;
+ }
+ if (server.getBrowserLocation().endsWith(ServerAccess.UNSET_BROWSER)){
+ return;
+ }
String url = "./JnlpHrefAttribute.html";
ProcessResult pr = server.executeBrowser(url, new AutoOkClosingListener(), new AutoOkClosingListener());
Assert.assertTrue("The stdout should contain " + AutoOkClosingListener.MAGICAL_OK_CLOSING_STRING + ", but it didnt.", pr.stdout.contains(AutoOkClosingListener.MAGICAL_OK_CLOSING_STRING));
@@ -60,6 +68,13 @@
@TestInBrowsers(testIn = { Browsers.midori, Browsers.epiphany})
@NeedsDisplay
public void testJnlpHrefAttributeDoesNotWork() throws Exception {
+ //others really do
+ if (!(server.getBrowserLocation().endsWith("midori") || server.getBrowserLocation().endsWith("epiphany"))){
+ return;
+ }
+ if (server.getBrowserLocation().endsWith(ServerAccess.UNSET_BROWSER)){
+ return;
+ }
String url = "./JnlpHrefAttribute.html";
ProcessResult pr = server.executeBrowser(url, new AutoErrorClosingListener(), new AutoErrorClosingListener());
Assert.assertFalse("The stdout should not contain " + AutoOkClosingListener.MAGICAL_OK_CLOSING_STRING + ", but it did.", pr.stdout.contains(AutoOkClosingListener.MAGICAL_OK_CLOSING_STRING));
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java
--- a/tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/SingleInstanceServiceTest/testcases/SingleInstanceTest.java Wed Jul 15 19:15:07 2015 +0200
@@ -167,6 +167,7 @@
@Test
@NeedsDisplay
@TestInBrowsers(testIn = Browsers.one)
+ //known to not work in midori and epihany
public void htmlpAppletXhtmlpApplet() throws Exception {
ProcessResult[] results = executeSingleInstanceCheck(htmlpApplet, htmlpApplet);
String id = "htmlpAppletXhtmlpApplet";
@@ -179,6 +180,7 @@
@Test
@NeedsDisplay
@TestInBrowsers(testIn = Browsers.one)
+ //known to not work in midori and epihany
public void htmlJnlpHrefAppletXhtmlJnlpHrefApplet() throws Exception {
ProcessResult[] results = executeSingleInstanceCheck(htmlJnlpHrefApplet, htmlJnlpHrefApplet);
String id = "htmlJnlpHrefAppletXhtmlJnlpHrefApplet";
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp
--- a/tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/simpletest1/resources/simpletest1.jnlp Wed Jul 15 19:15:07 2015 +0200
@@ -42,6 +42,8 @@
<vendor>IcedTea</vendor>
<homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
<description>simpletest1</description>
+ <!-- Below is invalid, but shouldkill app only in strict mode-->
+ <description>simpletest2</description>
<offline/>
</information>
<resources>
diff -r 438a49dce528 -r 6fa605fbab3a tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java
--- a/tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java Tue Jul 14 15:29:37 2015 +0200
+++ b/tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java Wed Jul 15 19:15:07 2015 +0200
@@ -42,8 +42,10 @@
import java.net.URL;
import java.util.Arrays;
import java.util.List;
+import net.sourceforge.jnlp.OptionsDefinitions;
import net.sourceforge.jnlp.ProcessResult;
import net.sourceforge.jnlp.ServerAccess;
+import net.sourceforge.jnlp.util.FileUtils;
import org.junit.Assert;
import org.junit.Test;
@@ -51,7 +53,7 @@
public class SimpleTest1Test {
private static ServerAccess server = new ServerAccess();
- private static final List<String> strict = Arrays.asList(new String[]{"-strict", ServerAccess.VERBOSE_OPTION});
+ private static final List<String> strict = Arrays.asList(new String[]{OptionsDefinitions.OPTIONS.STRICT.option, ServerAccess.VERBOSE_OPTION});
private void checkLaunched(ProcessResult pr) {
checkLaunched(pr, false);
@@ -72,7 +74,11 @@
//Assert.assertFalse("testSimpletest1lunchOk stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
}
Assert.assertFalse(pr.wasTerminated);
- Assert.assertEquals((Integer) 0, pr.returnValue);
+ if (negate){
+ Assert.assertEquals((Integer) 1, pr.returnValue);
+ } else {
+ Assert.assertEquals((Integer) 0, pr.returnValue);
+ }
}
@Test
@@ -106,9 +112,10 @@
}
private void createStrictFile(String originalResourceName, String newResourceName, URL codebase) throws MalformedURLException, IOException {
- String originalContent = ServerAccess.getContentOfStream(new FileInputStream(new File(server.getDir(), originalResourceName)));
+ String originalContent = FileUtils.loadFileAsString(new File(server.getDir(), originalResourceName));
String nwContent1 = originalContent.replaceAll("href=\""+originalResourceName+"\"", "href=\""+newResourceName+"\"");
String nwContent = nwContent1.replaceAll("codebase=\".\"", "codebase=\"" + codebase + "\"");
+ nwContent = nwContent.replace("<description>simpletest2</description>", "");
ServerAccess.saveFile(nwContent, new File(server.getDir(), newResourceName));
}
}
More information about the distro-pkg-dev
mailing list