X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FBioJsHTMLOutputTest.java;h=5c776f6e66e0db8a8db701def5b317cbef940372;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=27c8a0e15ed165c8990d07cdb669eb604dc62456;hpb=fddf3084802b37e5cee17829e32692a4aac3e60d;p=jalview.git diff --git a/test/jalview/io/BioJsHTMLOutputTest.java b/test/jalview/io/BioJsHTMLOutputTest.java index 27c8a0e..5c776f6 100644 --- a/test/jalview/io/BioJsHTMLOutputTest.java +++ b/test/jalview/io/BioJsHTMLOutputTest.java @@ -1,7 +1,27 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 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 . + * 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.json.binding.biojs.BioJSReleasePojo; +import jalview.json.binding.biojs.BioJSRepositoryPojo; import java.io.File; import java.io.IOException; @@ -15,11 +35,10 @@ import org.testng.Assert; import org.testng.AssertJUnit; import org.testng.annotations.Test; - public class BioJsHTMLOutputTest { - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void getJalviewAlignmentAsJsonString() { String bjsTemplate = null; @@ -44,8 +63,9 @@ public class BioJsHTMLOutputTest Assert.assertNotNull(bjsTemplate); } - @Test(groups = - { "Functional" }, expectedExceptions = NullPointerException.class) + @Test( + groups = { "Functional" }, + expectedExceptions = NullPointerException.class) public void expectedNullPointerException() { try @@ -58,7 +78,7 @@ public class BioJsHTMLOutputTest } } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void getBioJsMSAVersions() { TreeMap versions = null; @@ -73,10 +93,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,18 +110,17 @@ 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 : " + System.out.println(">>> latest version : " + repository.getLatestReleaseVersion()); System.out.println(">>> repo count : " + repository.getReleases().size());