summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/cookies/resources/cookie-utility.php
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-11-24 13:46:35 +0000
committerSteve Block <steveblock@google.com>2010-11-24 14:56:39 +0000
commit63796d97248956b9c06a7889b007b34bc8b486f4 (patch)
tree27ce93ae24d8d9b672c617fc5e02896f00a73a1c /LayoutTests/http/tests/cookies/resources/cookie-utility.php
parent0c918ae77b5edfe59b726ff40a7c86dbc4a94307 (diff)
downloadexternal_webkit-63796d97248956b9c06a7889b007b34bc8b486f4.zip
external_webkit-63796d97248956b9c06a7889b007b34bc8b486f4.tar.gz
external_webkit-63796d97248956b9c06a7889b007b34bc8b486f4.tar.bz2
Add LayoutTests http/tests/cookies at r71558
All tests pass or have failing test expectations. Bug: 3227269 Change-Id: Ia0d58eb29d312c57c2f687e5431bb997b9433560
Diffstat (limited to 'LayoutTests/http/tests/cookies/resources/cookie-utility.php')
-rw-r--r--LayoutTests/http/tests/cookies/resources/cookie-utility.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/LayoutTests/http/tests/cookies/resources/cookie-utility.php b/LayoutTests/http/tests/cookies/resources/cookie-utility.php
new file mode 100644
index 0000000..a33e7ac
--- /dev/null
+++ b/LayoutTests/http/tests/cookies/resources/cookie-utility.php
@@ -0,0 +1,40 @@
+<?php
+parse_str($_SERVER["QUERY_STRING"]);
+
+function deleteCookie($value, $name)
+{
+ setcookie($name, "deleted", time() - 86400, '/');
+}
+
+if ($queryfunction == "deleteCookies") {
+ array_walk($_COOKIE, deleteCookie);
+ echo "Deleted all cookies";
+ return;
+}
+
+if ($queryfunction == "setFooCookie") {
+ setcookie("foo", "awesomevalue", time() + 86400, '/');
+ echo "Set the foo cookie";
+ return;
+}
+
+if ($queryfunction == "setFooAndBarCookie") {
+ setcookie("foo", "awesomevalue", time() + 86400, '/');
+ setcookie("bar", "anotherawesomevalue", time() + 86400, '/');
+ echo "Set the foo and bar cookies";
+ return;
+}
+
+// Default for any other string is echo cookies.
+function echoCookie($value, $name)
+{
+ echo "$name = $value\n";
+}
+
+function echoAllCookies()
+{
+ echo "Cookies are:\n";
+ array_walk($_COOKIE, echoCookie);
+}
+
+?>