| $step = empty($_GET['step']) ? '' : $_GET['step']; |
| $cookie_name = empty($_GET['cookie_name']) ? md5(__FILE__ . time()) : $_GET['cookie_name']; |
| // Step 0: Set cookie for following request. |
| setcookie($cookie_name, 'not sure, but something', $expire); |
| // Step 1: Request caused by JS. It is sent with Cookie header with value of step 0. |
| setcookie($cookie_name, '42', $expire); |
| // Step 2: Redirected request should have only Cookie header with update value/ |
| step2($_COOKIE[$cookie_name]); |
| die("Error: unknown step: {$step}"); |
| function redirect_to_step($step) { |
| header("HTTP/1.0 302 Found"); |
| header('Location: ' . redirect_url($step)); |
| function redirect_url($step) { |
| return "http://127.0.0.1:8000/cookies/" . basename(__FILE__) . "?step={$step}&cookie_name={$cookie_name}"; |
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| testRunner.waitUntilDone(); |
| window.location = "<?php echo redirect_url(1); ?>"; |
| <body onload="gotoStep1()"> |
| function step2($result) { |
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| Cookie: <?php echo $result; ?> |