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

Unified Diff: tests/standalone/io/http_requested_uri_test.dart

Issue 1281973004: Make HttpClient not send fragments as part of request. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_requested_uri_test.dart
diff --git a/tests/standalone/io/http_requested_uri_test.dart b/tests/standalone/io/http_requested_uri_test.dart
index f573c03fee3a06379fa3da79788cd5aa80aeb28f..03db1083d633eec095fe737dbc78a429183d8bfd 100644
--- a/tests/standalone/io/http_requested_uri_test.dart
+++ b/tests/standalone/io/http_requested_uri_test.dart
@@ -7,19 +7,20 @@ import "package:async_helper/async_helper.dart";
import "dart:async";
import "dart:io";
-const PATH = '/path?a=b#c';
+const sendPath = '/path?a=b#c';
+const expectedPath = '/path?a=b';
void test(String expected, Map headers) {
asyncStart();
HttpServer.bind("localhost", 0).then((server) {
expected = expected.replaceAll('%PORT', server.port.toString());
server.listen((request) {
- Expect.equals("$expected$PATH",
+ Expect.equals("$expected$expectedPath",
request.requestedUri.toString());
request.response.close();
});
HttpClient client = new HttpClient();
- client.get("localhost", server.port, PATH)
+ client.get("localhost", server.port, sendPath)
.then((request) {
for (var v in headers.keys) {
if (headers[v] != null) {
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698