X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FBioJsHTMLOutputTest.java;h=63485a64208b4b6df99ff8cfb0fea12ecd6ae971;hb=refs%2Fheads%2Fimprovement%2FJAL-3847_some_attempts_to_set_gradle_and_groovy_versions;hp=09ce54c7be64e764eb3f3dcb04e01d694a3917e1;hpb=a8362b85de4f21440433bc9385bd9b3a24354532;p=jalview.git diff --git a/test/jalview/io/BioJsHTMLOutputTest.java b/test/jalview/io/BioJsHTMLOutputTest.java index 09ce54c..63485a6 100644 --- a/test/jalview/io/BioJsHTMLOutputTest.java +++ b/test/jalview/io/BioJsHTMLOutputTest.java @@ -20,6 +20,7 @@ */ package jalview.io; +import jalview.gui.JvOptionPane; import jalview.json.binding.biojs.BioJSReleasePojo; import jalview.json.binding.biojs.BioJSRepositoryPojo; @@ -33,11 +34,19 @@ 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 { + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + @Test(groups = { "Functional" }) public void getJalviewAlignmentAsJsonString() { @@ -54,8 +63,8 @@ public class BioJsHTMLOutputTest { e.printStackTrace(); } - bjsTemplate = HtmlFile.readFileAsString(BioJsHTMLOutput - .getCurrentBJSTemplateFile()); + bjsTemplate = HTMLOutput.readFileAsString( + BioJsHTMLOutput.getCurrentBJSTemplateFile()); // System.out.println(bjsTemplate); } catch (IOException e) { @@ -65,13 +74,14 @@ public class BioJsHTMLOutputTest } @Test( - groups = { "Functional" }, + groups = + { "Functional" }, expectedExceptions = NullPointerException.class) public void expectedNullPointerException() { try { - BioJsHTMLOutput.refreshBioJSVersionsInfo(null); + BioJsHTMLOutput.refreshVersionInfo(null); } catch (URISyntaxException e) { AssertJUnit.fail("Expception occured while testing!"); @@ -85,8 +95,8 @@ public class BioJsHTMLOutputTest TreeMap versions = null; try { - BioJsHTMLOutput - .refreshBioJSVersionsInfo(BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY); + BioJsHTMLOutput.refreshVersionInfo( + BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY); versions = BioJsHTMLOutput.getBioJsMSAVersions(); } catch (URISyntaxException e) { @@ -115,16 +125,16 @@ public class BioJsHTMLOutputTest 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(">>> repo count : " - + repository.getReleases().size()); + System.out.println( + ">>> latest version : " + repository.getLatestReleaseVersion()); + System.out + .println(">>> repo count : " + repository.getReleases().size()); for (BioJSReleasePojo release : repository.getReleases()) { System.out.println("repo type : " + release.getType());