summaryrefslogtreecommitdiff
path: root/frontend/gamma/tests/tests/Clipperz/PM/Date.test.js
Unidiff
Diffstat (limited to 'frontend/gamma/tests/tests/Clipperz/PM/Date.test.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/tests/tests/Clipperz/PM/Date.test.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/gamma/tests/tests/Clipperz/PM/Date.test.js b/frontend/gamma/tests/tests/Clipperz/PM/Date.test.js
index e4b4db6..ff4745f 100644
--- a/frontend/gamma/tests/tests/Clipperz/PM/Date.test.js
+++ b/frontend/gamma/tests/tests/Clipperz/PM/Date.test.js
@@ -1,46 +1,44 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26var tests = { 24var tests = {
27 25
28 //------------------------------------------------------------------------- 26 //-------------------------------------------------------------------------
29 27
30 'offlineDataParsing_test': function () { 28 'offlineDataParsing_test': function () {
31 var value; 29 var value;
32 varparsedValue; 30 varparsedValue;
33 var expectedValue; 31 var expectedValue;
34 32
35 value = 'Tue Mar 27 06:41:37 PDT 2007'; 33 value = 'Tue Mar 27 06:41:37 PDT 2007';
36 parsedValue = Clipperz.PM.Date.parse(value); 34 parsedValue = Clipperz.PM.Date.parse(value);
37 expectedValue = new Date(); 35 expectedValue = new Date();
38 expectedValue.setUTCFullYear(2007, 03 - 1, 27); 36 expectedValue.setUTCFullYear(2007, 03 - 1, 27);
39 expectedValue.setUTCHours(13, 41, 37); 37 expectedValue.setUTCHours(13, 41, 37);
40 // SimpleTest.is(parsedValue.toString(), 'Tue Mar 27 2007 15:41:37 GMT+0200 (CEST)', "the data in the format stored in the offline copy is processed correctly [1]"); 38 // SimpleTest.is(parsedValue.toString(), 'Tue Mar 27 2007 15:41:37 GMT+0200 (CEST)', "the data in the format stored in the offline copy is processed correctly [1]");
41 SimpleTest.is(parsedValue.toString(), expectedValue.toString(), "the data in the format stored in the offline copy is processed correctly [1]"); 39 SimpleTest.is(parsedValue.toString(), expectedValue.toString(), "the data in the format stored in the offline copy is processed correctly [1]");
42 40
43 value = 'Thu May 10 15:01:21 PDT 2007'; 41 value = 'Thu May 10 15:01:21 PDT 2007';
44 parsedValue = Clipperz.PM.Date.parse(value); 42 parsedValue = Clipperz.PM.Date.parse(value);
45 expectedValue = new Date(); 43 expectedValue = new Date();
46 expectedValue.setUTCFullYear(2007, 05 - 1, 10); 44 expectedValue.setUTCFullYear(2007, 05 - 1, 10);