mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:07:11 +00:00
a4d799c402
Note that cast_test.dart isn't migrated yet due to #39517. First patch set is just copying the tests over. The second patchset has the actual meaningful changes. Change-Id: I89233f20187b4305a776f865cde09a984423fa4f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/125920 Commit-Queue: Bob Nystrom <rnystrom@google.com> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com>
50 lines
1.5 KiB
Dart
50 lines
1.5 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
// Test DateTime timeZoneName and timeZoneOffset getters.
|
|
|
|
testUtc() {
|
|
var d = DateTime.parse("2012-03-04T03:25:38.123Z");
|
|
Expect.equals("UTC", d.timeZoneName);
|
|
Expect.equals(0, d.timeZoneOffset.inSeconds);
|
|
}
|
|
|
|
testLocal() {
|
|
checkOffset(String name, Duration offset) {
|
|
// Timezone abbreviations are not in bijection with their timezones.
|
|
// For example AST stands for "Arab Standard Time" (UTC+03), as well as
|
|
// "Arabian Standard Time" (UTC+04), or PST stands for Pacific Standard Time
|
|
// and Philippine Standard Time.
|
|
//
|
|
// Hardcode some common timezones.
|
|
if (name == "CET") {
|
|
Expect.equals(1, offset.inHours);
|
|
} else if (name == "CEST") {
|
|
Expect.equals(2, offset.inHours);
|
|
} else if (name == "GMT") {
|
|
Expect.equals(0, offset.inSeconds);
|
|
} else if (name == "EST") {
|
|
Expect.equals(-5, offset.inHours);
|
|
} else if (name == "EDT") {
|
|
Expect.equals(-4, offset.inHours);
|
|
} else if (name == "PDT") {
|
|
Expect.equals(-7, offset.inHours);
|
|
}
|
|
}
|
|
|
|
var d = DateTime.parse("2012-01-02T13:45:23");
|
|
String name = d.timeZoneName;
|
|
checkOffset(name, d.timeZoneOffset);
|
|
|
|
d = DateTime.parse("2012-07-02T13:45:23");
|
|
name = d.timeZoneName;
|
|
checkOffset(name, d.timeZoneOffset);
|
|
}
|
|
|
|
main() {
|
|
testUtc();
|
|
testLocal();
|
|
}
|