Index: chrome/test/data/extensions/background_xhr/test_http_auth.js |
diff --git a/chrome/test/data/extensions/background_xhr/test_http_auth.js b/chrome/test/data/extensions/background_xhr/test_http_auth.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..beb26e8bafb3073695a39238ac84dc8f96070f78 |
--- /dev/null |
+++ b/chrome/test/data/extensions/background_xhr/test_http_auth.js |
@@ -0,0 +1,23 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// TODO(davidben): When URLSearchParams is stable and implemented, switch this |
+// (and a lot of other test code) to it. https://crbug.com/303152 |
+var url = decodeURIComponent(/url=([^&]*)/.exec(location.search)[1]); |
+var filter = {urls: [url], types: ["xmlhttprequest"]}; |
+ |
+chrome.webRequest.onCompleted.addListener(function(details) { |
+ chrome.test.assertEq(-1, details.tabId); |
+ chrome.test.assertEq(url, details.url); |
+ chrome.test.assertEq("xmlhttprequest", details.type); |
+ chrome.test.assertEq(401, details.statusCode); |
+ |
+ chrome.test.notifyPass(); |
+}, filter); |
+ |
+chrome.webRequest.onErrorOccurred.addListener(function(details) { |
+ chrome.test.notifyFail("Request failed"); |
+}, filter); |
+ |
+chrome.runtime.sendMessage({type: "xhr", method: "GET", url: url}); |