1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.ext.pymol; |
22 |
|
|
23 |
|
import static org.testng.Assert.assertEquals; |
24 |
|
import static org.testng.Assert.assertTrue; |
25 |
|
|
26 |
|
import java.util.List; |
27 |
|
|
28 |
|
import org.testng.annotations.Test; |
29 |
|
|
30 |
|
import jalview.structure.StructureCommand; |
31 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (21) |
Complexity: 2 |
Complexity Density: 0.11 |
|
32 |
|
public class PymolManagerTest |
33 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
1PASS
|
|
34 |
1 |
@Test(groups = "Functional")... |
35 |
|
public void testGetPostRequest() |
36 |
|
{ |
37 |
1 |
String req = PymolManager |
38 |
|
.getPostRequest(new StructureCommand("foobar")); |
39 |
1 |
assertEquals(req, |
40 |
|
"<methodCall><methodName>foobar</methodName><params></params></methodCall>"); |
41 |
|
|
42 |
1 |
req = PymolManager |
43 |
|
.getPostRequest(new StructureCommand("foobar", "blue", "all")); |
44 |
1 |
assertEquals(req, |
45 |
|
"<methodCall><methodName>foobar</methodName><params>" |
46 |
|
+ "<parameter><value>blue</value></parameter>" |
47 |
|
+ "<parameter><value>all</value></parameter>" |
48 |
|
+ "</params></methodCall>"); |
49 |
|
} |
50 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (15) |
Complexity: 1 |
Complexity Density: 0.07 |
1PASS
|
|
51 |
1 |
@Test(groups = "Functional")... |
52 |
|
public void testGetPymolPaths() |
53 |
|
{ |
54 |
|
|
55 |
|
|
56 |
|
|
57 |
1 |
List<String> paths = PymolManager.getPymolPaths("Mac OS X"); |
58 |
1 |
assertEquals(paths.size(), 1); |
59 |
1 |
assertTrue( |
60 |
|
paths.contains("/Applications/PyMOL.app/Contents/MacOS/PyMOL")); |
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
65 |
1 |
paths = PymolManager.getPymolPaths("Linux i386 1.5.0"); |
66 |
1 |
assertTrue(paths.contains("/usr/local/pymol/bin/PyMOL")); |
67 |
1 |
assertTrue(paths.contains("/usr/local/bin/PyMOL")); |
68 |
1 |
assertTrue(paths.contains("/usr/bin/PyMOL")); |
69 |
1 |
assertTrue(paths.contains("/usr/local/pymol/bin/PyMOL")); |
70 |
1 |
assertTrue(paths |
71 |
|
.contains(System.getProperty("user.home") + "/opt/bin/PyMOL")); |
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
76 |
1 |
paths = PymolManager.getPymolPaths("Windows 10"); |
77 |
1 |
assertTrue(paths.contains(System.getProperty("user.home") |
78 |
|
+ "\\AppData\\Local\\Schrodinger\\PyMOL2\\PyMOLWinWithConsole.bat")); |
79 |
1 |
assertTrue(paths.contains(System.getProperty("user.home") |
80 |
|
+ "\\PyMOL\\PyMOLWinWithConsole.bat")); |
81 |
1 |
assertTrue(paths |
82 |
|
.contains("C:\\ProgramData\\PyMOL\\PyMOLWinWithConsole.bat")); |
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
1 |
paths = PymolManager.getPymolPaths("VAX/VMS"); |
88 |
1 |
assertTrue(paths.isEmpty()); |
89 |
|
} |
90 |
|
} |