/* -*- 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/. */
ChromeUtils.defineLazyGetter(this, "tests", function () { return [ new Test(URL, init, startCustomIndexHandler, stopCustomIndexHandler), new Test(URL, init, startDefaultIndexHandler, stopDefaultIndexHandler),
];
});
function init(ch) {
ch.loadFlags |= Ci.nsIRequest.LOAD_BYPASS_CACHE; // important!
} function startCustomIndexHandler(ch) { Assert.equal(ch.getResponseHeader("Content-Length"), "10");
srv.setIndexHandler(null);
} function stopCustomIndexHandler(ch, status, data) { Assert.ok(Components.isSuccessCode(status)); Assert.equal(String.fromCharCode.apply(null, data), "directory!");
}
function startDefaultIndexHandler(ch) { Assert.equal(ch.responseStatus, 200);
} function stopDefaultIndexHandler(ch, status) { Assert.ok(Components.isSuccessCode(status));
}
// PATH HANDLERS
function myIndexHandler(metadata, response) { var dir = metadata.getProperty("directory"); Assert.ok(dir != null); Assert.ok(dir instanceof Ci.nsIFile); Assert.ok(dir.equals(serverBasePath));
response.write("directory!");
}
¤ Dauer der Verarbeitung: 0.25 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.