JAL-3280 Test for remote release build_properties file version check
[jalview.git] / test / jalview / bin / CacheTest.java
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   @BeforeClass(alwaysRun = true)
42   public void setUpJvOptionPane()
43   {
44     JvOptionPane.setInteractiveMode(false);
45     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
46   }
47
48   private Locale locale;
49
50   @BeforeClass(alwaysRun = true)
51   public void setUpBeforeClass()
52   {
53     locale = Locale.getDefault();
54   }
55
56   @AfterClass(alwaysRun = true)
57   public void tearDownAfterClass()
58   {
59     Locale.setDefault(locale);
60   }
61
62   /**
63    * Test that saved date format does not vary with current locale
64    */
65   @Test(groups = "Functional")
66   public void testSetDateProperty()
67   {
68     Date now = new Date();
69     Locale.setDefault(Locale.FRENCH);
70     String formattedDate = Cache.setDateProperty("test", now);
71     Locale.setDefault(Locale.UK);
72     String formattedDate2 = Cache.setDateProperty("test", now);
73     assertEquals(formattedDate, formattedDate2);
74
75     // currently using Locale.UK to format dates:
76     assertEquals(formattedDate2,
77             SimpleDateFormat
78                     .getDateTimeInstance(SimpleDateFormat.MEDIUM,
79                             SimpleDateFormat.MEDIUM, Locale.UK)
80                     .format(now));
81   }
82
83   @Test(groups = "Functional")
84   public void testVersionChecker()
85   {
86     Cache.loadProperties("test/jalview/bin/testProps.jvprops");
87     try
88     {
89       // 10s sleep to allow VersionChecker thread to run
90       Thread.sleep(10000);
91     } catch (Exception e)
92     {
93       e.printStackTrace();
94     }
95     String latestVersion = Cache.getProperty("LATEST_VERSION");
96     assertNotNull(latestVersion);
97     assertNotEquals(latestVersion, "test");
98     assertTrue(latestVersion.startsWith("2."));
99   }
100 }