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.rest;
23 import static org.testng.AssertJUnit.assertNotNull;
24 import static org.testng.AssertJUnit.assertTrue;
26 import jalview.gui.AlignFrame;
27 import jalview.gui.JvOptionPane;
31 import org.testng.annotations.BeforeClass;
32 import org.testng.annotations.Test;
38 public class ShmmrRSBSService
41 @BeforeClass(alwaysRun = true)
42 public void setUpJvOptionPane()
44 JvOptionPane.setInteractiveMode(false);
45 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
48 @Test(groups = { "Functional" })
49 public void testShmmrService()
53 "Test Rsd Exchange using using default Shmmr service failed.",
54 testRsdExchange("Test using default Shmmr service",
55 RestClient.makeShmmrRestClient().service));
58 @Test(groups = { "Functional" })
59 public void testShmmrServiceDataprep() throws Exception
61 RestClient _rc = RestClient.makeShmmrRestClient();
63 AlignFrame alf = new jalview.io.FileLoader(false)
64 .LoadFileWaitTillLoaded("examples/testdata/smad.fa",
65 jalview.io.DataSourceType.FILE);
66 assertNotNull("Couldn't find test data.", alf);
67 alf.loadJalviewDataFile("examples/testdata/smad_groups.jva",
68 jalview.io.DataSourceType.FILE, null, null);
70 "Couldn't load the test data's annotation file (should be 5 groups but found "
71 + alf.getViewport().getAlignment().getGroups().size()
72 + ").", alf.getViewport().getAlignment().getGroups()
75 RestClient rc = new RestClient(_rc.service, alf, true);
77 assertNotNull("Couldn't creat RestClient job.", rc);
78 jalview.bin.Cache.initLogger();
79 RestJob rjb = new RestJob(0, new RestJobThread(rc),
80 rc.av.getAlignment(), null);
81 rjb.setAlignmentForInputs(rc.service.getInputParams().values(),
82 rc.av.getAlignment());
83 for (Map.Entry<String, InputType> e : rc.service.getInputParams()
86 System.out.println("For Input '" + e.getKey() + ":\n"
87 + e.getValue().formatForInput(rjb).getContentLength());
91 private static boolean testRsdExchange(String desc, String servicestring)
95 RestServiceDescription newService = new RestServiceDescription(
97 if (!newService.isValid())
99 throw new Error("Failed to create service from '" + servicestring
100 + "'.\n" + newService.getInvalidMessage());
102 return testRsdExchange(desc, newService);
103 } catch (Throwable x)
105 System.err.println("Failed for service (" + desc + "): "
112 private static boolean testRsdExchange(String desc,
113 RestServiceDescription service)
117 String fromservicetostring = service.toString();
118 RestServiceDescription newService = new RestServiceDescription(
119 fromservicetostring);
120 if (!newService.isValid())
122 throw new Error("Failed to create service from '"
123 + fromservicetostring + "'.\n"
124 + newService.getInvalidMessage());
127 if (!service.equals(newService))
129 System.err.println("Failed for service (" + desc + ").");
130 System.err.println("Original service and parsed service differ.");
131 System.err.println("Original: " + fromservicetostring);
132 System.err.println("Parsed : " + newService.toString());
135 } catch (Throwable x)
137 System.err.println("Failed for service (" + desc + "): "
138 + service.toString());