/hg/icedtea-web: AppTrustWarningPanelTest.java: Backuped, reset ...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu Sep 10 15:34:38 UTC 2015


changeset 3b61ee8ddadc in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=3b61ee8ddadc
author: Jiri Vanek <jvanek at redhat.com>
date: Thu Sep 10 17:34:11 2015 +0200

	AppTrustWarningPanelTest.java: Backuped, reset and restored .appletTrustSettings so its content can not affect test


diffstat:

 ChangeLog                                                                                                |   5 +
 tests/netx/unit/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanelTest.java |  29 ++++++++++
 2 files changed, 34 insertions(+), 0 deletions(-)

diffs (67 lines):

diff -r 063bf4ec5756 -r 3b61ee8ddadc ChangeLog
--- a/ChangeLog	Thu Sep 10 11:50:01 2015 +0200
+++ b/ChangeLog	Thu Sep 10 17:34:11 2015 +0200
@@ -1,3 +1,8 @@
+2015-09-10  Jiri Vanek  <jvanek at redhat.com>
+
+	* tests/netx/unit/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanelTest.java:
+	Backuped, reset and restored .appletTrustSettings so its content can not affect test
+
 2015-09-10  Jiri Vanek  <jvanek at redhat.com>
 
 	* netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java:
diff -r 063bf4ec5756 -r 3b61ee8ddadc tests/netx/unit/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanelTest.java
--- a/tests/netx/unit/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanelTest.java	Thu Sep 10 11:50:01 2015 +0200
+++ b/tests/netx/unit/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanelTest.java	Thu Sep 10 17:34:11 2015 +0200
@@ -1,5 +1,7 @@
 package net.sourceforge.jnlp.security.dialogs.apptrustwarningpanel;
 
+import java.io.File;
+import java.io.IOException;
 import java.net.URL;
 import java.util.ArrayList;
 import java.util.HashMap;
@@ -9,6 +11,9 @@
 import net.sourceforge.jnlp.PluginBridge;
 import net.sourceforge.jnlp.PluginParameters;
 import net.sourceforge.jnlp.security.dialogs.remember.RememberPanel;
+import net.sourceforge.jnlp.browsertesting.browsers.firefox.FirefoxProfilesOperator;
+import net.sourceforge.jnlp.config.PathsAndFiles;
+import org.junit.AfterClass;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotNull;
@@ -30,9 +35,33 @@
 
     /* Should contain an instance of each AppTrustWarningPanel subclass */
     private static List<AppTrustWarningPanel> panelList = new ArrayList<AppTrustWarningPanel>();
+    private static File appletSecurityBackup;
 
+    
+    public static void backupAppletSecurity() throws IOException {
+        appletSecurityBackup = File.createTempFile("appletSecurity", "itwTestBAckup");
+        FirefoxProfilesOperator.copyFile(PathsAndFiles.APPLET_TRUST_SETTINGS_USER.getFile(), appletSecurityBackup);
+    }
+
+    public static void removeAppletSecurityImpl() throws IOException {
+        if (appletSecurityBackup.exists()) {
+            PathsAndFiles.APPLET_TRUST_SETTINGS_USER.getFile().delete();
+        }
+    }
+
+    @AfterClass
+    public static void restoreAppletSecurity() throws IOException {
+        if (appletSecurityBackup.exists()) {
+            removeAppletSecurityImpl();
+            FirefoxProfilesOperator.copyFile(appletSecurityBackup, PathsAndFiles.APPLET_TRUST_SETTINGS_USER.getFile());
+            appletSecurityBackup.delete();
+        }
+    }
     @BeforeClass
     public static void setup() throws Exception {
+        backupAppletSecurity();
+        //emptying  .appletTrustSettings to not affect run of this test
+        removeAppletSecurityImpl();
         mockCodebase = new URL("http://www.example.com");
         mockDocumentBase = new URL("http://www.example.com");
         mockJar = "ApplicationName.jar";


More information about the distro-pkg-dev mailing list