2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.jabaws;
23 import jalview.gui.JvOptionPane;
24 import jalview.ws.jws2.Jws2Discoverer;
26 import java.util.Vector;
28 import org.testng.Assert;
29 import org.testng.annotations.AfterClass;
30 import org.testng.annotations.BeforeClass;
31 import org.testng.annotations.Test;
33 public class JalviewJabawsTestUtils
36 @BeforeClass(alwaysRun = true)
37 public void setUpJvOptionPane()
39 JvOptionPane.setInteractiveMode(false);
40 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
43 @BeforeClass(alwaysRun = true)
44 public static void setUpBeforeClass() throws Exception
48 @AfterClass(alwaysRun = true)
49 public static void tearDownAfterClass() throws Exception
56 private static String[] serviceUrls = new String[] {
57 "http://localhost:8080/jabaws",
58 "http://www.compbio.dundee.ac.uk/jabaws" };
60 @Test(groups = { "Functional" }, enabled = false)
61 public void testAnnotExport()
63 Assert.fail("Not yet implemented");
66 public static jalview.ws.jws2.Jws2Discoverer getJabawsDiscoverer()
68 return getJabawsDiscoverer(true);
72 * Returns a service discoverer that queries localhost and compbio urls.
74 * If using this method, be sure to have read-only Jalview properties, to
75 * avoid writing the test urls to .jalview_properties. This can be done by
78 * <li>running Jalview main with arguments -props propFileName</li>
79 * <li>calling Cache.loadProperties(filename)</li>
85 public static Jws2Discoverer getJabawsDiscoverer(boolean localhost)
87 jalview.ws.jws2.Jws2Discoverer disc = jalview.ws.jws2.Jws2Discoverer
93 Vector<String> services = new Vector<String>();
94 for (String url : JalviewJabawsTestUtils.serviceUrls)
96 svcurls += url + "; ";
100 Jws2Discoverer.getDiscoverer().setServiceUrls(services);
105 } catch (Exception e)
109 "Aborting. Problem discovering services. Tried " + svcurls);
111 Assert.assertTrue(disc.getServices().size() > 0,
112 "Failed to discover any services at ");