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

Side by Side Diff: utils/tests/pub/test_pub.dart

Issue 10790079: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « utils/tests/pub/pubspec_test.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub 6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub
7 * tests are integration tests that stage some stuff on the file system, run 7 * tests are integration tests that stage some stuff on the file system, run
8 * pub, and then validate the results. This library provides an API to build 8 * pub, and then validate the results. This library provides an API to build
9 * tests like that. 9 * tests like that.
10 */ 10 */
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 GitRepoDescriptor git(Pattern name, [List<Descriptor> contents]) => 45 GitRepoDescriptor git(Pattern name, [List<Descriptor> contents]) =>
46 new GitRepoDescriptor(name, contents); 46 new GitRepoDescriptor(name, contents);
47 47
48 /** 48 /**
49 * Creates a new [TarFileDescriptor] with [name] and [contents]. 49 * Creates a new [TarFileDescriptor] with [name] and [contents].
50 */ 50 */
51 TarFileDescriptor tar(Pattern name, [List<Descriptor> contents]) => 51 TarFileDescriptor tar(Pattern name, [List<Descriptor> contents]) =>
52 new TarFileDescriptor(name, contents); 52 new TarFileDescriptor(name, contents);
53 53
54 /** 54 /**
55 * The current [HttpServer] created using [serve].
56 */
57 var _server;
58
59 /**
55 * Creates an HTTP server to serve [contents] as static files. This server will 60 * Creates an HTTP server to serve [contents] as static files. This server will
56 * exist only for the duration of the pub run. 61 * exist only for the duration of the pub run.
62 *
63 * Subsequent calls to [serve] will replace the previous server.
57 */ 64 */
58 void serve(String host, int port, [List<Descriptor> contents]) { 65 void serve(String host, int port, [List<Descriptor> contents]) {
59 var baseDir = dir("serve-dir", contents); 66 var baseDir = dir("serve-dir", contents);
60 if (host == 'localhost') { 67 if (host == 'localhost') {
61 host = '127.0.0.1'; 68 host = '127.0.0.1';
62 } 69 }
63 70
64 _schedule((_) { 71 _schedule((_) {
65 var server = new HttpServer(); 72 _closeServer().transform((_) {
66 server.defaultRequestHandler = (request, response) { 73 _server = new HttpServer();
67 var path = request.uri.replaceFirst("/", "").split("/"); 74 _server.defaultRequestHandler = (request, response) {
68 response.persistentConnection = false; 75 var path = request.uri.replaceFirst("/", "").split("/");
69 var stream; 76 response.persistentConnection = false;
70 try { 77 var stream;
71 stream = baseDir.load(path); 78 try {
72 } catch (var e) { 79 stream = baseDir.load(path);
73 response.statusCode = 404; 80 } catch (var e) {
74 response.contentLength = 0; 81 response.statusCode = 404;
75 response.outputStream.close(); 82 response.contentLength = 0;
76 return; 83 response.outputStream.close();
77 } 84 return;
85 }
78 86
79 var future = consumeInputStream(stream); 87 var future = consumeInputStream(stream);
80 future.then((data) { 88 future.then((data) {
81 response.statusCode = 200; 89 response.statusCode = 200;
82 response.contentLength = data.length; 90 response.contentLength = data.length;
83 response.outputStream.write(data); 91 response.outputStream.write(data);
84 response.outputStream.close(); 92 response.outputStream.close();
85 }); 93 });
86 94
87 future.handleException((e) { 95 future.handleException((e) {
88 print("Exception while handling ${request.uri}: $e"); 96 print("Exception while handling ${request.uri}: $e");
89 response.statusCode = 500; 97 response.statusCode = 500;
90 response.reasonPhrase = e.message; 98 response.reasonPhrase = e.message;
91 response.outputStream.close(); 99 response.outputStream.close();
92 }); 100 });
93 }; 101 };
94 server.listen(host, port); 102 _server.listen(host, port);
95 _scheduleCleanup((_) => server.close()); 103 _scheduleCleanup((_) => _closeServer());
104 return null;
105 });
106 });
107 }
96 108
97 return new Future.immediate(null); 109 /**
98 }); 110 * Closes [_server]. Returns a [Future] that will complete after the [_server]
111 * is closed.
112 */
113 Future _closeServer() {
114 if (_server == null) return new Future.immediate(null);
115 _server.close();
116 _server = null;
117 // TODO(nweiz): Remove this once issue 4155 is fixed. Pumping the event loop
118 // *seems* to be enough to ensure that the server is actually closed, but I'm
Jennifer Messerly 2012/07/20 00:59:17 agree, I suspect it works as long as it gets to th
119 // putting this at 10ms to be safe.
120 return sleep(10);
99 } 121 }
100 122
101 /** 123 /**
102 * Creates an HTTP server that replicates the structure of pub.dartlang.org. 124 * Creates an HTTP server that replicates the structure of pub.dartlang.org.
103 * [pubspecs] is a list of YAML-format pubspecs representing the packages to 125 * [pubspecs] is a list of YAML-format pubspecs representing the packages to
104 * serve. 126 * serve.
105 */ 127 */
106 void servePackages(String host, int port, List<String> pubspecs) { 128 void servePackages(String host, int port, List<String> pubspecs) {
107 var packages = <Map<String, String>>{}; 129 var packages = <Map<String, String>>{};
108 pubspecs.forEach((spec) { 130 pubspecs.forEach((spec) {
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 } 806 }
785 807
786 /** 808 /**
787 * Schedules a callback to be called after Pub is run with [runPub], even if it 809 * Schedules a callback to be called after Pub is run with [runPub], even if it
788 * fails. 810 * fails.
789 */ 811 */
790 void _scheduleCleanup(_ScheduledEvent event) { 812 void _scheduleCleanup(_ScheduledEvent event) {
791 if (_scheduledCleanup == null) _scheduledCleanup = []; 813 if (_scheduledCleanup == null) _scheduledCleanup = [];
792 _scheduledCleanup.add(event); 814 _scheduledCleanup.add(event);
793 } 815 }
OLDNEW
« no previous file with comments | « utils/tests/pub/pubspec_test.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698