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

Unified Diff: sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart

Issue 45583003: Handle long relative path dependencies better. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years, 2 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/source/path.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart
diff --git a/sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart b/sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ab99924f91262a2498593b55985a17f70eaf5d61
--- /dev/null
+++ b/sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart
@@ -0,0 +1,72 @@
+// 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 'package:scheduled_test/scheduled_test.dart';
+
+import 'package:path/path.dart' as path;
+
+import '../descriptor.dart' as d;
+import '../test_pub.dart';
+
+main() {
+ initConfig();
+
+ // This is a regression test for dartbug.com/14442.
+ //
+ // If you have a long chain of path dependencies with long relative paths,
+ // you can end up with a combined path that is longer than the OS can handle.
+ // For example, the path that revealed this bug was:
+ //
+ // C:\jenkins-slave\workspace\mSEE-Dev\ozone\dart\portfolio-manager\src\main\
+ // portfolio-manager\..\..\..\..\portfolio-common\src\main\portfolio-common\
+ // ../../../../dart-visualization/src/main/dart-visualization\lib\src\vega\
+ // data\transform\visual
+ //
+ // This test ensures that we're normalizing at some point before we throw the
+ // path at the OS to choke on.
+
+ integration("handles long relative paths", () {
+ // Dart2js can take a long time to compile dart code, so we increase the
+ // timeout to cope with that.
+ currentSchedule.timeout *= 3;
+
+ d.dir("some_long_dependency_name", [
+ d.libPubspec("foo", "0.0.1"),
+ d.dir("asset", [
+ d.file("foo.txt", "foo")
+ ])
+ ]).create();
+
+ // Build a 2,800 character (non-canonicalized) path.
+ var longPath = "";
+ for (var i = 0; i < 100; i++)
+ {
+ longPath = path.join(longPath, "..", "some_long_dependency_name");
+ }
+
+ d.dir(appPath, [
+ d.appPubspec({
+ "foo": {"path": longPath}
+ }),
+ d.dir("web", [
+ d.file("index.html", "html"),
+ ])
+ ]).create();
+
+ schedulePub(args: ["build"],
+ output: new RegExp(r"Built 2 files!"),
+ exitCode: 0);
+
+ d.dir(appPath, [
+ d.dir('build', [
+ d.file("index.html", "html"),
+ d.dir('assets', [
+ d.dir('foo', [
+ d.file('foo.txt', 'foo')
+ ])
+ ])
+ ])
+ ]).validate();
+ });
+}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/source/path.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698