2dcd56ef43
There are far too many files here to review everyone carefully. Spot checking most of the diffs look good as test code is generally written with less care than application code so lots of ugly formatting get through. If people notice files where the automated formatting bothers them feel free to comment indicating file names and I'll move spaces within comments to make the formatting cleaner and use comments to force block formatting as I have done for other case where formatting looked bad. BUG= R=efortuna@google.com Review-Url: https://codereview.chromium.org/2771453003 .
52 lines
1.5 KiB
Dart
52 lines
1.5 KiB
Dart
library SerializedScriptValueTest;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_config.dart';
|
|
import 'dart:html';
|
|
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() {
|
|
useHtmlConfiguration();
|
|
|
|
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]);
|
|
}
|