mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 15:17:07 +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>
54 lines
2.1 KiB
Dart
54 lines
2.1 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";
|
|
|
|
// Make sure the years in the range of single digits are handled correctly with
|
|
// month roll-over. (This tests an edge condition when delegating to
|
|
// JavaScript's Date constructor.)
|
|
|
|
void check(String expected, DateTime actual) {
|
|
Expect.equals(expected, actual.toString());
|
|
}
|
|
|
|
testUtc() {
|
|
check("0099-01-01 00:00:00.000Z", new DateTime.utc(99, 1));
|
|
check("0100-01-01 00:00:00.000Z", new DateTime.utc(99, 1 + 12));
|
|
check("0000-01-01 00:00:00.000Z", new DateTime.utc(0, 1));
|
|
check("-0001-01-01 00:00:00.000Z", new DateTime.utc(0, 1 - 12));
|
|
|
|
check("0099-03-02 00:00:00.000Z", new DateTime.utc(99, 2, 30));
|
|
check("0100-03-02 00:00:00.000Z", new DateTime.utc(99, 2 + 12, 30));
|
|
|
|
check("0004-03-01 00:00:00.000Z", new DateTime.utc(3, 2 + 12, 30));
|
|
check("0004-03-01 00:00:00.000Z", new DateTime.utc(4, 2, 30));
|
|
check("0004-03-01 00:00:00.000Z", new DateTime.utc(5, 2 - 12, 30));
|
|
|
|
check("0005-03-02 00:00:00.000Z", new DateTime.utc(4, 2 + 12, 30));
|
|
check("0005-03-02 00:00:00.000Z", new DateTime.utc(5, 2, 30));
|
|
check("0005-03-02 00:00:00.000Z", new DateTime.utc(6, 2 - 12, 30));
|
|
}
|
|
|
|
testLocal() {
|
|
check("0099-01-01 00:00:00.000", new DateTime(99, 1));
|
|
check("0100-01-01 00:00:00.000", new DateTime(99, 1 + 12));
|
|
check("0000-01-01 00:00:00.000", new DateTime(0, 1));
|
|
check("-0001-01-01 00:00:00.000", new DateTime(0, 1 - 12));
|
|
|
|
check("0099-03-02 00:00:00.000", new DateTime(99, 2, 30));
|
|
check("0100-03-02 00:00:00.000", new DateTime(99, 2 + 12, 30));
|
|
|
|
check("0004-03-01 00:00:00.000", new DateTime(3, 2 + 12, 30));
|
|
check("0004-03-01 00:00:00.000", new DateTime(4, 2, 30));
|
|
check("0004-03-01 00:00:00.000", new DateTime(5, 2 - 12, 30));
|
|
|
|
check("0005-03-02 00:00:00.000", new DateTime(4, 2 + 12, 30));
|
|
check("0005-03-02 00:00:00.000", new DateTime(5, 2, 30));
|
|
check("0005-03-02 00:00:00.000", new DateTime(6, 2 - 12, 30));
|
|
}
|
|
|
|
main() {
|
|
testUtc();
|
|
testLocal();
|
|
}
|