6c757957db
DDC's codegen test copies those files to a local "gen" directory so that it can do stuff like splitting out the multitests before it compiles them to JS. I left all of that alone, so the rest of DDC's test infrastructure is unchanged. The very first step that builds the "gen" directory just copies from sdk/tests/..._strong/... instead and the rest is good to go. I did not move not_yet_strong_tests.dart somewhere more accessible yet because I'm not sure if kernel needs it or where it should go. I did not create any status files because DDC doesn't need them and there are no test suites for the new directories for the other platforms.
52 lines
1.4 KiB
Dart
52 lines
1.4 KiB
Dart
import 'dart:html';
|
|
|
|
import 'package:expect/minitest.dart';
|
|
|
|
import 'utils.dart';
|
|
|
|
serializationTest(name, value) {
|
|
test(name, () {
|
|
// To check how value is serialized and deserialized, we create a
|
|
// MessageEvent.
|
|
final event =
|
|
new MessageEvent('', data: value, origin: '', lastEventId: '');
|
|
verifyGraph(value, event.data);
|
|
});
|
|
}
|
|
|
|
main() {
|
|
serializationTest('null', null);
|
|
serializationTest('int', 1);
|
|
serializationTest('double', 2.39);
|
|
serializationTest('string', 'hey!');
|
|
|
|
final simpleMap = {'a': 100, 'b': 's'};
|
|
final dagMap = { 'x': simpleMap, 'y': simpleMap };
|
|
final cyclicMap = { 'b': dagMap };
|
|
cyclicMap['a'] = cyclicMap;
|
|
serializationTest('simple map', simpleMap);
|
|
serializationTest('dag map', dagMap);
|
|
serializationTest('cyclic map', cyclicMap);
|
|
|
|
final simpleList = [ 100, 's'];
|
|
final dagList = [ simpleList, simpleList ];
|
|
final cyclicList = [ dagList ];
|
|
cyclicList.add(cyclicList);
|
|
serializationTest('simple list', simpleList);
|
|
serializationTest('dag list', dagList);
|
|
serializationTest('cyclic list', cyclicList);
|
|
|
|
serializationTest('datetime', [new DateTime.now()]);
|
|
|
|
var blob = new Blob(
|
|
['Indescribable... Indestructible! Nothing can stop it!'],
|
|
'text/plain');
|
|
serializationTest('blob', [blob]);
|
|
|
|
var canvas = new CanvasElement();
|
|
canvas.width = 100;
|
|
canvas.height = 100;
|
|
var imageData = canvas.context2D.getImageData(0, 0, 1, 1);
|
|
serializationTest('imagedata', [imageData]);
|
|
}
|