Files
sdk/tests/corelib/string_codeunits_test.dart
T
lrn@google.com dd31afbeca Added implementation of String.codeUnits.
Based on ListIterable implementation that should be reusable for a lot
of our existing length/indexing-based iterables too.

Review URL: https://codereview.chromium.org//12261009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18506 260f80e4-7a28-3924-810f-c04153c831b5
2013-02-14 09:51:43 +00:00

45 lines
1.3 KiB
Dart

// Copyright (c) 2011, 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.
main() {
test(String s) {
Iterable<int> units = s.codeUnits;
List<int> expectedUnits = <int>[];
for (int i = 0; i < s.length; i++) {
expectedUnits.add(s.codeUnitAt(i));
}
Expect.equals(s.length, units.length);
for (int i = 0; i < s.length; i++) {
Expect.equals(s.codeUnitAt(i), units.elementAt(i));
}
// for-in
var res = [];
for (int unit in units) {
res.add(unit);
}
Expect.listEquals(expectedUnits, res);
// .map
Expect.listEquals(expectedUnits.map((x) => x.toRadixString(16)).toList(),
units.map((x) => x.toRadixString(16)).toList());
}
test("abc");
test("\x00\u0000\u{000000}");
test("\u{ffff}\u{10000}\u{10ffff}");
String string = new String.fromCharCodes(
[0xdc00, 0xd800, 61, 0xd800, 0xdc00, 62, 0xdc00, 0xd800]);
test(string);
// Setting position in the middle of a surrogate pair is not allowed.
var r = new CodeUnits("\u{10000}");
var it = r.iterator;
Expect.isTrue(it.moveNext());
Expect.equals(0xD800, it.current);
Expect.isTrue(it.moveNext());
Expect.equals(0xDC00, it.current);
}