| OLD | NEW |
| 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 oauth2_test; | 5 library oauth2_test; |
| 6 | 6 |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 import 'dart:json' as json; | 8 import 'dart:json' as json; |
| 9 import 'dart:uri'; | 9 import 'dart:uri'; |
| 10 | 10 |
| 11 import '../../../pkg/http/lib/http.dart' as http; | 11 import 'package:http/http.dart' as http; |
| 12 import '../../../pkg/scheduled_test/lib/scheduled_process.dart'; | 12 import 'package:scheduled_test/scheduled_process.dart'; |
| 13 import '../../../pkg/scheduled_test/lib/scheduled_test.dart'; | 13 import 'package:scheduled_test/scheduled_test.dart'; |
| 14 import '../../../pkg/scheduled_test/lib/scheduled_server.dart'; | 14 import 'package:scheduled_test/scheduled_server.dart'; |
| 15 | 15 |
| 16 import '../../pub/io.dart'; | 16 import '../../pub/io.dart'; |
| 17 import '../../pub/utils.dart'; | 17 import '../../pub/utils.dart'; |
| 18 import 'descriptor.dart' as d; | 18 import 'descriptor.dart' as d; |
| 19 import 'test_pub.dart'; | 19 import 'test_pub.dart'; |
| 20 | 20 |
| 21 import 'dart:async'; | 21 import 'dart:async'; |
| 22 | 22 |
| 23 main() { | 23 main() { |
| 24 setUp(() => d.validPackage.create()); | 24 setUp(() => d.validPackage.create()); |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 new ContentType("application", "json"); | 255 new ContentType("application", "json"); |
| 256 request.response.write(json.stringify({ | 256 request.response.write(json.stringify({ |
| 257 "access_token": accessToken, | 257 "access_token": accessToken, |
| 258 "token_type": "bearer" | 258 "token_type": "bearer" |
| 259 })); | 259 })); |
| 260 request.response.close(); | 260 request.response.close(); |
| 261 }); | 261 }); |
| 262 }); | 262 }); |
| 263 } | 263 } |
| 264 | 264 |
| OLD | NEW |