| Index: pkg/scheduled_test/test/descriptor/file_test.dart
|
| diff --git a/pkg/scheduled_test/test/descriptor/file_test.dart b/pkg/scheduled_test/test/descriptor/file_test.dart
|
| deleted file mode 100644
|
| index e1fb47e36921313a4f2f2fdf280142ee6a02354c..0000000000000000000000000000000000000000
|
| --- a/pkg/scheduled_test/test/descriptor/file_test.dart
|
| +++ /dev/null
|
| @@ -1,268 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -import 'dart:io';
|
| -
|
| -import 'package:path/path.dart' as path;
|
| -import 'package:scheduled_test/descriptor.dart' as d;
|
| -import 'package:scheduled_test/scheduled_test.dart';
|
| -
|
| -import 'package:metatest/metatest.dart';
|
| -import 'utils.dart';
|
| -
|
| -void main() => initTests(_test);
|
| -
|
| -void _test(message) {
|
| - initMetatest(message);
|
| -
|
| - setUpTimeout();
|
| -
|
| - expectTestsPass('file().create() creates a file', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - d.file('name.txt', 'contents').create();
|
| -
|
| - schedule(() {
|
| - expect(new File(path.join(sandbox, 'name.txt')).readAsString(),
|
| - completion(equals('contents')));
|
| - });
|
| - });
|
| - });
|
| -
|
| - expectTestsPass('file().create() overwrites an existing file', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - d.file('name.txt', 'contents1').create();
|
| -
|
| - d.file('name.txt', 'contents2').create();
|
| -
|
| - schedule(() {
|
| - expect(new File(path.join(sandbox, 'name.txt')).readAsString(),
|
| - completion(equals('contents2')));
|
| - });
|
| - });
|
| - });
|
| -
|
| - expectTestsPass('file().validate() completes successfully if the filesystem '
|
| - 'matches the descriptor', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('contents');
|
| - });
|
| -
|
| - d.file('name.txt', 'contents').validate();
|
| - });
|
| - });
|
| -
|
| - expectTestsPass("file().validate() fails if there's a file with the wrong "
|
| - "contents", () {
|
| - var errors;
|
| - test('test 1', () {
|
| - scheduleSandbox();
|
| -
|
| - currentSchedule.onException.schedule(() {
|
| - errors = currentSchedule.errors;
|
| - });
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('wrongtents');
|
| - });
|
| -
|
| - d.file('name.txt', 'contents').validate();
|
| - });
|
| -
|
| - test('test 2', () {
|
| - expect(errors.single, new isInstanceOf<ScheduleError>());
|
| - expect(errors.single.error.toString(), equals(
|
| - "File 'name.txt' should contain:\n"
|
| - "| contents\n"
|
| - "but actually contained:\n"
|
| - "X wrongtents"));
|
| - });
|
| - }, passing: ['test 2']);
|
| -
|
| - expectTestsPass("file().validate() fails if there's no file", () {
|
| - var errors;
|
| - test('test 1', () {
|
| - scheduleSandbox();
|
| -
|
| - currentSchedule.onException.schedule(() {
|
| - errors = currentSchedule.errors;
|
| - });
|
| -
|
| - d.file('name.txt', 'contents').validate();
|
| - });
|
| -
|
| - test('test 2', () {
|
| - expect(errors.single, new isInstanceOf<ScheduleError>());
|
| - expect(errors.single.error.toString(),
|
| - matches(r"^File not found: '[^']+[\\/]name\.txt'\.$"));
|
| - });
|
| - }, passing: ['test 2']);
|
| -
|
| - expectTestsPass("file().read() returns the contents of the file as a stream",
|
| - () {
|
| - test('test', () {
|
| - expect(byteStreamToString(d.file('name.txt', 'contents').read()),
|
| - completion(equals('contents')));
|
| - });
|
| - });
|
| -
|
| - expectTestsPass("file().describe() returns the filename", () {
|
| - test('test', () {
|
| - expect(d.file('name.txt', 'contents').describe(), equals('name.txt'));
|
| - });
|
| - });
|
| -
|
| - expectTestsPass('binaryFile().create() creates a file', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - d.binaryFile('name.bin', [1, 2, 3, 4, 5]).create();
|
| -
|
| - schedule(() {
|
| - expect(new File(path.join(sandbox, 'name.bin')).readAsBytes(),
|
| - completion(equals([1, 2, 3, 4, 5])));
|
| - });
|
| - });
|
| - });
|
| -
|
| - expectTestsPass('binaryFile().validate() completes successfully if the '
|
| - 'filesystem matches the descriptor', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.bin'))
|
| - .writeAsBytes([1, 2, 3, 4, 5]);
|
| - });
|
| -
|
| - d.binaryFile('name.bin', [1, 2, 3, 4, 5]).validate();
|
| - });
|
| - });
|
| -
|
| - expectTestsPass("binaryFile().validate() fails if there's a file with the "
|
| - "wrong contents", () {
|
| - var errors;
|
| - test('test 1', () {
|
| - scheduleSandbox();
|
| -
|
| - currentSchedule.onException.schedule(() {
|
| - errors = currentSchedule.errors;
|
| - });
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.bin'))
|
| - .writeAsBytes([2, 4, 6, 8, 10]);
|
| - });
|
| -
|
| - d.binaryFile('name.bin', [1, 2, 3, 4, 5]).validate();
|
| - });
|
| -
|
| - test('test 2', () {
|
| - expect(errors.single, new isInstanceOf<ScheduleError>());
|
| - expect(errors.single.error.toString(), equals(
|
| - "File 'name.bin' didn't contain the expected binary data."));
|
| - });
|
| - }, passing: ['test 2']);
|
| -
|
| - expectTestsPass('matcherFile().create() creates an empty file', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - d.matcherFile('name.txt', isNot(isEmpty)).create();
|
| -
|
| - schedule(() {
|
| - expect(new File(path.join(sandbox, 'name.txt')).readAsString(),
|
| - completion(equals('')));
|
| - });
|
| - });
|
| - });
|
| -
|
| - expectTestsPass('matcherFile().validate() completes successfully if the '
|
| - 'string contents of the file matches the matcher', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('barfoobaz');
|
| - });
|
| -
|
| - d.matcherFile('name.txt', contains('foo')).validate();
|
| - });
|
| - });
|
| -
|
| - expectTestsPass("matcherFile().validate() fails if the string contents of "
|
| - "the file doesn't match the matcher", () {
|
| - var errors;
|
| - test('test 1', () {
|
| - scheduleSandbox();
|
| -
|
| - currentSchedule.onException.schedule(() {
|
| - errors = currentSchedule.errors;
|
| - });
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('barfoobaz');
|
| - });
|
| -
|
| - d.matcherFile('name.txt', contains('baaz')).validate();
|
| - });
|
| -
|
| - test('test 2', () {
|
| - expect(errors.single, new isInstanceOf<ScheduleError>());
|
| - expect(errors.single.error.toString(), equals(
|
| - "Expected: contains 'baaz'\n"
|
| - " Actual: 'barfoobaz'\n"));
|
| - });
|
| - }, passing: ['test 2']);
|
| -
|
| - expectTestsPass('binaryMatcherFile().validate() completes successfully if '
|
| - 'the string contents of the file matches the matcher', () {
|
| - test('test', () {
|
| - scheduleSandbox();
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('barfoobaz');
|
| - });
|
| -
|
| - d.binaryMatcherFile('name.txt', contains(111)).validate();
|
| - });
|
| - });
|
| -
|
| - expectTestsPass("binaryMatcherFile().validate() fails if the string contents "
|
| - "of the file doesn't match the matcher", () {
|
| - var errors;
|
| - test('test 1', () {
|
| - scheduleSandbox();
|
| -
|
| - currentSchedule.onException.schedule(() {
|
| - errors = currentSchedule.errors;
|
| - });
|
| -
|
| - schedule(() {
|
| - return new File(path.join(sandbox, 'name.txt'))
|
| - .writeAsString('barfoobaz');
|
| - });
|
| -
|
| - d.binaryMatcherFile('name.txt', contains(12)).validate();
|
| - });
|
| -
|
| - test('test 2', () {
|
| - expect(errors.single, new isInstanceOf<ScheduleError>());
|
| - expect(errors.single.error.toString(), equals(
|
| - "Expected: contains <12>\n"
|
| - " Actual: [98, 97, 114, 102, 111, 111, 98, 97, 122]\n"));
|
| - });
|
| - }, passing: ['test 2']);
|
| -}
|
|
|