From 06c96abb36a2fc0b8d0bd256216918822335f1f8 Mon Sep 17 00:00:00 2001 From: "sgjesse@google.com" <sgjesse@google.com> Date: Fri, 21 Dec 2012 09:50:05 +0000 Subject: [PATCH] Reapply "Fix URI encoding/decoding of + and space"" Updated test expectations for some tests for pkg/http, pkg/oauth2 and pub to match the change. TBR=lrn@google.com Review URL: https://codereview.chromium.org//11659009 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@16426 260f80e4-7a28-3924-810f-c04153c831b5 --- test/curl_client_test.dart | 8 ++++---- test/oauth2_test.dart | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/curl_client_test.dart b/test/curl_client_test.dart index 98432e0f..5c94a72b 100644 --- a/test/curl_client_test.dart +++ b/test/curl_client_test.dart @@ -58,11 +58,11 @@ void main() { 'content-type': [ 'application/x-www-form-urlencoded; charset=UTF-8' ], - 'content-length': ['42'], + 'content-length': ['40'], 'x-random-header': ['Value'], 'x-other-header': ['Other Value'] }, - 'body': 'some-field=value&other-field=other%20value' + 'body': 'some-field=value&other-field=other+value' }))); }), completes); }); @@ -102,11 +102,11 @@ void main() { 'content-type': [ 'application/x-www-form-urlencoded; charset=UTF-8' ], - 'content-length': ['42'], + 'content-length': ['40'], 'x-random-header': ['Value'], 'x-other-header': ['Other Value'] }, - 'body': 'some-field=value&other-field=other%20value' + 'body': 'some-field=value&other-field=other+value' }))); }), completes); }); diff --git a/test/oauth2_test.dart b/test/oauth2_test.dart index 08d97fe4..f3d38e04 100644 --- a/test/oauth2_test.dart +++ b/test/oauth2_test.dart @@ -71,7 +71,7 @@ main() { return consumeInputStream(request.inputStream).transform((bytes) { var body = new String.fromCharCodes(bytes); expect(body, matches( - new RegExp(r'(^|&)refresh_token=refresh%20token(&|$)'))); + new RegExp(r'(^|&)refresh_token=refresh\+token(&|$)'))); response.headers.contentType = new ContentType("application", "json"); response.outputStream.writeString(JSON.stringify({ @@ -211,7 +211,7 @@ void handleAccessTokenRequest(ScheduledServer server, String accessToken) { server.handle('POST', '/token', (request, response) { return consumeInputStream(request.inputStream).transform((bytes) { var body = new String.fromCharCodes(bytes); - expect(body, matches(new RegExp(r'(^|&)code=access%20code(&|$)'))); + expect(body, matches(new RegExp(r'(^|&)code=access\+code(&|$)'))); response.headers.contentType = new ContentType("application", "json"); response.outputStream.writeString(JSON.stringify({ -- GitLab