Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7560)

Unified Diff: chrome/test/data/extensions/api_test/webrequest/test_declarative1.js

Issue 16268017: GTTF: convert some tests in chrome to use EmbeddedTestServer patch nr 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/webrequest/test_declarative1.js
diff --git a/chrome/test/data/extensions/api_test/webrequest/test_declarative1.js b/chrome/test/data/extensions/api_test/webrequest/test_declarative1.js
index 88c60ef397dfd6de9cf7934d853d2079bb328e08..8705ff9f2ca9edba3066ef14f1fcbe39495015f4 100644
--- a/chrome/test/data/extensions/api_test/webrequest/test_declarative1.js
+++ b/chrome/test/data/extensions/api_test/webrequest/test_declarative1.js
@@ -30,32 +30,32 @@ var RemoveResponseCookie = chrome.declarativeWebRequest.RemoveResponseCookie;
// Constants as functions, not to be called until after runTests.
function getURLHttpSimple() {
- return getServerURL("files/extensions/api_test/webrequest/simpleLoad/a.html");
+ return getServerURL("extensions/api_test/webrequest/simpleLoad/a.html");
}
function getURLHttpSimpleB() {
- return getServerURL("files/extensions/api_test/webrequest/simpleLoad/b.html");
+ return getServerURL("extensions/api_test/webrequest/simpleLoad/b.html");
}
function getURLHttpComplex() {
return getServerURL(
- "files/extensions/api_test/webrequest/complexLoad/a.html");
+ "extensions/api_test/webrequest/complexLoad/a.html");
}
function getURLHttpRedirectTest() {
return getServerURL(
- "files/extensions/api_test/webrequest/declarative/a.html");
+ "extensions/api_test/webrequest/declarative/a.html");
}
function getURLHttpWithHeaders() {
return getServerURL(
- "files/extensions/api_test/webrequest/declarative/headers.html");
+ "extensions/api_test/webrequest/declarative/headers.html");
}
function getURLOfHTMLWithThirdParty() {
// Returns the URL of a HTML document with a third-party resource.
return getServerURL(
- "files/extensions/api_test/webrequest/declarative/third-party.html");
+ "extensions/api_test/webrequest/declarative/third-party.html");
}
// Shared test sections.
@@ -80,7 +80,7 @@ function cancelThirdPartyExpected() {
event: "onHeadersReceived",
details: {
url: getURLOfHTMLWithThirdParty(),
- statusLine: "HTTP/1.0 200 OK"
+ statusLine: "HTTP/1.1 200 OK"
}
},
{ label: "onResponseStarted",
@@ -90,7 +90,7 @@ function cancelThirdPartyExpected() {
fromCache: false,
ip: "127.0.0.1",
statusCode: 200,
- statusLine: "HTTP/1.0 200 OK"
+ statusLine: "HTTP/1.1 200 OK"
}
},
{ label: "onCompleted",
@@ -100,7 +100,7 @@ function cancelThirdPartyExpected() {
ip: "127.0.0.1",
url: getURLOfHTMLWithThirdParty(),
statusCode: 200,
- statusLine: "HTTP/1.0 200 OK"
+ statusLine: "HTTP/1.1 200 OK"
}
},
{ label: "img-onBeforeRequest",
@@ -330,7 +330,7 @@ runTests([
url: getURLHttpSimple(),
fromCache: false,
statusCode: 200,
- statusLine: "HTTP/1.0 200 OK",
+ statusLine: "HTTP/1.1 200 OK",
}
},
],
@@ -357,7 +357,7 @@ runTests([
url: getURLHttpRedirectTest(),
fromCache: false,
statusCode: 200,
- statusLine: "HTTP/1.0 200 OK",
+ statusLine: "HTTP/1.1 200 OK",
}
},
// We cannot wait for onCompleted signals because these are not sent
@@ -366,7 +366,7 @@ runTests([
event: "onBeforeRedirect",
details: {
url: getServerURL(
- "files/extensions/api_test/webrequest/declarative/image.png"),
+ "extensions/api_test/webrequest/declarative/image.png"),
redirectUrl: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEA" +
"AAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJ" +
"ggg==",
@@ -382,7 +382,7 @@ runTests([
frameId: 1,
parentFrameId: 0,
url: getServerURL(
- "files/extensions/api_test/webrequest/declarative/frame.html"),
+ "extensions/api_test/webrequest/declarative/frame.html"),
redirectUrl: "data:text/html,",
fromCache: false,
statusCode: -1,
@@ -416,7 +416,7 @@ runTests([
url: getURLHttpSimpleB(),
fromCache: false,
statusCode: 200,
- statusLine: "HTTP/1.0 200 OK",
+ statusLine: "HTTP/1.1 200 OK",
}
},
],

Powered by Google App Engine
This is Rietveld 408576698