mirror of
https://github.com/flutter/flutter.git
synced 2026-02-15 23:33:36 +08:00
82 lines
2.9 KiB
Dart
82 lines
2.9 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
@TestOn('!chrome')
|
|
import 'dart:typed_data';
|
|
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'message_codecs_testing.dart';
|
|
|
|
void main() {
|
|
group('JSON message codec', () {
|
|
const MessageCodec<dynamic> json = JSONMessageCodec();
|
|
test('should encode and decode big numbers', () {
|
|
checkEncodeDecode<dynamic>(json, 9223372036854775807);
|
|
checkEncodeDecode<dynamic>(json, -9223372036854775807);
|
|
});
|
|
test('should encode and decode list with a big number', () {
|
|
final List<dynamic> message = <dynamic>[-7000000000000000007]; // ignore: avoid_js_rounded_ints, since we check for round-tripping, the actual value doesn't matter!
|
|
checkEncodeDecode<dynamic>(json, message);
|
|
});
|
|
});
|
|
group('Standard message codec', () {
|
|
const MessageCodec<dynamic> standard = StandardMessageCodec();
|
|
test('should encode integers correctly at boundary cases', () {
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
-0x7fffffff - 1,
|
|
<int>[3, 0x00, 0x00, 0x00, 0x80],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
-0x7fffffff - 2,
|
|
<int>[4, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
0x7fffffff,
|
|
<int>[3, 0xff, 0xff, 0xff, 0x7f],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
0x7fffffff + 1,
|
|
<int>[4, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
-0x7fffffffffffffff - 1,
|
|
<int>[4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
-0x7fffffffffffffff - 2,
|
|
<int>[4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
0x7fffffffffffffff,
|
|
<int>[4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f],
|
|
);
|
|
checkEncoding<dynamic>(
|
|
standard,
|
|
0x7fffffffffffffff + 1,
|
|
<int>[4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80],
|
|
);
|
|
});
|
|
test('should encode and decode big numbers', () {
|
|
checkEncodeDecode<dynamic>(standard, 9223372036854775807);
|
|
checkEncodeDecode<dynamic>(standard, -9223372036854775807);
|
|
});
|
|
test('should encode and decode a list containing big numbers', () {
|
|
final List<dynamic> message = <dynamic>[
|
|
-7000000000000000007, // ignore: avoid_js_rounded_ints, browsers are skipped below
|
|
Int64List.fromList(<int>[-0x7fffffffffffffff - 1, 0, 0x7fffffffffffffff]),
|
|
];
|
|
checkEncodeDecode<dynamic>(standard, message);
|
|
});
|
|
}, skip: isBrowser); // [intended] Javascript can't handle the big integer literals used here.
|
|
}
|