Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use pub deps to validate target directory #21

Merged
merged 1 commit into from
Mar 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions webdev/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Remove check for `build_web_compilers`. Allows general support for
`build_runner` from tools.
- Use `pub deps` to validate target directory.

## 0.1.1

Expand Down
25 changes: 20 additions & 5 deletions webdev/lib/src/pubspec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,28 @@ class PackageExceptionDetails {
String toString() => [error, description].join('\n');
}

Future checkPubspecLock() async {
var file = new File('pubspec.lock');
if (!file.existsSync()) {
throw new PackageException._([PackageExceptionDetails.noPubspecLock]);
Future _runPubDeps() async {
var result = Process.runSync('pub', ['deps']);

if (result.exitCode == 65 || result.exitCode == 66) {
throw new PackageException._(
[new PackageExceptionDetails._((result.stderr as String).trim())]);
}

if (result.exitCode != 0) {
throw new ProcessException(
'pub',
['deps'],
'***OUT***\n${result.stdout}\n***ERR***\n${result.stderr}\n***',
exitCode);
}
}

Future checkPubspecLock() async {
await _runPubDeps();

var pubspecLock = loadYaml(await file.readAsString()) as YamlMap;
var pubspecLock =
loadYaml(await new File('pubspec.lock').readAsString()) as YamlMap;

var packages = pubspecLock['packages'] as YamlMap;

Expand Down
100 changes: 93 additions & 7 deletions webdev/test/integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// 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 'dart:async';
import 'dart:io';

import 'package:path/path.dart' as p;
Expand Down Expand Up @@ -45,6 +46,10 @@ A dependency on `build_runner` was not found.'''));
group('should fail when `build_runner` is the wrong version', () {
for (var version in ['0.7.13+1', '0.9.0']) {
test(version, () async {
await d.file('pubspec.yaml', '''
name: sample
''').create();

await d.file('pubspec.lock', '''
# Copy-pasted from a valid run
packages:
Expand All @@ -57,6 +62,9 @@ packages:
version: "$version"
''').create();

await d.file('.packages', '''
''').create();

var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

Expand All @@ -71,7 +79,38 @@ packages:
}
});

test('should fail gracefully if there is no .packages file', () async {
test('no pubspec.yaml', () async {
var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

var output = await process.stdoutStream().join('\n');

expect(output, contains('Could not run in the current directory.'));
expect(output, contains('Could not find a file named "pubspec.yaml"'));
await process.shouldExit(78);
});

test('pubspec.yaml, no pubspec.lock', () async {
await d.file('pubspec.yaml', '''
name: sample
''').create();

var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

var output = await process.stdoutStream().join('\n');

expect(output, contains('Could not run in the current directory.'));
expect(output,
contains('No pubspec.lock file found, please run "pub get" first.'));
await process.shouldExit(78);
});

test('pubspec.yaml, pubspec.lock, no .packages', () async {
await d.file('pubspec.yaml', '''
name: sample
''').create();

await d.file('pubspec.lock', '''
# Copy-pasted from a valid run
packages:
Expand All @@ -87,14 +126,19 @@ packages:
var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

await expectLater(
process.stdout, emits('Could not run in the current directory.'));
await expectLater(process.stdout,
emits('A `.packages` file does not exist in the target directory.'));
var output = await process.stdoutStream().join('\n');

expect(output, contains('Could not run in the current directory.'));
expect(output,
contains('No .packages file found, please run "pub get" first.'));
await process.shouldExit(78);
});

test('should fail gracefully if there is an isolate error', () async {
await d.file('pubspec.yaml', '''
name: sample
''').create();

await d.file('pubspec.lock', '''
# Copy-pasted from a valid run
packages:
Expand All @@ -112,11 +156,53 @@ packages:
var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

await expectLater(
process.stdout, emits('An unexpected exception has occurred.'));
var output = await process.stdoutStream().join('\n');

expect(output, contains('An unexpected exception has occurred.'));

// The isolate will fail - broken .packages file
expect(output, contains('Unable to spawn isolate'));
await process.shouldExit(70);
});

test('should fail if there has been a dependency change', () async {
await d.file('pubspec.lock', '''
# Copy-pasted from a valid run
packages:
build_runner:
dependency: "direct main"
description:
name: build_runner
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.0"
''').create();

await d.file('.packages', '').create();

// Ensure there is a noticeable delta in the creation times
await new Future.delayed(const Duration(milliseconds: 500));

await d.file('pubspec.yaml', '''
name: sample
dependencies:
args: ^1.0.0
''').create();

var process = await TestProcess.start('dart', [_webdevBin, 'build'],
workingDirectory: d.sandbox);

var output = await process.stdoutStream().join('\n');

expect(output, contains('Could not run in the current directory.'));
expect(
output,
contains(
'The pubspec.yaml file has changed since the pubspec.lock file '
'was generated, please run "pub get" again.'));
await process.shouldExit(78);
});

test('should succeed with valid configuration', () async {
var exampleDirectory = p.absolute(p.join(p.current, '..', 'example'));
var process = await TestProcess.start('pub', ['get'],
Expand Down