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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt

Issue 2221093003: [Devtools] Backend support for setCookie (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot to rename variables Created 4 years, 4 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: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..de86b4f399d66d7422ebb62c4db2655f78b64d0d
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt
@@ -0,0 +1,208 @@
+Tests that cookies are set, updated and removed.
+
+Test started
+Enabling network
+
+Running test: simpleCookieAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar1
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: simpleCookieChange
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: second bar2
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: anotherSimpleCookieAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 2
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo2
+ Value: bar1
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: second bar2
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: simpleCookieDelete
+Deleting Cookie
+Logging Cookies
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo2
+ Value: bar1
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: sessionCookieAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar4
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: nonSessionCookieZeroAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 0
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: nonSessionCookieAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar6
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: false
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: differentOriginCookieAdd
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 0
+
+Running test: invalidCookieAddDomain
+Setting Cookie
+Logging Cookies
+Success: false
+Num of cookies 0
+
+Running test: invalidCookieAddName
+Setting Cookie
+Logging Cookies
+Success: false
+Num of cookies 0
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: secureCookieAdd
+Setting Cookie
+Logging Cookies
+Success: false
+Num of cookies 0
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: cookieAddHttpOnly
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar
+ Path: /
+ HttpOnly: true
+ Secure: false
+ Session: true
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: cookieAddSameSiteLax
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+
+Running test: deleteAllCookies
+Removing All Cookies
+Logging Cookies
+Num of cookies 0
+
+Running test: cookieAddSameSiteLax
+Setting Cookie
+Logging Cookies
+Success: true
+Num of cookies 1
+ Cookie:
+ Domain: 127.0.0.1
+ Name: foo
+ Value: bar
+ Path: /
+ HttpOnly: false
+ Secure: false
+ Session: true
+

Powered by Google App Engine
This is Rietveld 408576698