blob: 238db3ce41e7291063ce34edd97a454d0da0c5c5 [file] [log] [blame]
// Copyright (c) 2017, 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.
/// @assertion Converter<List<int>, String> decoder
/// Returns the decoder of this, converting from T to S.
/// It may be stateful an should not be reused.
/// @description Checks that system encoding decoder decodes from UTF-8
/// on Linux and Mac
/// @author a.semenov@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
main() {
const SystemEncoding systemEncoding = const SystemEncoding();
if (Platform.isLinux || Platform.isMacOS) {
Expect.equals(
"utf-8",
systemEncoding.decoder.convert([117, 116, 102, 45, 56])
);
Expect.equals(
"Date de création",
systemEncoding.decoder.convert(
[0x44, 0x61, 0x74, 0x65, 0x20, 0x64, 0x65, 0x20,
0x63, 0x72, 0xc3, 0xa9, 0x61, 0x74, 0x69, 0x6f, 0x6e]
)
);
}
// For windows there is no way to find current code page
}