blob: a6be1a70fab0e5bfda7584f489b204f7522a19f7 [file] [log] [blame]
/*
* Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Future<HttpClientRequest> post(
* String host,
* int port,
* String path
* )
* Opens a HTTP connection using the POST method.
*
* The server is specified using host and port, and the path (including a
* possible query) is specified using path.
*
* See open for details.
* @description Checks that this method opens a HTTP connection using the POST
* method
* @author sgrekhov@unipro.ru
*/
import "dart:io";
import "dart:convert";
import "../../../Utils/expect.dart";
var localhost = InternetAddress.loopbackIPv4.address;
test() async {
String helloWorld = "Hello test world!";
HttpServer server = await HttpServer.bind(localhost, 0);
server.listen((HttpRequest request) {
Expect.equals("POST", request.method);
Expect.equals("/xxx", request.uri.toString());
request.response.write(helloWorld);
request.response.close();
server.close();
asyncEnd();
});
HttpClient client = new HttpClient();
client.post(localhost, server.port, "/xxx")
.then((HttpClientRequest request) {
Expect.equals("POST", request.method);
return request.close();
}).then((HttpClientResponse response) {
response.cast<List<int>>().transform(utf8.decoder).listen((content) {
Expect.equals(helloWorld, content);
});
});
}
main() {
asyncStart();
test();
}