Clover icon

Coverage Report

  1. Project Clover database Mon Sep 2 2024 17:57:51 BST
  2. Package jalview.bin

File CacheTest.java

 

Code metrics

0
19
5
1
100
63
6
0.32
3.8
5
1.2

Classes

Class Line # Actions
CacheTest 38 19 6
0.958333395.8%
 

Contributing tests

This file is covered by 2 tests. .

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
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.
11    *
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.
16    *
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.
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   
 
38    public class CacheTest
39    {
40   
 
41  1 toggle @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   
 
50  1 toggle @BeforeClass(alwaysRun = true)
51    public void setUpBeforeClass()
52    {
53  1 locale = Locale.getDefault();
54    }
55   
 
56  1 toggle @AfterClass(alwaysRun = true)
57    public void tearDownAfterClass()
58    {
59  1 Locale.setDefault(locale);
60    }
61   
62    /**
63    * Test that saved date format does not vary with current locale
64    */
 
65  1 toggle @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    // currently using Locale.UK to format dates:
76  1 assertEquals(formattedDate2,
77    SimpleDateFormat
78    .getDateTimeInstance(SimpleDateFormat.MEDIUM,
79    SimpleDateFormat.MEDIUM, Locale.UK)
80    .format(now));
81    }
82   
 
83  1 toggle @Test(groups = "Functional")
84    public void testVersionChecker()
85    {
86  1 Cache.loadProperties("test/jalview/bin/testProps.jvprops");
87  1 try
88    {
89    // 10s sleep to allow VersionChecker thread to run
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    }