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

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

Issue 10824374: Fix fileapi_test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months 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
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('fileapi'); 1 #library('fileapi');
2 #import('../../pkg/unittest/unittest.dart'); 2 #import('../../pkg/unittest/unittest.dart');
3 #import('../../pkg/unittest/html_config.dart'); 3 #import('../../pkg/unittest/html_config.dart');
4 #import('dart:html'); 4 #import('dart:html');
5 5
6 main() { 6 main() {
7 useHtmlConfiguration(); 7 useHtmlConfiguration();
8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) { 8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) {
9 // FIXME: add types to callback arguments after migration to wrapperless dar t:html. 9 // FIXME: add types to callback arguments after migration to wrapperless dar t:html.
10 10
11 test('getDirectory', () { 11 test('getDirectory', () {
12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}), 12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}),
13 throws); 13 throws);
14 14
15 fs.root.getDirectory( 15 fs.root.getDirectory(
16 'directory2', 16 'directory2',
17 flags: {}, 17 options: {},
18 successCallback: expectAsync1((e) { 18 successCallback: expectAsync1((e) {
19 expect(false, 'Should not be reached'); 19 expect(false, 'Should not be reached');
20 }, count:0), 20 }, count:0),
21 errorCallback: expectAsync1((e) { 21 errorCallback: expectAsync1((e) {
22 expect(e.code, equals(FileError.NOT_FOUND_ERR)); 22 expect(e.code, equals(FileError.NOT_FOUND_ERR));
23 })); 23 }));
24 24
25 fs.root.getDirectory( 25 fs.root.getDirectory(
26 'directory3', 26 'directory3',
27 flags: {'create': true}, 27 options: {'create': true},
28 successCallback: expectAsync1((e) { 28 successCallback: expectAsync1((e) {
29 expect(e.name, equals('directory3')); 29 expect(e.name, equals('directory3'));
30 }), 30 }),
31 errorCallback: expectAsync1((e) { 31 errorCallback: expectAsync1((e) {
32 expect(false, 'Got file error: ${e.code}'); 32 expect(false, 'Got file error: ${e.code}');
33 }, count:0)); 33 }, count:0));
34 }); 34 });
35 35
36 test('getFile', () { 36 test('getFile', () {
37 expect(() => fs.root.getFile('file1', {'x': true}, (e) {}), throws); 37 expect(() => fs.root.getFile('file1', {'x': true}, (e) {}), throws);
38 38
39 fs.root.getDirectory( 39 fs.root.getDirectory(
40 'file2', 40 'file2',
41 flags: {}, 41 options: {},
42 successCallback: expectAsync1((e) { 42 successCallback: expectAsync1((e) {
43 expect(false, 'Should not be reached'); 43 expect(false, 'Should not be reached');
44 }, count:0), 44 }, count:0),
45 errorCallback: expectAsync1((e) { 45 errorCallback: expectAsync1((e) {
46 expect(e.code, equals(FileError.NOT_FOUND_ERR)); 46 expect(e.code, equals(FileError.NOT_FOUND_ERR));
47 })); 47 }));
48 48
49 fs.root.getDirectory( 49 fs.root.getDirectory(
50 'file3', 50 'file3',
51 flags: {'create': true}, 51 options: {'create': true},
52 successCallback: expectAsync1((e) { 52 successCallback: expectAsync1((e) {
53 expect(e.name, equals('file3')); 53 expect(e.name, equals('file3'));
54 }), 54 }),
55 errorCallback: expectAsync1((e) { 55 errorCallback: expectAsync1((e) {
56 expect(false, 'Got file error: ${e.code}'); 56 expect(false, 'Got file error: ${e.code}');
57 }, count:0)); 57 }, count:0));
58 }); 58 });
59 }); 59 });
60 } 60 }
OLDNEW
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698