Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Side by Side Diff: tests/corelib/date_time7_test.dart

Issue 10417009: Reapply "Add support for timezone offset and timezone name." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing semicolon. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698