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

Side by Side Diff: pkg/scheduled_test/test/descriptor/file_test.dart

Issue 13472016: Split apart several asynchronous tests to reduce timeouts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
OLDNEW
(Empty)
1 // Copyright (c) 2013, 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 import 'dart:async';
6 import 'dart:io';
7
8 import 'package:pathos/path.dart' as path;
9 import 'package:scheduled_test/descriptor.dart' as d;
10 import 'package:scheduled_test/scheduled_test.dart';
11
12 import '../metatest.dart';
13 import 'utils.dart';
14
15 void main() {
16 metaSetUp(() {
17 // TODO(nweiz): We used to only increase the timeout to 10s for the Windows
18 // bots, but the Linux and Mac bots have started taking upwards of 5s when
19 // running pumpEventQueue, so we're increasing the timeout across the board
20 // (see issue 9248).
21 currentSchedule.timeout = new Duration(seconds: 10);
22 });
23
24 expectTestsPass('file().create() creates a file', () {
25 test('test', () {
26 scheduleSandbox();
27
28 d.file('name.txt', 'contents').create();
29
30 schedule(() {
31 expect(new File(path.join(sandbox, 'name.txt')).readAsString(),
32 completion(equals('contents')));
33 });
34 });
35 });
36
37 expectTestsPass('file().create() overwrites an existing file', () {
38 test('test', () {
39 scheduleSandbox();
40
41 d.file('name.txt', 'contents1').create();
42
43 d.file('name.txt', 'contents2').create();
44
45 schedule(() {
46 expect(new File(path.join(sandbox, 'name.txt')).readAsString(),
47 completion(equals('contents2')));
48 });
49 });
50 });
51
52 expectTestsPass('file().validate() completes successfully if the filesystem '
53 'matches the descriptor', () {
54 test('test', () {
55 scheduleSandbox();
56
57 schedule(() {
58 return new File(path.join(sandbox, 'name.txt'))
59 .writeAsString('contents');
60 });
61
62 d.file('name.txt', 'contents').validate();
63 });
64 });
65
66 expectTestsPass("file().validate() fails if there's a file with the wrong "
67 "contents", () {
68 var errors;
69 test('test 1', () {
70 scheduleSandbox();
71
72 currentSchedule.onException.schedule(() {
73 errors = currentSchedule.errors;
74 });
75
76 schedule(() {
77 return new File(path.join(sandbox, 'name.txt'))
78 .writeAsString('wrongtents');
79 });
80
81 d.file('name.txt', 'contents').validate();
82 });
83
84 test('test 2', () {
85 expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
86 expect(errors.map((e) => e.error), equals([
87 "File 'name.txt' should contain:\n"
88 "| contents\n"
89 "but actually contained:\n"
90 "X wrongtents"
91 ]), verbose: true);
92 });
93 }, passing: ['test 2']);
94
95 expectTestsPass("file().validate() fails if there's no file", () {
96 var errors;
97 test('test 1', () {
98 scheduleSandbox();
99
100 currentSchedule.onException.schedule(() {
101 errors = currentSchedule.errors;
102 });
103
104 d.file('name.txt', 'contents').validate();
105 });
106
107 test('test 2', () {
108 expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
109 expect(errors.length, equals(1));
110 expect(errors.first.error,
111 matches(r"^File not found: '[^']+[\\/]name\.txt'\.$"));
112 });
113 }, passing: ['test 2']);
114
115 expectTestsPass("file().read() returns the contents of the file as a stream",
116 () {
117 test('test', () {
118 expect(byteStreamToString(d.file('name.txt', 'contents').read()),
119 completion(equals('contents')));
120 });
121 });
122
123 expectTestsPass("file().load() throws an error", () {
124 test('test', () {
125 expect(d.file('name.txt', 'contents').load('path').toList(),
126 throwsA(equals("Can't load 'path' from within 'name.txt': not a "
127 "directory.")));
128 });
129 });
130
131 expectTestsPass("file().describe() returns the filename", () {
132 test('test', () {
133 expect(d.file('name.txt', 'contents').describe(), equals('name.txt'));
134 });
135 });
136
137 expectTestsPass('binaryFile().create() creates a file', () {
138 test('test', () {
139 scheduleSandbox();
140
141 d.binaryFile('name.bin', [1, 2, 3, 4, 5]).create();
142
143 schedule(() {
144 expect(new File(path.join(sandbox, 'name.bin')).readAsBytes(),
145 completion(equals([1, 2, 3, 4, 5])));
146 });
147 });
148 });
149
150 expectTestsPass('binaryFile().validate() completes successfully if the '
151 'filesystem matches the descriptor', () {
152 test('test', () {
153 scheduleSandbox();
154
155 schedule(() {
156 return new File(path.join(sandbox, 'name.bin'))
157 .writeAsBytes([1, 2, 3, 4, 5]);
158 });
159
160 d.binaryFile('name.bin', [1, 2, 3, 4, 5]).validate();
161 });
162 });
163
164 expectTestsPass("binaryFile().validate() fails if there's a file with the "
165 "wrong contents", () {
166 var errors;
167 test('test 1', () {
168 scheduleSandbox();
169
170 currentSchedule.onException.schedule(() {
171 errors = currentSchedule.errors;
172 });
173
174 schedule(() {
175 return new File(path.join(sandbox, 'name.bin'))
176 .writeAsBytes([2, 4, 6, 8, 10]);
177 });
178
179 d.binaryFile('name.bin', [1, 2, 3, 4, 5]).validate();
180 });
181
182 test('test 2', () {
183 expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
184 expect(errors.map((e) => e.error), equals([
185 "File 'name.bin' didn't contain the expected binary data."
186 ]), verbose: true);
187 });
188 }, passing: ['test 2']);
189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698