JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / io / BioJsHTMLOutputTest.java
index 27c8a0e..63485a6 100644 (file)
@@ -1,7 +1,28 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview 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 for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 package jalview.io;
 
-import jalview.json.binding.v1.BioJSReleasePojo;
-import jalview.json.binding.v1.BioJSRepositoryPojo;
+import jalview.gui.JvOptionPane;
+import jalview.json.binding.biojs.BioJSReleasePojo;
+import jalview.json.binding.biojs.BioJSRepositoryPojo;
 
 import java.io.File;
 import java.io.IOException;
@@ -13,13 +34,20 @@ import java.util.TreeMap;
 
 import org.testng.Assert;
 import org.testng.AssertJUnit;
+import org.testng.annotations.BeforeClass;
 import org.testng.annotations.Test;
 
-
 public class BioJsHTMLOutputTest
 {
 
-  @Test(groups ={ "Functional" })
+  @BeforeClass(alwaysRun = true)
+  public void setUpJvOptionPane()
+  {
+    JvOptionPane.setInteractiveMode(false);
+    JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
+  }
+
+  @Test(groups = { "Functional" })
   public void getJalviewAlignmentAsJsonString()
   {
     String bjsTemplate = null;
@@ -35,7 +63,8 @@ public class BioJsHTMLOutputTest
       {
         e.printStackTrace();
       }
-      bjsTemplate = BioJsHTMLOutput.getBioJsTemplateAsString();
+      bjsTemplate = HTMLOutput.readFileAsString(
+              BioJsHTMLOutput.getCurrentBJSTemplateFile());
       // System.out.println(bjsTemplate);
     } catch (IOException e)
     {
@@ -44,13 +73,15 @@ public class BioJsHTMLOutputTest
     Assert.assertNotNull(bjsTemplate);
   }
 
-  @Test(groups =
-  { "Functional" }, expectedExceptions = NullPointerException.class)
+  @Test(
+    groups =
+    { "Functional" },
+    expectedExceptions = NullPointerException.class)
   public void expectedNullPointerException()
   {
     try
     {
-      BioJsHTMLOutput.refreshBioJSVersionsInfo(null);
+      BioJsHTMLOutput.refreshVersionInfo(null);
     } catch (URISyntaxException e)
     {
       AssertJUnit.fail("Expception occured while testing!");
@@ -58,14 +89,14 @@ public class BioJsHTMLOutputTest
     }
   }
 
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void getBioJsMSAVersions()
   {
     TreeMap<String, File> versions = null;
     try
     {
-      BioJsHTMLOutput
-              .refreshBioJSVersionsInfo(BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY);
+      BioJsHTMLOutput.refreshVersionInfo(
+              BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY);
       versions = BioJsHTMLOutput.getBioJsMSAVersions();
     } catch (URISyntaxException e)
     {
@@ -73,10 +104,10 @@ public class BioJsHTMLOutputTest
       e.printStackTrace();
     }
     AssertJUnit.assertNotNull("No versions found", versions);
-    AssertJUnit.assertTrue("One or more Templates required", versions.size() > 0);
+    AssertJUnit.assertTrue("One or more Templates required",
+            versions.size() > 0);
     System.out
-            .println("Number of discovered versions : "
-            + versions.size());
+            .println("Number of discovered versions : " + versions.size());
     for (String v : versions.keySet())
     {
       System.out.println("version : " + v);
@@ -90,21 +121,20 @@ public class BioJsHTMLOutputTest
 
   }
 
-  @Test(groups =
-  { "Network" })
+  @Test(groups = { "Network" })
   public void testBioJsUpdate()
   {
     String url = BioJsHTMLOutput.BJS_TEMPLATE_GIT_REPO;
-    AssertJUnit.assertTrue("URL not reacable : " + url, urlIsReachable(url));
+    AssertJUnit.assertTrue("URL not reacable : " + url,
+            urlIsReachable(url));
     String response = BioJsHTMLOutput.getURLContentAsString(url);
     AssertJUnit.assertNotNull("Null response read from url!", response);
     BioJSRepositoryPojo repository = new BioJSRepositoryPojo(response);
     System.out.println(">>> description : " + repository.getDescription());
+    System.out.println(
+            ">>> latest version : " + repository.getLatestReleaseVersion());
     System.out
-.println(">>> latest version : "
-            + repository.getLatestReleaseVersion());
-    System.out.println(">>> repo count : "
-            + repository.getReleases().size());
+            .println(">>> repo count : " + repository.getReleases().size());
     for (BioJSReleasePojo release : repository.getReleases())
     {
       System.out.println("repo type : " + release.getType());