OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 /// Pub-specific scheduled_test descriptors. | 5 /// Pub-specific scheduled_test descriptors. |
6 library descriptor; | 6 library descriptor; |
7 | 7 |
8 import 'package:oauth2/oauth2.dart' as oauth2; | 8 import 'package:oauth2/oauth2.dart' as oauth2; |
9 import 'package:scheduled_test/scheduled_server.dart'; | 9 import 'package:scheduled_test/scheduled_server.dart'; |
10 import 'package:scheduled_test/descriptor.dart'; | 10 import 'package:scheduled_test/descriptor.dart'; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 var packageContents = [libDir(name, '$name $version')]; | 132 var packageContents = [libDir(name, '$name $version')]; |
133 if (includePubspecs) { | 133 if (includePubspecs) { |
134 packageContents.add(libPubspec(name, version)); | 134 packageContents.add(libPubspec(name, version)); |
135 } | 135 } |
136 contents.add(dir("$name-$version", packageContents)); | 136 contents.add(dir("$name-$version", packageContents)); |
137 } | 137 } |
138 }); | 138 }); |
139 | 139 |
140 return dir(cachePath, [ | 140 return dir(cachePath, [ |
141 dir('hosted', [ | 141 dir('hosted', [ |
142 async(port.then((p) => dir('localhost%58$p', contents))) | 142 async(port.then((p) => dir('127.0.0.1%58$p', contents))) |
143 ]) | 143 ]) |
144 ]); | 144 ]); |
145 } | 145 } |
146 | 146 |
147 /// Describes the file in the system cache that contains the client's OAuth2 | 147 /// Describes the file in the system cache that contains the client's OAuth2 |
148 /// credentials. The URL "/token" on [server] will be used as the token | 148 /// credentials. The URL "/token" on [server] will be used as the token |
149 /// endpoint for refreshing the access token. | 149 /// endpoint for refreshing the access token. |
150 Descriptor credentialsFile( | 150 Descriptor credentialsFile( |
151 ScheduledServer server, | 151 ScheduledServer server, |
152 String accessToken, | 152 String accessToken, |
153 {String refreshToken, | 153 {String refreshToken, |
154 DateTime expiration}) { | 154 DateTime expiration}) { |
155 return async(server.url.then((url) { | 155 return async(server.url.then((url) { |
156 return dir(cachePath, [ | 156 return dir(cachePath, [ |
157 file('credentials.json', new oauth2.Credentials( | 157 file('credentials.json', new oauth2.Credentials( |
158 accessToken, | 158 accessToken, |
159 refreshToken, | 159 refreshToken, |
160 url.resolve('/token'), | 160 url.resolve('/token'), |
161 ['https://www.googleapis.com/auth/userinfo.email'], | 161 ['https://www.googleapis.com/auth/userinfo.email'], |
162 expiration).toJson()) | 162 expiration).toJson()) |
163 ]); | 163 ]); |
164 })); | 164 })); |
165 } | 165 } |
166 | 166 |
167 /// Describes the application directory, containing only a pubspec specifying | 167 /// Describes the application directory, containing only a pubspec specifying |
168 /// the given [dependencies]. | 168 /// the given [dependencies]. |
169 DirectoryDescriptor appDir([Map dependencies]) => | 169 DirectoryDescriptor appDir([Map dependencies]) => |
170 dir(appPath, [appPubspec(dependencies)]); | 170 dir(appPath, [appPubspec(dependencies)]); |
OLD | NEW |