| OLD | NEW |
| (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 'package:scheduled_test/scheduled_test.dart'; | |
| 6 | |
| 7 import 'package:path/path.dart' as path; | |
| 8 | |
| 9 import '../descriptor.dart' as d; | |
| 10 import '../test_pub.dart'; | |
| 11 | |
| 12 main() { | |
| 13 initConfig(); | |
| 14 | |
| 15 // This is a regression test for dartbug.com/14442. | |
| 16 // | |
| 17 // If you have a long chain of path dependencies with long relative paths, | |
| 18 // you can end up with a combined path that is longer than the OS can handle. | |
| 19 // For example, the path that revealed this bug was: | |
| 20 // | |
| 21 // C:\jenkins-slave\workspace\mSEE-Dev\ozone\dart\portfolio-manager\src\main\ | |
| 22 // portfolio-manager\..\..\..\..\portfolio-common\src\main\portfolio-common\ | |
| 23 // ../../../../dart-visualization/src/main/dart-visualization\lib\src\vega\ | |
| 24 // data\transform\visual | |
| 25 // | |
| 26 // This test ensures that we're normalizing at some point before we throw the | |
| 27 // path at the OS to choke on. | |
| 28 | |
| 29 integration("handles long relative paths", () { | |
| 30 // Dart2js can take a long time to compile dart code, so we increase the | |
| 31 // timeout to cope with that. | |
| 32 currentSchedule.timeout *= 3; | |
| 33 | |
| 34 d.dir("some_long_dependency_name", [ | |
| 35 d.libPubspec("foo", "0.0.1"), | |
| 36 d.dir("lib", [ | |
| 37 d.file("foo.txt", "foo") | |
| 38 ]) | |
| 39 ]).create(); | |
| 40 | |
| 41 // Build a 2,800 character (non-canonicalized) path. | |
| 42 var longPath = ""; | |
| 43 for (var i = 0; i < 100; i++) | |
| 44 { | |
| 45 longPath = path.join(longPath, "..", "some_long_dependency_name"); | |
| 46 } | |
| 47 | |
| 48 d.dir(appPath, [ | |
| 49 d.appPubspec({ | |
| 50 "foo": {"path": longPath} | |
| 51 }), | |
| 52 d.dir("web", [ | |
| 53 d.file("index.html", "html"), | |
| 54 ]) | |
| 55 ]).create(); | |
| 56 | |
| 57 schedulePub(args: ["build"], | |
| 58 output: new RegExp(r'Built 2 files to "build".')); | |
| 59 | |
| 60 d.dir(appPath, [ | |
| 61 d.dir('build', [ | |
| 62 d.dir('web', [ | |
| 63 d.file("index.html", "html"), | |
| 64 d.dir('packages', [ | |
| 65 d.dir('foo', [ | |
| 66 d.file('foo.txt', 'foo') | |
| 67 ]) | |
| 68 ]) | |
| 69 ]) | |
| 70 ]) | |
| 71 ]).validate(); | |
| 72 }); | |
| 73 } | |
| OLD | NEW |