blob: a2e3ab98cf6184d6dc52cc5676999051250124b3 [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 Uint8List asUint8List([int offsetInBytes = 0, int length ])
/// Creates a Uint8List view of a region of this byte buffer.
/// ...
/// The viewed region start at offsetInBytes and contains length bytes. If length
/// is omitted, the range extends to the end of the buffer.
/// @description Checks that the created viewed region begins with offsetInBytes
/// byte and contains length bytes. When length is omitted, the range extends to
/// the end of the buffer.
/// @author ngl@unipro.ru
import "dart:typed_data";
import "../../../Utils/expect.dart";
void check(ByteBuffer buffer) {
Uint8List res = buffer.asUint8List(0);
int viewSizeInBytes = res.lengthInBytes;
int offset1 = 1;
int length1 = viewSizeInBytes - offset1 - 1;
int offset2 = 3;
Uint8List res1 = buffer.asUint8List(offset1, length1);
Uint8List res2 = buffer.asUint8List(offset2);
int view1SizeInBytes = res1.lengthInBytes;
int view2SizeInBytes = res2.lengthInBytes;
Expect.isTrue(res is Uint8List);
Expect.isTrue(res1 is Uint8List);
Expect.isTrue(res2 is Uint8List);
Expect.equals(length1, view1SizeInBytes);
Expect.equals(viewSizeInBytes - offset2, view2SizeInBytes);
if (viewSizeInBytes != 0) {
// set value to the first byte of res1
res1[0] = 2;
// offset1 byte of res is equal to the set value
Expect.equals(2, res[offset1]);
// set value to the last byte of res1
res1[view1SizeInBytes - 1] = 4;
// (offset1 + view1_size_in_bytes - 1) byte of res is equal to the set value
Expect.equals(4, res[offset1 + view1SizeInBytes - 1]);
// set value to the first byte of res2
res2[0] = 3;
// offset2 byte of res is equal to the set value
Expect.equals(3, res[offset2]);
// set value to the last byte of res2
res2[view2SizeInBytes - 1] = 5;
// the last byte of res is equal to the set value
Expect.equals(5, res[viewSizeInBytes - 1]);
}
}
main() {
var list2 = new List.filled(6, 0);
var list4 = new Int32x4List(6);
check((new Int8List.fromList(list2)).buffer);
check((new Int16List.fromList(list2)).buffer);
check((new Int32List.fromList(list2)).buffer);
check((new Int64List.fromList(list2)).buffer);
check((new Int32x4List.fromList(list4)).buffer);
}