Backed out changeset bf18c1865e7d (bug 1173171) for test failures like test_bug1173171.html

This commit is contained in:
Carsten "Tomcat" Book 2015-08-05 08:35:19 +02:00
parent 2b27df7560
commit a8354ccdc9
5 changed files with 0 additions and 88 deletions

View File

@ -204,13 +204,10 @@ nsJARChannel::nsJARChannel()
, mOpeningRemote(false)
, mSynthesizedStreamLength(0)
, mForceNoIntercept(false)
, mBlockRemoteFiles(false)
{
if (!gJarProtocolLog)
gJarProtocolLog = PR_NewLogModule("nsJarProtocol");
mBlockRemoteFiles = Preferences::GetBool("network.jar.block-remote-files", false);
// hold an owning reference to the jar handler
NS_ADDREF(gJarHandler);
}
@ -1009,13 +1006,6 @@ nsJARChannel::ContinueAsyncOpen()
if (!mJarFile) {
// Not a local file...
// Check preferences to see if all remote jar support should be disabled
if (mBlockRemoteFiles) {
mIsUnsafe = true;
return NS_ERROR_UNSAFE_CONTENT_TYPE;
}
// kick off an async download of the base URI...
nsCOMPtr<nsIStreamListener> downloader = new MemoryDownloader(this);
uint32_t loadFlags =
@ -1195,10 +1185,6 @@ nsJARChannel::OnDownloadComplete(MemoryDownloader* aDownloader,
mContentDisposition = NS_GetContentDispositionFromHeader(mContentDispositionHeader, this);
}
// This is a defense-in-depth check for the preferences to see if all remote jar
// support should be disabled. This check may not be needed.
MOZ_RELEASE_ASSERT(!mBlockRemoteFiles);
if (NS_SUCCEEDED(status) && mIsUnsafe &&
!Preferences::GetBool("network.jar.open-unsafe-types", false)) {
status = NS_ERROR_UNSAFE_CONTENT_TYPE;

View File

@ -139,8 +139,6 @@ private:
// True if this channel should skip any interception checks.
bool mForceNoIntercept;
// True if this channel should not download any remote files.
bool mBlockRemoteFiles;
friend class mozilla::net::InterceptedJARChannel;
};

View File

@ -8,4 +8,3 @@ support-files =
[test_bug403331.html]
[test_bug1034143_mapped.html]
run-if = os == 'linux'
[test_bug1173171.html]

View File

@ -1,69 +0,0 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1173171
-->
<head>
<title>Test for Bug 1173171</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<iframe id="testFrame"></iframe>
<pre id="test">
<script class="testbody" type="application/javascript;version=1.7">
/** Test for Bug 1173171 **/
SimpleTest.waitForExplicitFinish();
// __setPref(key, value)__.
// Set a pref value asynchronously, returning a prmoise that resolves
// when it succeeds.
let pushPref = function (key, value) {
return new Promise(function(resolve, reject) {
SpecialPowers.pushPrefEnv({"set": [[key, value]]}, resolve);
});
};
// __xhr(method, url, responseType__.
// A simple async XMLHttpRequest call.
// Returns a promise with the response.
let xhr = function (method, url, responseType) {
return new Promise(function (resolve, reject) {
let xhr = new XMLHttpRequest();
xhr.open(method, url, true);
xhr.onload = function () {
resolve(xhr.response);
};
xhr.responseType = responseType;
xhr.send();
});
};
let jarURL = "jar:http://mochi.test:8888/tests/modules/libjar/test/mochitest/bug403331.zip!/test.html";
// Test behavior when blocking is deactivated and activated.
spawnTask(function* () {
for (let shouldBlock of [false, true]) {
yield pushPref("network.jar.block-remote-files", shouldBlock);
try {
let response = yield xhr("GET", jarURL, "document");
didBlock = false;
} catch (e) {
didBlock = true;
}
ok(didBlock === shouldBlock,
"Remote jars should be blocked if and only if the 'network.jar.block-remote-files' pref is active.");
}
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>

View File

@ -1503,8 +1503,6 @@ pref("dom.server-events.default-reconnection-time", 5000); // in milliseconds
// application/java-archive or application/x-jar will not be opened
// by the jar channel.
pref("network.jar.open-unsafe-types", false);
// If true, loading remote JAR files using the jar: protocol will be prevented.
pref("network.jar.block-remote-files", false);
// This preference, if true, causes all UTF-8 domain names to be normalized to
// punycode. The intention is to allow UTF-8 domain names as input, but never