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

Side by Side Diff: sdk/lib/_internal/pub/test/real_version_test.dart

Issue 1165473002: Start pulling pub from its own repo. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review changes Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012, 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 library pub_tests;
6
7 import 'dart:io';
8
9 import 'package:path/path.dart' as path;
10 import 'package:scheduled_test/scheduled_process.dart';
11 import 'package:scheduled_test/scheduled_test.dart';
12
13 import '../lib/src/exit_codes.dart' as exit_codes;
14 import 'test_pub.dart';
15
16 main() {
17 initConfig();
18
19 // This test is a bit funny.
20 //
21 // Pub parses the "version" file that gets generated and shipped with the SDK.
22 // We want to make sure that the actual version file that gets created is
23 // also one pub can parse. If this test fails, it means the version file's
24 // format has changed in a way pub didn't expect.
25 //
26 // Note that this test expects to be invoked from a Dart executable that is
27 // in the built SDK's "bin" directory. Note also that this invokes pub from
28 // the built SDK directory, and not the live pub code directly in the repo.
29 integration('parse the real SDK "version" file', () {
30 // Get the path to the pub binary in the SDK. Note that we can't use
31 // sdk.rootDirectory here because that assumes the entrypoint Dart script
32 // being run is pub itself. Here, the entrypoint is this test file.
33 var pubPath = path.join(path.dirname(Platform.executable),
34 Platform.operatingSystem == "windows" ? "pub.bat" : "pub");
35
36 var pub = new ScheduledProcess.start(pubPath, ['version']);
37 pub.stdout.expect(startsWith("Pub"));
38 pub.shouldExit(exit_codes.SUCCESS);
39 });
40 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/test/pubspec_test.dart ('k') | sdk/lib/_internal/pub/test/run/allows_dart_extension_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698