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

Side by Side Diff: tests/standalone/io/fuzz_support.dart

Issue 10408060: Fuzzing of dart:io Directory API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « tests/standalone/io/file_fuzz_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 #library('fuzz_support');
6
7 #import('dart:io');
8
9 final typeMapping = const {
10 'null': null,
11 'int': 0,
12 'bigint': 18446744073709551617,
13 'String': 'a',
14 'FileMode': FileMode.READ,
15 'num': 0.50,
16 'List<int>': const [1, 2, 3],
17 'Map<String, int>': const { "a": 23 }
18 };
19
20 typePermutations(int argCount) {
21 var result = [];
22 if (argCount == 2) {
23 typeMapping.forEach((k, v) {
24 typeMapping.forEach((k2, v2) {
25 result.add([v, v2]);
26 });
27 });
28 } else {
29 Expect.isTrue(argCount == 3);
30 typeMapping.forEach((k, v) {
31 typeMapping.forEach((k2, v2) {
32 typeMapping.forEach((k3, v3) {
33 result.add([v, v2, v3]);
34 });
35 });
36 });
37 }
38 return result;
39 }
40
41 // Perform sync operation and ignore all exceptions.
42 doItSync(Function f) {
43 try { f(); } catch (var e) {}
44 }
45
46 // Perform async operation and transform the future for the operation
47 // into a future that never fails by treating errors as normal
48 // completion.
49 Future doItAsync(Function f) {
50 // Ignore value and errors.
51 var completer = new Completer();
52 var future = f();
53 future.handleException((e) {
54 completer.complete(true);
55 return true;
56 });
57 future.then((v) => completer.complete(true));
58 return completer.future;
59 }
OLDNEW
« no previous file with comments | « tests/standalone/io/file_fuzz_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698