X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fws%2Fjabaws%2FJalviewJabawsTestUtils.java;h=fb73c1038e6a39b7259d62c7d19f4fd80bd6ce5f;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=f7d0e48bf60457052da54498edebbb83c61f13af;hpb=e2e0e87734b8725a605ccf7b46bc8c655f0ba75c;p=jalview.git diff --git a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java index f7d0e48..fb73c10 100644 --- a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java +++ b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java @@ -1,6 +1,27 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) + * Copyright (C) 2014 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.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; @@ -11,7 +32,7 @@ import org.junit.Test; public class JalviewJabawsTestUtils { - + @BeforeClass public static void setUpBeforeClass() throws Exception { @@ -34,31 +55,39 @@ public class JalviewJabawsTestUtils 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; } + }