/* This is only a crash test. We load a partial content, cache it. Then we change the limit for single cache entry size (shrink it) so that the next request for the rest of the content will hit that limit and doom/remove the entry. We change the size manually, but in reality it's being changed by cache smart size. */ "use strict"; const { HttpServer } = ChromeUtils.importESModule( "resource://testing-common/httpd.sys.mjs" ); ChromeUtils.defineLazyGetter(this, "URL", function () { return "http://localhost:" + httpServer.identity.primaryPort; }); var httpServer = null; function make_channel(url) { return NetUtil.newChannel({ uri: url, loadUsingSystemPrincipal: true }); } // Have 2kb response (8 * 2 ^ 8) var responseBody = "response"; for (var i = 0; i < 8; ++i) { responseBody += responseBody; } function contentHandler(metadata, response) { response.setHeader("Content-Type", "text/plain", false); response.setHeader("ETag", "range"); response.setHeader("Accept-Ranges", "bytes"); response.setHeader("Cache-Control", "max-age=360000"); if (!metadata.hasHeader("If-Range")) { response.setHeader("Content-Length", responseBody.length + ""); response.processAsync(); let slice = responseBody.slice(0, 100); response.bodyOutputStream.write(slice, slice.length); response.finish(); } else { let slice = responseBody.slice(100); response.setStatusLine(metadata.httpVersion, 206, "Partial Content"); response.setHeader( "Content-Range", (responseBody.length - slice.length).toString() + "-" + (responseBody.length - 1).toString() + "/" + responseBody.length.toString() ); response.setHeader("Content-Length", slice.length + ""); response.bodyOutputStream.write(slice, slice.length); } } let enforceSoftPref; let enforceStrictChunkedPref; function run_test() { enforceSoftPref = Services.prefs.getBoolPref( "network.http.enforce-framing.soft" ); Services.prefs.setBoolPref("network.http.enforce-framing.soft", false); enforceStrictChunkedPref = Services.prefs.getBoolPref( "network.http.enforce-framing.strict_chunked_encoding" ); Services.prefs.setBoolPref( "network.http.enforce-framing.strict_chunked_encoding", false ); httpServer = new HttpServer(); httpServer.registerPathHandler("/content", contentHandler); httpServer.start(-1); var chan = make_channel(URL + "/content"); chan.asyncOpen(new ChannelListener(firstTimeThrough, null, CL_IGNORE_CL)); do_test_pending(); } function firstTimeThrough() { // Change single cache entry limit to 1 kb. This emulates smart size change. Services.prefs.setIntPref("browser.cache.disk.max_entry_size", 1); var chan = make_channel(URL + "/content"); chan.asyncOpen(new ChannelListener(finish_test, null)); } function finish_test(request, buffer) { Assert.equal(buffer, responseBody); Services.prefs.setBoolPref( "network.http.enforce-framing.soft", enforceSoftPref ); Services.prefs.setBoolPref( "network.http.enforce-framing.strict_chunked_encoding", enforceStrictChunkedPref ); httpServer.stop(do_test_finished); }