Index: utils/tests/pub/pub_test.dart |
diff --git a/utils/tests/pub/pub_test.dart b/utils/tests/pub/pub_test.dart |
index bfa2d7d9b1f0a2bdb879e397237d243cc7ae08a2..19e848bebec00d2e780e609df3db0b574804fc73 100644 |
--- a/utils/tests/pub/pub_test.dart |
+++ b/utils/tests/pub/pub_test.dart |
@@ -254,7 +254,6 @@ dependencies: |
// TODO(nweiz): remove this once we support pub update |
dir(packagesPath).scheduleDelete(); |
- file('$appPath/pubspec.lock', '').scheduleDelete(); |
git('foo.git', [ |
file('foo.dart', 'main() => "foo 2";') |
@@ -583,293 +582,6 @@ dependencies: |
run(); |
}); |
- |
- test('keeps a Git package locked to the version in the lockfile', () { |
- ensureGit(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo";') |
- ]).scheduleCreate(); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- git: ../foo.git |
-''') |
- ]).scheduleCreate(); |
- |
- // This install should lock the foo.git dependency to the current revision. |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo";') |
- ]) |
- ]).scheduleValidate(); |
- |
- // Delete the packages path to simulate a new checkout of the application. |
- dir(packagesPath).scheduleDelete(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo 2";') |
- ]).scheduleCommit(); |
- |
- // This install shouldn't update the foo.git dependency due to the lockfile. |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo";') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
- |
- test('updates a locked Git package with a new incompatible constraint', () { |
- ensureGit(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo";') |
- ]).scheduleCreate(); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- git: ../foo.git |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo";') |
- ]) |
- ]).scheduleValidate(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo 1.0.0";'), |
- file('pubspec.yaml', 'version: 1.0.0') |
- ]).scheduleCommit(); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- git: ../foo.git |
- version: ">=1.0.0" |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo 1.0.0";') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
- |
- test("doesn't update a locked Git package with a new compatible " |
- "constraint", () { |
- ensureGit(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo 1.0.0";'), |
- file('pubspec.yaml', 'version: 1.0.0') |
- ]).scheduleCreate(); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- git: ../foo.git |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo 1.0.0";') |
- ]) |
- ]).scheduleValidate(); |
- |
- git('foo.git', [ |
- file('foo.dart', 'main() => "foo 1.0.1";'), |
- file('pubspec.yaml', 'version: 1.0.1') |
- ]).scheduleCommit(); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- git: ../foo.git |
- version: ">=1.0.0" |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => "foo 1.0.0";') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
- |
- test('keeps a pub server package locked to the version in the lockfile', () { |
- var serverFuture = |
- servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- repo: {name: foo, url: http://localhost:3123} |
-''') |
- ]).scheduleCreate(); |
- |
- // This install should lock the foo dependency to version 1.0.0. |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.0");') |
- ]) |
- ]).scheduleValidate(); |
- |
- // Delete the packages path to simulate a new checkout of the application. |
- dir(packagesPath).scheduleDelete(); |
- |
- // Start serving a newer package as well. |
- servePackages("localhost", 3123, [ |
- '{name: foo, version: 1.0.0}', |
- '{name: foo, version: 1.0.1}' |
- ]); |
- |
- // This install shouldn't update the foo dependency due to the lockfile. |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.0");') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
- |
- test('updates a locked pub server package with a new incompatible ' |
- 'constraint', () { |
- var serverFuture = |
- servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- repo: {name: foo, url: http://localhost:3123} |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.0");') |
- ]) |
- ]).scheduleValidate(); |
- |
- servePackages("localhost", 3123, [ |
- '{name: foo, version: 1.0.0}', |
- '{name: foo, version: 1.0.1}' |
- ]); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- repo: {name: foo, url: http://localhost:3123} |
- version: ">1.0.0" |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.1");') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
- |
- test("doesn't update a locked pub server package with a new compatible " |
- "constraint", () { |
- var serverFuture = |
- servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- repo: {name: foo, url: http://localhost:3123} |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.0");') |
- ]) |
- ]).scheduleValidate(); |
- |
- servePackages("localhost", 3123, [ |
- '{name: foo, version: 1.0.0}', |
- '{name: foo, version: 1.0.1}' |
- ]); |
- |
- dir(appPath, [ |
- file('pubspec.yaml', ''' |
-dependencies: |
- foo: |
- repo: {name: foo, url: http://localhost:3123} |
- version: ">=1.0.0" |
-''') |
- ]).scheduleCreate(); |
- |
- schedulePub(args: ['install'], |
- output: const RegExp(@"Dependencies installed!$")); |
- |
- dir(packagesPath, [ |
- dir('foo', [ |
- file('foo.dart', 'main() => print("foo 1.0.0");') |
- ]) |
- ]).scheduleValidate(); |
- |
- run(); |
- }); |
} |
versionCommand() { |