/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// test that special headers are sent as an array of headers with the same name
function pathHandler(request, response) {
response.setHeader("Cache-Control", "no-cache", false);
response.setHeader("Proxy-Authenticate", "First line 1", true);
response.setHeader("Proxy-Authenticate", "Second line 1", true);
response.setHeader("Proxy-Authenticate", "Third line 1", true);
response.setHeader("WWW-Authenticate", "Not merged line 1", false);
response.setHeader("WWW-Authenticate", "Not merged line 2", true);
response.setHeader("WWW-Authenticate", "First line 2", false);
response.setHeader("WWW-Authenticate", "Second line 2", true);
response.setHeader("WWW-Authenticate", "Third line 2", true);
/** ************* * BEGIN TESTS *
***************/
ChromeUtils.defineLazyGetter(this, "tests", function () { return [ new Test( "http://localhost:" + srv.identity.primaryPort + "/path-handler", null,
check
),
];
});
function check(ch) { var headerValue;
headerValue = ch.getResponseHeader("Proxy-Authenticate"); Assert.equal(headerValue, "First line 1\nSecond line 1\nThird line 1");
headerValue = ch.getResponseHeader("WWW-Authenticate"); Assert.equal(headerValue, "First line 2\nSecond line 2\nThird line 2");
headerValue = ch.getResponseHeader("X-Single-Header-Merge"); Assert.equal(headerValue, "Single 1,Single 2");
}
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.