blob: 1a1328e8624b0705d825d9a0d64e0076984c4ad1 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 d.file.
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
import 'package:pub/src/lock_file.dart';
import 'package:pub/src/source_registry.dart';
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
main() {
test("can use relative path", () async {
await d
.dir("foo", [d.libDir("foo"), d.libPubspec("foo", "0.0.1")]).create();
await d.dir(appPath, [
d.appPubspec({
"foo": {"path": "../foo"}
})
]).create();
await pubGet();
await d.appPackagesFile({"foo": "../foo"}).validate();
});
test("path is relative to containing pubspec", () async {
await d.dir("relative", [
d.dir("foo", [
d.libDir("foo"),
d.libPubspec("foo", "0.0.1", deps: {
"bar": {"path": "../bar"}
})
]),
d.dir("bar", [d.libDir("bar"), d.libPubspec("bar", "0.0.1")])
]).create();
await d.dir(appPath, [
d.appPubspec({
"foo": {"path": "../relative/foo"}
})
]).create();
await pubGet();
await d.appPackagesFile(
{"foo": "../relative/foo", "bar": "../relative/bar"}).validate();
});
test("relative path preserved in the lockfile", () async {
await d
.dir("foo", [d.libDir("foo"), d.libPubspec("foo", "0.0.1")]).create();
await d.dir(appPath, [
d.appPubspec({
"foo": {"path": "../foo"}
})
]).create();
await pubGet();
var lockfilePath = path.join(d.sandbox, appPath, "pubspec.lock");
var lockfile = new LockFile.load(lockfilePath, new SourceRegistry());
var description = lockfile.packages["foo"].description;
expect(description["relative"], isTrue);
expect(description["path"], path.join(d.sandbox, "foo"));
});
}