X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FBioJsHTMLOutputTest.java;h=24e6cf7b2155d0d78173d33eff83eeb4f3837e7f;hb=5f4e1e4c330b045e9c8bce28ee132a0fca3834d8;hp=5c776f6e66e0db8a8db701def5b317cbef940372;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/test/jalview/io/BioJsHTMLOutputTest.java b/test/jalview/io/BioJsHTMLOutputTest.java index 5c776f6..24e6cf7 100644 --- a/test/jalview/io/BioJsHTMLOutputTest.java +++ b/test/jalview/io/BioJsHTMLOutputTest.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -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,7 +63,8 @@ public class BioJsHTMLOutputTest { e.printStackTrace(); } - bjsTemplate = BioJsHTMLOutput.getBioJsTemplateAsString(); + bjsTemplate = HTMLOutput.readFileAsString(BioJsHTMLOutput + .getCurrentBJSTemplateFile()); // System.out.println(bjsTemplate); } catch (IOException e) { @@ -70,7 +80,7 @@ public class BioJsHTMLOutputTest { try { - BioJsHTMLOutput.refreshBioJSVersionsInfo(null); + BioJsHTMLOutput.refreshVersionInfo(null); } catch (URISyntaxException e) { AssertJUnit.fail("Expception occured while testing!"); @@ -85,7 +95,7 @@ public class BioJsHTMLOutputTest try { BioJsHTMLOutput - .refreshBioJSVersionsInfo(BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY); + .refreshVersionInfo(BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY); versions = BioJsHTMLOutput.getBioJsMSAVersions(); } catch (URISyntaxException e) {