tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / js / script-tests / date-constructor.js
1 description(
2 'This test case tests the Date constructor. ' +
3 'In particular, it tests many cases of creating a Date from another Date ' +
4 'and creating a Date from an object that has both valueOf and toString functions.'
5 );
6
7 var object = new Object;
8 object.valueOf = function() { return 1111; }
9 object.toSTring = function() { return "2222"; }
10
11 shouldBe('isNaN(new Date(""))', 'true');
12
13 var timeZoneOffset = Date.parse("Dec 25 1995") - Date.parse("Dec 25 1995 GMT");
14
15 shouldBe('new Date(1111).getTime()', '1111');
16 shouldBe('new Date(object).getTime()', '1111');
17 shouldBe('new Date(new Date(1111)).getTime()', '1111');
18 shouldBe('new Date(new Date(1111).toString()).getTime()', '1000');
19
20 shouldBe('new Date(1111, 1).getTime() - timeZoneOffset', '-27104803200000');
21 shouldBe('new Date(1111, 1, 1).getTime() - timeZoneOffset', '-27104803200000');
22 shouldBe('new Date(1111, 1, 1, 1).getTime() - timeZoneOffset', '-27104799600000');
23 shouldBe('new Date(1111, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799540000');
24 shouldBe('new Date(1111, 1, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799539000');
25 shouldBe('new Date(1111, 1, 1, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799538999');
26 shouldBe('new Date(1111, 1, 1, 1, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799538999');
27 shouldBe('new Date(1111, 1, 1, 1, 1, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799538999');
28 shouldBe('new Date(1111, 1, 1, 1, 1, 1, 1, 1, 1).getTime() - timeZoneOffset', '-27104799538999');
29
30 shouldBe('new Date(new Date(1111, 1)).getTime() - timeZoneOffset', '-27104803200000');
31 shouldBe('new Date(new Date(1111, 1, 1)).getTime() - timeZoneOffset', '-27104803200000');
32 shouldBe('new Date(new Date(1111, 1, 1, 1)).getTime() - timeZoneOffset', '-27104799600000');
33 shouldBe('new Date(new Date(1111, 1, 1, 1, 1, 1)).getTime() - timeZoneOffset', '-27104799539000');
34 shouldBe('new Date(new Date(1111, 1, 1, 1, 1, 1, 1)).getTime() - timeZoneOffset', '-27104799538999');
35 shouldBe('new Date(new Date(1111, 1, 1, 1, 1, 1, 1, 1)).getTime() - timeZoneOffset', '-27104799538999');
36 shouldBe('new Date(new Date(1111, 1, 1, 1, 1, 1, 1, 1, 1)).getTime() - timeZoneOffset', '-27104799538999');
37
38 // In Firefox, the results of the following tests are timezone-dependent, which likely implies that the implementation is not quite correct.
39 // Our results are even worse, though, as the dates are clipped: (new Date(1111, 1201).getTime()) == (new Date(1111, 601).getTime())
40 // shouldBe('new Date(1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111).getTime() - timeZoneOffset', '-24085894227889');
41 // shouldBe('new Date(new Date(1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111)).getTime() - timeZoneOffset', '-24085894227889');
42
43 // Regression test for Bug 26978 (https://bugs.webkit.org/show_bug.cgi?id=26978)
44 var testStr = "";
45 var year = { valueOf: function() { testStr += 1; return 2007; } };
46 var month = { valueOf: function() { testStr += 2; return 2; } };
47 var date = { valueOf: function() { testStr += 3; return 4; } };
48 var hours = { valueOf: function() { testStr += 4; return 13; } };
49 var minutes = { valueOf: function() { testStr += 5; return 50; } };
50 var seconds = { valueOf: function() { testStr += 6; return 0; } };
51 var ms = { valueOf: function() { testStr += 7; return 999; } };
52
53 testStr = "";
54 new Date(year, month, date, hours, minutes, seconds, ms);
55 shouldBe('testStr', '\"1234567\"');
56
57 testStr = "";
58 Date.UTC(year, month, date, hours, minutes, seconds, ms);
59 shouldBe('testStr', '\"1234567\"');