1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.bin; |
22 |
|
|
23 |
|
import static org.testng.Assert.assertNotEquals; |
24 |
|
import static org.testng.Assert.assertTrue; |
25 |
|
import static org.testng.AssertJUnit.assertEquals; |
26 |
|
import static org.testng.AssertJUnit.assertNotNull; |
27 |
|
|
28 |
|
import java.text.SimpleDateFormat; |
29 |
|
import java.util.Date; |
30 |
|
import java.util.Locale; |
31 |
|
|
32 |
|
import org.testng.annotations.AfterClass; |
33 |
|
import org.testng.annotations.BeforeClass; |
34 |
|
import org.testng.annotations.Test; |
35 |
|
|
36 |
|
import jalview.gui.JvOptionPane; |
37 |
|
|
|
|
| 95.8% |
Uncovered Elements: 1 (24) |
Complexity: 6 |
Complexity Density: 0.32 |
|
38 |
|
public class CacheTest |
39 |
|
{ |
40 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
41 |
1 |
@BeforeClass(alwaysRun = true)... |
42 |
|
public void setUpJvOptionPane() |
43 |
|
{ |
44 |
1 |
JvOptionPane.setInteractiveMode(false); |
45 |
1 |
JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); |
46 |
|
} |
47 |
|
|
48 |
|
private Locale locale; |
49 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
1 |
@BeforeClass(alwaysRun = true)... |
51 |
|
public void setUpBeforeClass() |
52 |
|
{ |
53 |
1 |
locale = Locale.getDefault(); |
54 |
|
} |
55 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
1 |
@AfterClass(alwaysRun = true)... |
57 |
|
public void tearDownAfterClass() |
58 |
|
{ |
59 |
1 |
Locale.setDefault(locale); |
60 |
|
} |
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
1PASS
|
|
65 |
1 |
@Test(groups = "Functional")... |
66 |
|
public void testSetDateProperty() |
67 |
|
{ |
68 |
1 |
Date now = new Date(); |
69 |
1 |
Locale.setDefault(Locale.FRENCH); |
70 |
1 |
String formattedDate = Cache.setDateProperty("test", now); |
71 |
1 |
Locale.setDefault(Locale.UK); |
72 |
1 |
String formattedDate2 = Cache.setDateProperty("test", now); |
73 |
1 |
assertEquals(formattedDate, formattedDate2); |
74 |
|
|
75 |
|
|
76 |
1 |
assertEquals(formattedDate2, |
77 |
|
SimpleDateFormat |
78 |
|
.getDateTimeInstance(SimpleDateFormat.MEDIUM, |
79 |
|
SimpleDateFormat.MEDIUM, Locale.UK) |
80 |
|
.format(now)); |
81 |
|
} |
82 |
|
|
|
|
| 87.5% |
Uncovered Elements: 1 (8) |
Complexity: 2 |
Complexity Density: 0.25 |
1PASS
|
|
83 |
1 |
@Test(groups = "Functional")... |
84 |
|
public void testVersionChecker() |
85 |
|
{ |
86 |
1 |
Cache.loadProperties("test/jalview/bin/testProps.jvprops"); |
87 |
1 |
try |
88 |
|
{ |
89 |
|
|
90 |
1 |
Thread.sleep(10000); |
91 |
|
} catch (Exception e) |
92 |
|
{ |
93 |
0 |
e.printStackTrace(); |
94 |
|
} |
95 |
1 |
String latestVersion = Cache.getProperty("LATEST_VERSION"); |
96 |
1 |
assertNotNull(latestVersion); |
97 |
1 |
assertNotEquals(latestVersion, "test"); |
98 |
1 |
assertTrue(latestVersion.startsWith("2.")); |
99 |
|
} |
100 |
|
} |