blob: 1bd551743db8c887cf4182dc8d7fb31a83143792 [file] [log] [blame]
// Copyright (c) 2014, 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.
// @dart = 2.9
/// @assertion void setRequestHeader(String header, String value)
/// Sets the value of an HTTP requst header.
/// This method should be called after the request is opened, but before the request is sent.
/// Multiple calls with the same header will combine all their values into a single header.
/// @description Checks that desired response header is retrieved.
import "dart:html";
import "../../../UtilsHtml/expect.dart";
main() {
var request = new HttpRequest();
request.open('GET', "test.dart");
asyncStart();
request.onLoad.listen((event) {
switch (request.readyState) {
case HttpRequest.DONE:
Expect.equals(
"application/dart", request.getResponseHeader("content-type"));
asyncEnd();
break;
case HttpRequest.HEADERS_RECEIVED:
break;
case HttpRequest.LOADING:
break;
default:
Expect.fail(
"request.onLoad.listen: unexpected readyState:${request.readyState}");
}
}, onError: (Object error) {
Expect.fail("request.onLoad.listen:onError($error)");
});
request.send();
Expect.equals(HttpRequest.OPENED, request.readyState, "after send");
}