querystring.html revision 9982ae2753aea312f8260f66903f5cfb1d202d22
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<link rel="stylesheet" href="/build/test/assets/test-console.css">
<style>
body {
font-size:16px;
}
script.mine {
clear:left;
white-space:pre;
display:block;
font-family:monospace;
background:#eef;
}
script::before, script::after {
content:"<script>";
}
script::after {
content:"</script>";
}
script[src]::before {
content:"<script src=\"" attr(src) "\">";
white-space:nowrap;
}
script[src] {
background:#fff;
}
.yui3-console, .yui3-console-bd {
height:auto!important;
overflow:auto!important;
overflow-y:auto!important;
}
</style>
</head>
<body class="yui3-skin-sam">
<h1>Query String Tests</h1>
<div id="testbed"></div>
<script src="/build/yui/yui.js"></script>
<script src="/build/console/console-debug.js"></script>
<script src="/build/querystring/querystring-debug.js"></script>
<script src="/build/collection/collection-debug.js"></script>
<script src="/build/test/test-debug.js"></script>
<script>
YUI({
filter : 'debug',
useBrowserConsole : false,
logInclude : {
TestRunner : true,
querystring : true,
QueryString: true
}
}).use( 'test', 'console', 'querystring', function (Y) {
var J = Y.JSON.stringify;
if (!Array.prototype.forEach) Array.prototype.forEach = function (fn) {
for (var i = 0, l = this.length; i < l; i ++) fn(this[i]);
};
// [ wonkyQS, canonicalQS, obj ]
var qsTestCases = [ //{
["foo=bar", "foo=bar", {"foo" : "bar"}],
["foo=bar&foo=quux", "foo%5B%5D=bar&foo%5B%5D=quux", {"foo" : ["bar", "quux"]}],
["foo=1&bar=2", "foo=1&bar=2", {"foo" : 1, "bar" : 2}],
["my+weird+field=q1%212%22%27w%245%267%2Fz8%29%3F", "my%20weird%20field=q1!2%22'w%245%267%2Fz8)%3F", {"my weird field" : "q1!2\"'w$5&7/z8)?" }],
["foo%3Dbaz=bar", "foo%3Dbaz=bar", {"foo=baz" : "bar"}],
["foo=baz=bar", "foo=baz%3Dbar", {"foo" : "baz=bar"}],
["str=foo&arr[]=1&arr[]=2&arr[]=3&obj[a]=bar&obj[b][]=4&obj[b][]=5&obj[b][]=6&obj[b][]=&obj[c][]=4&obj[c][]=5&obj[c][][somestr]=baz&obj[objobj][objobjstr]=blerg&somenull=&undef=", "str=foo&arr%5B%5D=1&arr%5B%5D=2&arr%5B%5D=3&obj%5Ba%5D=bar&obj%5Bb%5D%5B%5D=4&obj%5Bb%5D%5B%5D=5&obj%5Bb%5D%5B%5D=6&obj%5Bb%5D%5B%5D=&obj%5Bc%5D%5B%5D=4&obj%5Bc%5D%5B%5D=5&obj%5Bc%5D%5B%5D%5Bsomestr%5D=baz&obj%5Bobjobj%5D%5Bobjobjstr%5D=blerg&somenull=&undef=", {
"str":"foo",
"arr":[1,2,3],
"obj":{
"a":"bar",
"b":[4,5,6,""],
"c":[4,5,{"somestr":"baz"}],
"objobj":{"objobjstr":"blerg"}
},
"somenull":"",
"undef":""
}],
["foo[bar][bla]=baz&foo[bar][bla]=blo", "foo%5Bbar%5D%5Bbla%5D%5B%5D=baz&foo%5Bbar%5D%5Bbla%5D%5B%5D=blo", {"foo":{"bar":{"bla":["baz","blo"]}}}],
["foo[bar][][bla]=baz&foo[bar][][bla]=blo", "foo%5Bbar%5D%5B%5D%5Bbla%5D=baz&foo%5Bbar%5D%5B%5D%5Bbla%5D=blo", {"foo":{"bar":[{"bla":"baz"},{"bla":"blo"}]}}],
["foo[bar][bla][]=baz&foo[bar][bla][]=blo", "foo%5Bbar%5D%5Bbla%5D%5B%5D=baz&foo%5Bbar%5D%5Bbla%5D%5B%5D=blo", {"foo":{"bar":{"bla":["baz","blo"]}}}],
[" foo = bar ", "foo=bar", {"foo":"bar"}]
]; //}
// [ wonkyQS, canonicalQS, obj ]
var qsColonTestCases = [ //{
["foo:bar", "foo:bar", {"foo":"bar"}],
["foo:bar;foo:quux", "foo%5B%5D:bar;foo%5B%5D:quux", {"foo" : ["bar", "quux"]}],
["foo:1&bar:2;baz:quux", "foo:1%26bar%3A2;baz:quux", {"foo":"1&bar:2", "baz":"quux"}],
["foo%3Abaz:bar", "foo%3Abaz:bar", {"foo:baz":"bar"}],
["foo:baz:bar", "foo:baz%3Abar", {"foo":"baz:bar"}]
]; //}
// [ wonkyObj, qs, canonicalObj ]
var extendedFunction = function () {};
extendedFunction.prototype = {a:"b"};
var qsWeirdObjects = [ //{
[ {regexp:/./g}, "regexp=", {"regexp":""} ],
[ {regexp: new RegExp(".", "g")}, "regexp=", {"regexp":""} ],
[ {fn:function () {}}, "fn=", {"fn":""}],
[ {fn:new Function("")}, "fn=", {"fn":""} ],
[ {math:Math}, "math=", {"math":""} ],
[ {e:extendedFunction}, "e=", {"e":""} ],
[ {d:new Date()}, "d=", {"d":""} ],
[ {d:Date}, "d=", {"d":""} ],
[ {f:new Boolean(false), t:new Boolean(true)}, "f=0&t=1", {"f":0, "t":1} ],
[ {f:false, t:true}, "f=0&t=1", {"f":0, "t":1} ],
]; //}
// Tests Below...
var suite = new Y.Test.Suite("Query String Tests");
suite.add(new Y.Test.Case({
name : "Parse Query Strings",
testParseBasic : function() {
qsTestCases.forEach(function (testCase) {
Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[0])));
});
},
testParseColon : function () {
qsColonTestCases.forEach(function (testCase) {
Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[0], ";", ":")));
});
},
testParseWeird : function () {
qsWeirdObjects.forEach(function (testCase) {
Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[1])));
});
},
testNested : function () {
var f = Y.QueryString.parse("a=b&q=x%3Dy%26y%3Dz");
f.q = Y.QueryString.parse(f.q);
Y.Assert.areSame(J(f), J({ a : "b", q : { x : "y", y : "z" } }));
},
testNestedColon : function () {
var f = Y.QueryString.parse("a:b;q:x%3Ay%3By%3Az", ";", ":");
f.q = Y.QueryString.parse(f.q, ";", ":");
Y.Assert.areSame(J(f), J({ a : "b", q : { x : "y", y : "z" } }));
}
}));
suite.add(new Y.Test.Case({
name : "Query Stringify Objects",
_should:{error:{
testStringifyCyclical : "QueryString.stringify. Cyclical reference"
}},
testStringifyBasic : function () {
qsTestCases.forEach(function (testCase) {
Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[2]));
});
},
testStringifyColon : function () {
qsColonTestCases.forEach(function (testCase) {
Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[2], ";", ":"));
});
},
testStringifyWeird : function () {
qsWeirdObjects.forEach(function (testCase) {
Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[0]));
});
},
testStringifyCyclical : function () {
var f = {};
f.f = f;
Y.QueryString.stringify(f);
},
testNested : function () {
var f = Y.QueryString.stringify({
a : "b",
q : Y.QueryString.stringify({
x : "y",
y : "z"
})
});
Y.Assert.areSame(f, "a=b&q=x%3Dy%26y%3Dz");
},
testNestedColon : function () {
var f = Y.QueryString.stringify({
a : "b",
q : Y.QueryString.stringify({
x : "y",
y : "z"
}, ";", ":")
}, ";", ":");
Y.Assert.areSame(f, "a:b;q:x%3Ay%3By%3Az");
}
}));
var yconsole = new Y.Console({
contentBox : "#testbed",
newestOnTop : false,
style : 'inline',
height : 'auto',
width : 'auto'
}).render();
Y.Test.Runner.add(suite);
Y.Test.Runner.run();
});
</script>
</body>
</html>