| 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 import 'dart:convert'; | 5 import 'dart:convert'; |
| 6 | 6 |
| 7 import 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
| 8 import 'package:scheduled_test/scheduled_server.dart'; | 8 import 'package:scheduled_test/scheduled_server.dart'; |
| 9 import 'package:shelf/shelf.dart' as shelf; | 9 import 'package:shelf/shelf.dart' as shelf; |
| 10 | 10 |
| 11 import '../descriptor.dart' as d; | 11 import '../descriptor.dart' as d; |
| 12 import '../test_pub.dart'; | 12 import '../test_pub.dart'; |
| 13 | 13 |
| 14 main() { | 14 main() { |
| 15 initConfig(); | |
| 16 integration('with an expired credentials.json, refreshes and saves the ' | 15 integration('with an expired credentials.json, refreshes and saves the ' |
| 17 'refreshed access token to credentials.json', () { | 16 'refreshed access token to credentials.json', () { |
| 18 d.validPackage.create(); | 17 d.validPackage.create(); |
| 19 | 18 |
| 20 var server = new ScheduledServer(); | 19 var server = new ScheduledServer(); |
| 21 d.credentialsFile(server, 'access token', | 20 d.credentialsFile(server, 'access token', |
| 22 refreshToken: 'refresh token', | 21 refreshToken: 'refresh token', |
| 23 expiration: new DateTime.now().subtract(new Duration(hours: 1))) | 22 expiration: new DateTime.now().subtract(new Duration(hours: 1))) |
| 24 .create(); | 23 .create(); |
| 25 | 24 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 44 | 43 |
| 45 return new shelf.Response(200); | 44 return new shelf.Response(200); |
| 46 }); | 45 }); |
| 47 | 46 |
| 48 pub.shouldExit(); | 47 pub.shouldExit(); |
| 49 | 48 |
| 50 d.credentialsFile(server, 'new access token', refreshToken: 'refresh token') | 49 d.credentialsFile(server, 'new access token', refreshToken: 'refresh token') |
| 51 .validate(); | 50 .validate(); |
| 52 }); | 51 }); |
| 53 } | 52 } |
| OLD | NEW |