X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fws%2Fjabaws%2FJalviewJabawsTestUtils.java;h=6ea3339cc2668165057e66a712677e936f4d0ddc;hb=34a685e3f7f8eab7a6f5b2b93a9ff199172d38a4;hp=c0b9a23d1e8eb824a78f6e7b12f13e728c0e2908;hpb=865a855a4ca87eadb3e5ff284ed32ed307d9c34b;p=jalview.git diff --git a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java index c0b9a23..6ea3339 100644 --- a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java +++ b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java @@ -1,36 +1,40 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1) + * 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. + * 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 . + * 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.ws.jabaws; -import static org.junit.Assert.*; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import jalview.ws.jws2.Jws2Discoverer; import java.util.Vector; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; public class JalviewJabawsTestUtils { - - @BeforeClass + + @BeforeClass(alwaysRun = true) public static void setUpBeforeClass() throws Exception { } @@ -43,39 +47,48 @@ public class JalviewJabawsTestUtils /** * test servers */ - public static String[] serviceUrls = new String[] - { "http://localhost:8080/jabaws" }; + private static String[] serviceUrls = new String[] { + "http://localhost:8080/jabaws", + "http://www.compbio.dundee.ac.uk/jabaws" }; - @Test + @Test(groups = { "Functional" }, enabled = false) public void testAnnotExport() { fail("Not yet implemented"); } - public static jalview.ws.jws2.Jws2Discoverer getJabawsDiscoverer() { + public static jalview.ws.jws2.Jws2Discoverer getJabawsDiscoverer() + { + return getJabawsDiscoverer(true); + } + + public static Jws2Discoverer getJabawsDiscoverer(boolean localhost) + { jalview.ws.jws2.Jws2Discoverer disc = jalview.ws.jws2.Jws2Discoverer .getDiscoverer(); - int p = 0; - String svcurls=""; - Vector services = new Vector(); - for (String url : JalviewJabawsTestUtils.serviceUrls) + String svcurls = ""; + if (localhost) { - svcurls+=url+"; "; - services.add(url); + int p = 0; + Vector services = new Vector(); + for (String url : JalviewJabawsTestUtils.serviceUrls) + { + svcurls += url + "; "; + services.add(url); + } + ; + Jws2Discoverer.getDiscoverer().setServiceUrls(services); } - ; - Jws2Discoverer.setServiceUrls(services); - try { disc.run(); } catch (Exception e) { e.printStackTrace(); - fail("Aborting. Problem discovering services. Tried "+svcurls); + fail("Aborting. Problem discovering services. Tried " + svcurls); } - assertTrue("Failed to discover any services at ", - disc.getServices().size() > 0); + assertTrue("Failed to discover any services at ", disc.getServices() + .size() > 0); return disc; }