Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: tests/html/url_test.dart

Issue 11275054: Modified unittest to use new argument syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library('url_test'); 5 #library('url_test');
6 #import('../../pkg/unittest/unittest.dart'); 6 #import('../../pkg/unittest/unittest.dart');
7 #import('../../pkg/unittest/html_config.dart'); 7 #import('../../pkg/unittest/html_config.dart');
8 #import('dart:html'); 8 #import('dart:html');
9 9
10 main() { 10 main() {
(...skipping 20 matching lines...) Expand all
31 31
32 var blob = new Blob([arrayBuffer], 'image/png'); 32 var blob = new Blob([arrayBuffer], 'image/png');
33 return blob; 33 return blob;
34 } 34 }
35 35
36 group('blob', () { 36 group('blob', () {
37 test('createObjectUrl', () { 37 test('createObjectUrl', () {
38 var blob = createImageBlob(); 38 var blob = createImageBlob();
39 var url = window.createObjectUrl(blob); 39 var url = window.createObjectUrl(blob);
40 expect(url.length, greaterThan(0)); 40 expect(url.length, greaterThan(0));
41 expect(url.startsWith('blob:')); 41 expect(url, startsWith('blob:'));
42 42
43 var img = new ImageElement(); 43 var img = new ImageElement();
44 img.on.load.add(expectAsync1((_) { 44 img.on.load.add(expectAsync1((_) {
45 expect(img.complete, true); 45 expect(img.complete, true);
46 })); 46 }));
47 img.on.error.add((_) { 47 img.on.error.add((_) {
48 guardAsync(() { 48 guardAsync(() {
49 expect(true, isFalse, 'URL failed to load.'); 49 expect(true, isFalse, reason: 'URL failed to load.');
50 }); 50 });
51 }); 51 });
52 img.src = url; 52 img.src = url;
53 }); 53 });
54 54
55 test('revokeObjectUrl', () { 55 test('revokeObjectUrl', () {
56 var blob = createImageBlob(); 56 var blob = createImageBlob();
57 var url = window.createObjectUrl(blob); 57 var url = window.createObjectUrl(blob);
58 expect(url.startsWith('blob:')); 58 expect(url, startsWith('blob:'));
59 window.revokeObjectUrl(url); 59 window.revokeObjectUrl(url);
60 60
61 var img = new ImageElement(); 61 var img = new ImageElement();
62 // Image should fail to load since the URL was revoked. 62 // Image should fail to load since the URL was revoked.
63 img.on.error.add(expectAsync1((_) { 63 img.on.error.add(expectAsync1((_) {
64 })); 64 }));
65 img.on.load.add((_) { 65 img.on.load.add((_) {
66 guardAsync(() { 66 guardAsync(() {
67 expect(true, isFalse, 'URL should not have loaded.'); 67 expect(true, isFalse, reason: 'URL should not have loaded.');
68 }); 68 });
69 }); 69 });
70 img.src = url; 70 img.src = url;
71 }); 71 });
72 72
73 }); 73 });
74 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698