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

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

Issue 10386021: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 7 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/pub/utils.dart ('k') | utils/tests/pub/test_pub.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 #library('pub_tests'); 5 #library('pub_tests');
6 6
7 #import('dart:io'); 7 #import('dart:io');
8 8
9 #import('test_pub.dart'); 9 #import('test_pub.dart');
10 #import('../../../lib/unittest/unittest.dart'); 10 #import('../../../lib/unittest/unittest.dart');
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 test('adds a dependent package', () { 85 test('adds a dependent package', () {
86 dir(sdkPath, [ 86 dir(sdkPath, [
87 dir('lib', [ 87 dir('lib', [
88 dir('foo', [ 88 dir('foo', [
89 file('foo.dart', 'main() => "foo";') 89 file('foo.dart', 'main() => "foo";')
90 ]) 90 ])
91 ]) 91 ])
92 ]).scheduleCreate(); 92 ]).scheduleCreate();
93 93
94 dir(appPath, [ 94 dir(appPath, [
95 file('pubspec', 'dependencies:\n- foo') 95 file('pubspec', 'dependencies:\n foo:')
96 ]).scheduleCreate(); 96 ]).scheduleCreate();
97 97
98 dir(packagesPath, [ 98 dir(packagesPath, [
99 dir('foo', [ 99 dir('foo', [
100 file('foo.dart', 'main() => "foo";') 100 file('foo.dart', 'main() => "foo";')
101 ]) 101 ])
102 ]).scheduleValidate(); 102 ]).scheduleValidate();
103 103
104 runPub(args: ['install'], 104 runPub(args: ['install'],
105 output: ''' 105 output: '''
106 Dependencies installed! 106 Dependencies installed!
107 '''); 107 ''');
108 }); 108 });
109 109
110 test('adds a transitively dependent package', () { 110 test('adds a transitively dependent package', () {
111 dir(sdkPath, [ 111 dir(sdkPath, [
112 dir('lib', [ 112 dir('lib', [
113 dir('foo', [ 113 dir('foo', [
114 file('foo.dart', 'main() => "foo";'), 114 file('foo.dart', 'main() => "foo";'),
115 file('pubspec', 'dependencies:\n- bar') 115 file('pubspec', 'dependencies:\n bar:')
116 ]), 116 ]),
117 dir('bar', [ 117 dir('bar', [
118 file('bar.dart', 'main() => "bar";'), 118 file('bar.dart', 'main() => "bar";'),
119 ]) 119 ])
120 ]) 120 ])
121 ]).scheduleCreate(); 121 ]).scheduleCreate();
122 122
123 dir(appPath, [ 123 dir(appPath, [
124 file('pubspec', 'dependencies:\n- foo') 124 file('pubspec', 'dependencies:\n foo:')
125 ]).scheduleCreate(); 125 ]).scheduleCreate();
126 126
127 dir(packagesPath, [ 127 dir(packagesPath, [
128 dir('foo', [ 128 dir('foo', [
129 file('foo.dart', 'main() => "foo";') 129 file('foo.dart', 'main() => "foo";')
130 ]), 130 ]),
131 dir('bar', [ 131 dir('bar', [
132 file('bar.dart', 'main() => "bar";'), 132 file('bar.dart', 'main() => "bar";'),
133 ]) 133 ])
134 ]).scheduleValidate(); 134 ]).scheduleValidate();
135 135
136 runPub(args: ['install'], 136 runPub(args: ['install'],
137 output: ''' 137 output: '''
138 Dependencies installed! 138 Dependencies installed!
139 '''); 139 ''');
140 }); 140 });
141
142 test('checks out a package from Git', () {
143 git('foo.git', [
144 file('foo.dart', 'main() => "foo";')
145 ]).scheduleCreate();
146
147 dir(appPath, [
148 file('pubspec', '''
149 dependencies:
150 foo:
151 git: ../foo.git
152 ''')
153 ]).scheduleCreate();
154
155 dir(packagesPath, [
156 dir('foo', [
157 file('foo.dart', 'main() => "foo";')
158 ])
159 ]).scheduleValidate();
160
161 runPub(args: ['install'],
162 output: const RegExp(@"^Cloning into[\s\S]*^Dependencies installed!$",
163 multiLine: true));
164 });
165
166 test('checks out packages transitively from Git', () {
167 git('foo.git', [
168 file('foo.dart', 'main() => "foo";'),
169 file('pubspec', '''
170 dependencies:
171 bar:
172 git: ../bar.git
173 ''')
174 ]).scheduleCreate();
175
176 git('bar.git', [
177 file('bar.dart', 'main() => "bar";')
178 ]).scheduleCreate();
179
180 dir(appPath, [
181 file('pubspec', '''
182 dependencies:
183 foo:
184 git: ../foo.git
185 ''')
186 ]).scheduleCreate();
187
188 dir(packagesPath, [
189 dir('foo', [
190 file('foo.dart', 'main() => "foo";')
191 ]),
192 dir('bar', [
193 file('bar.dart', 'main() => "bar";')
194 ])
195 ]).scheduleValidate();
196
197 runPub(args: ['install'],
198 output: const RegExp("^Cloning into[\\s\\S]*^Dependencies installed!\$",
199 multiLine: true));
200 });
141 } 201 }
142 202
143 versionCommand() { 203 versionCommand() {
144 test('displays the current version', () => 204 test('displays the current version', () =>
145 runPub(args: ['version'], output: VERSION_STRING)); 205 runPub(args: ['version'], output: VERSION_STRING));
146 } 206 }
OLDNEW
« no previous file with comments | « utils/pub/utils.dart ('k') | utils/tests/pub/test_pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698