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

Side by Side Diff: sdk/lib/_internal/pub/test/oauth2/utils.dart

Issue 23596007: Remove usage of dart:json. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 7 years, 3 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
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 oauth2.utils; 5 library oauth2.utils;
6 6
7 import 'dart:convert';
7 import 'dart:io'; 8 import 'dart:io';
8 import 'dart:json' as json;
9 9
10 import 'package:http/http.dart' as http; 10 import 'package:http/http.dart' as http;
11 import 'package:scheduled_test/scheduled_process.dart'; 11 import 'package:scheduled_test/scheduled_process.dart';
12 import 'package:scheduled_test/scheduled_test.dart'; 12 import 'package:scheduled_test/scheduled_test.dart';
13 import 'package:scheduled_test/scheduled_server.dart'; 13 import 'package:scheduled_test/scheduled_server.dart';
14 14
15 import '../../lib/src/io.dart'; 15 import '../../lib/src/io.dart';
16 import '../../lib/src/utils.dart'; 16 import '../../lib/src/utils.dart';
17 17
18 void authorizePub(ScheduledProcess pub, ScheduledServer server, 18 void authorizePub(ScheduledProcess pub, ScheduledServer server,
(...skipping 19 matching lines...) Expand all
38 } 38 }
39 39
40 void handleAccessTokenRequest(ScheduledServer server, String accessToken) { 40 void handleAccessTokenRequest(ScheduledServer server, String accessToken) {
41 server.handle('POST', '/token', (request) { 41 server.handle('POST', '/token', (request) {
42 return new ByteStream(request).toBytes().then((bytes) { 42 return new ByteStream(request).toBytes().then((bytes) {
43 var body = new String.fromCharCodes(bytes); 43 var body = new String.fromCharCodes(bytes);
44 expect(body, matches(new RegExp(r'(^|&)code=access\+code(&|$)'))); 44 expect(body, matches(new RegExp(r'(^|&)code=access\+code(&|$)')));
45 45
46 request.response.headers.contentType = 46 request.response.headers.contentType =
47 new ContentType("application", "json"); 47 new ContentType("application", "json");
48 request.response.write(json.stringify({ 48 request.response.write(JSON.encode({
49 "access_token": accessToken, 49 "access_token": accessToken,
50 "token_type": "bearer" 50 "token_type": "bearer"
51 })); 51 }));
52 request.response.close(); 52 request.response.close();
53 }); 53 });
54 }); 54 });
55 } 55 }
56 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698