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

Unified Diff: sdk/lib/_internal/pub_generated/test/descriptor/tar.dart

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub_generated/test/descriptor/tar.dart
diff --git a/sdk/lib/_internal/pub/test/descriptor/tar.dart b/sdk/lib/_internal/pub_generated/test/descriptor/tar.dart
similarity index 56%
copy from sdk/lib/_internal/pub/test/descriptor/tar.dart
copy to sdk/lib/_internal/pub_generated/test/descriptor/tar.dart
index 2a04a034a9c818d403021f79b69e5c574ce640eb..2a89bbdfb1575a7cc7f84f0cb6230b912c401782 100644
--- a/sdk/lib/_internal/pub/test/descriptor/tar.dart
+++ b/sdk/lib/_internal/pub_generated/test/descriptor/tar.dart
@@ -1,34 +1,21 @@
-// 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.
-
library descriptor.tar;
-
import 'dart:async';
-
import 'package:path/path.dart' as path;
import 'package:scheduled_test/scheduled_test.dart';
import 'package:scheduled_test/descriptor.dart';
-
import '../../lib/src/io.dart';
-
-/// Describes a tar file and its contents.
-class TarFileDescriptor extends DirectoryDescriptor
- implements ReadableDescriptor {
+class TarFileDescriptor extends DirectoryDescriptor implements
+ ReadableDescriptor {
TarFileDescriptor(String name, List<Descriptor> contents)
: super(name, contents);
-
- /// Creates the files and directories within this tar file, then archives
- /// them, compresses them, and saves the result to [parentDir].
Future<String> create([String parent]) => schedule(() {
if (parent == null) parent = defaultRoot;
return withTempDir((tempDir) {
return Future.wait(contents.map((entry) {
return entry.create(tempDir);
})).then((_) {
- var createdContents = listDir(tempDir,
- recursive: true,
- includeHidden: true);
+ var createdContents =
+ listDir(tempDir, recursive: true, includeHidden: true);
return createTarGz(createdContents, baseDir: tempDir).toBytes();
}).then((bytes) {
var file = path.join(parent, name);
@@ -37,17 +24,13 @@ class TarFileDescriptor extends DirectoryDescriptor
});
});
}, 'creating tar file:\n${describe()}');
-
- /// Validates that the `.tar.gz` file at [path] contains the expected
- /// contents.
Future validate([String parent]) {
throw new UnimplementedError("TODO(nweiz): implement this");
}
-
Stream<List<int>> read() {
return new Stream<List<int>>.fromFuture(withTempDir((tempDir) {
- return create(tempDir).then((_) =>
- readBinaryFile(path.join(tempDir, name)));
+ return create(
+ tempDir).then((_) => readBinaryFile(path.join(tempDir, name)));
}));
}
}

Powered by Google App Engine
This is Rietveld 408576698