X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fcookie009.phpt;fp=tests%2Fcookie009.phpt;h=55aac9457846f20c0f6e779f2e191ab939ac3d95;hp=0000000000000000000000000000000000000000;hb=4850e3ba188215f9d0cda9e7c0e7e011b340b7c7;hpb=1cf96ccdd9eec5efd69ea474636bcb9f7ab89bb8 diff --git a/tests/cookie009.phpt b/tests/cookie009.phpt new file mode 100644 index 0000000..55aac94 --- /dev/null +++ b/tests/cookie009.phpt @@ -0,0 +1,37 @@ +--TEST-- +cookies domain +--SKIPIF-- + +--FILE-- +getCookie("this")); +var_dump((string)$c); +var_dump($c->getDomain()); +$o = clone $c; +$d = "sub.example.com"; +$o->setDomain(); +var_dump($o->getDomain()); +var_dump($c->getDomain()); +$o->setDomain($d); +var_dump($o->getDomain()); +var_dump($c->getDomain()); +var_dump($o->toString()); + +?> +DONE +--EXPECT-- +Test +string(12) "has a domain" +string(44) "this=has%20a%20domain; domain=.example.com; " +string(12) ".example.com" +NULL +string(12) ".example.com" +string(15) "sub.example.com" +string(12) ".example.com" +string(47) "this=has%20a%20domain; domain=sub.example.com; " +DONE