Blame | Last modification | View Log | RSS feed
<html><head><title>testing Cookies</title><style type="text/css">@import "../resources/dojo.css";</style><script type="text/javascript"src="../dojo.js"djConfig="isDebug:true"></script><script type="text/javascript" src="../cookie.js"></script><script type="text/javascript">dojo.require("doh.runner");dojo.addOnLoad(function(){doh.register("t",[{name: "basicSet",runTest: function(t){// make sure the cookie is deadvar old = new Date(1976, 8, 15);document.cookie = "dojo_test=blah; expires=" + old.toUTCString();t.is(-1, document.cookie.indexOf("dojo_test="));// set the new onevar n = "dojo_test";var v = "test value";dojo.cookie(n, v);t.t(document.cookie.indexOf(n+"=") >= 0);var start = document.cookie.indexOf(n+"=") + n.length + 1;var end = document.cookie.indexOf(";", start);if(end == -1) end = document.cookie.length;t.is(v, decodeURIComponent(document.cookie.substring(start, end)));}},{name: "basicGet",runTest: function(t){// set the cookievar n = "dojo_test";var v = "foofoo";document.cookie = n + "=" + v;t.is(v, dojo.cookie(n));}},{name: "daysAsNumber",runTest: function(t){// set a cookie with a numerical expiresdojo.cookie("dojo_num", "foo", { expires: 10 });t.is("foo", dojo.cookie("dojo_num"));// remove the cookie by setting it with a negative// numerical expires. value doesn't really matter heredojo.cookie("dojo_num", "-deleted-", { expires: -10 });t.is(null, dojo.cookie("dojo_num"));}}]);doh.run();})</script></head><body></body></html>