OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // Test Date timeZoneName and timeZoneOffset getters. | |
6 | |
7 testUtc() { | |
8 var d = new Date.fromString("2012-03-04T03:25:38.123Z"); | |
9 Expect.equals("UTC", d.timeZoneName); | |
10 Expect.equals(0, d.timeZoneOffset.inSeconds); | |
11 } | |
12 | |
13 testLocal() { | |
14 checkOffset(String name, Duration offset) { | |
15 // Timezone abbreviations are not in bijection with their timezones. | |
16 // For example AST stands for "Arab Standard Time" (UTC+03), as well as | |
17 // "Arabian Standard Time" (UTC+04), or PST stands for Pacific Standard Time | |
18 // and Philippine Standard Time. | |
19 // | |
20 // Hardcode some common timezones. | |
21 if (name == "CET") { | |
22 Expect.equals(1, offset.inHours); | |
23 } else if (name == "CEST") { | |
24 Expect.equals(2, offset.inHours); | |
25 } else if (name == "GMT") { | |
26 Expect.equals(0, offset.inSeconds); | |
27 } else if (name == "EST") { | |
28 Expect.equals(-5, offset.inHours); | |
29 } else if (name == "EDT") { | |
30 Expect.equals(-4, offset.inHours); | |
31 } else if (name == "PDT") { | |
32 Expect.equals(-7, offset.inHours); | |
33 } | |
34 } | |
35 | |
36 var d = new Date.fromString("2012-01-02T13:45:23"); | |
37 String name = d.timeZoneName; | |
38 checkOffset(name, d.timeZoneOffset); | |
39 | |
40 d = new Date.fromString("2012-07-02T13:45:23"); | |
41 name = d.timeZoneName; | |
42 checkOffset(name, d.timeZoneOffset); | |
43 } | |
44 | |
45 main() { | |
46 testUtc(); | |
47 testLocal(); | |
48 } | |
OLD | NEW |