stringify.js 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. 'use strict';
  2. var test = require('tape');
  3. var qs = require('../');
  4. var utils = require('../lib/utils');
  5. var iconv = require('iconv-lite');
  6. var SaferBuffer = require('safer-buffer').Buffer;
  7. var hasSymbols = require('has-symbols');
  8. var emptyTestCases = require('./empty-keys-cases').emptyTestCases;
  9. var hasBigInt = typeof BigInt === 'function';
  10. test('stringify()', function (t) {
  11. t.test('stringifies a querystring object', function (st) {
  12. st.equal(qs.stringify({ a: 'b' }), 'a=b');
  13. st.equal(qs.stringify({ a: 1 }), 'a=1');
  14. st.equal(qs.stringify({ a: 1, b: 2 }), 'a=1&b=2');
  15. st.equal(qs.stringify({ a: 'A_Z' }), 'a=A_Z');
  16. st.equal(qs.stringify({ a: '€' }), 'a=%E2%82%AC');
  17. st.equal(qs.stringify({ a: '' }), 'a=%EE%80%80');
  18. st.equal(qs.stringify({ a: 'א' }), 'a=%D7%90');
  19. st.equal(qs.stringify({ a: '𐐷' }), 'a=%F0%90%90%B7');
  20. st.end();
  21. });
  22. t.test('stringifies falsy values', function (st) {
  23. st.equal(qs.stringify(undefined), '');
  24. st.equal(qs.stringify(null), '');
  25. st.equal(qs.stringify(null, { strictNullHandling: true }), '');
  26. st.equal(qs.stringify(false), '');
  27. st.equal(qs.stringify(0), '');
  28. st.end();
  29. });
  30. t.test('stringifies symbols', { skip: !hasSymbols() }, function (st) {
  31. st.equal(qs.stringify(Symbol.iterator), '');
  32. st.equal(qs.stringify([Symbol.iterator]), '0=Symbol%28Symbol.iterator%29');
  33. st.equal(qs.stringify({ a: Symbol.iterator }), 'a=Symbol%28Symbol.iterator%29');
  34. st.equal(
  35. qs.stringify({ a: [Symbol.iterator] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }),
  36. 'a[]=Symbol%28Symbol.iterator%29'
  37. );
  38. st.end();
  39. });
  40. t.test('stringifies bigints', { skip: !hasBigInt }, function (st) {
  41. var three = BigInt(3);
  42. var encodeWithN = function (value, defaultEncoder, charset) {
  43. var result = defaultEncoder(value, defaultEncoder, charset);
  44. return typeof value === 'bigint' ? result + 'n' : result;
  45. };
  46. st.equal(qs.stringify(three), '');
  47. st.equal(qs.stringify([three]), '0=3');
  48. st.equal(qs.stringify([three], { encoder: encodeWithN }), '0=3n');
  49. st.equal(qs.stringify({ a: three }), 'a=3');
  50. st.equal(qs.stringify({ a: three }, { encoder: encodeWithN }), 'a=3n');
  51. st.equal(
  52. qs.stringify({ a: [three] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }),
  53. 'a[]=3'
  54. );
  55. st.equal(
  56. qs.stringify({ a: [three] }, { encodeValuesOnly: true, encoder: encodeWithN, arrayFormat: 'brackets' }),
  57. 'a[]=3n'
  58. );
  59. st.end();
  60. });
  61. t.test('adds query prefix', function (st) {
  62. st.equal(qs.stringify({ a: 'b' }, { addQueryPrefix: true }), '?a=b');
  63. st.end();
  64. });
  65. t.test('with query prefix, outputs blank string given an empty object', function (st) {
  66. st.equal(qs.stringify({}, { addQueryPrefix: true }), '');
  67. st.end();
  68. });
  69. t.test('stringifies nested falsy values', function (st) {
  70. st.equal(qs.stringify({ a: { b: { c: null } } }), 'a%5Bb%5D%5Bc%5D=');
  71. st.equal(qs.stringify({ a: { b: { c: null } } }, { strictNullHandling: true }), 'a%5Bb%5D%5Bc%5D');
  72. st.equal(qs.stringify({ a: { b: { c: false } } }), 'a%5Bb%5D%5Bc%5D=false');
  73. st.end();
  74. });
  75. t.test('stringifies a nested object', function (st) {
  76. st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c');
  77. st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }), 'a%5Bb%5D%5Bc%5D%5Bd%5D=e');
  78. st.end();
  79. });
  80. t.test('stringifies a nested object with dots notation', function (st) {
  81. st.equal(qs.stringify({ a: { b: 'c' } }, { allowDots: true }), 'a.b=c');
  82. st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }, { allowDots: true }), 'a.b.c.d=e');
  83. st.end();
  84. });
  85. t.test('stringifies an array value', function (st) {
  86. st.equal(
  87. qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'indices' }),
  88. 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d',
  89. 'indices => indices'
  90. );
  91. st.equal(
  92. qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'brackets' }),
  93. 'a%5B%5D=b&a%5B%5D=c&a%5B%5D=d',
  94. 'brackets => brackets'
  95. );
  96. st.equal(
  97. qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma' }),
  98. 'a=b%2Cc%2Cd',
  99. 'comma => comma'
  100. );
  101. st.equal(
  102. qs.stringify({ a: ['b', 'c', 'd'] }),
  103. 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d',
  104. 'default => indices'
  105. );
  106. st.end();
  107. });
  108. t.test('omits nulls when asked', function (st) {
  109. st.equal(qs.stringify({ a: 'b', c: null }, { skipNulls: true }), 'a=b');
  110. st.end();
  111. });
  112. t.test('omits nested nulls when asked', function (st) {
  113. st.equal(qs.stringify({ a: { b: 'c', d: null } }, { skipNulls: true }), 'a%5Bb%5D=c');
  114. st.end();
  115. });
  116. t.test('omits array indices when asked', function (st) {
  117. st.equal(qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }), 'a=b&a=c&a=d');
  118. st.end();
  119. });
  120. t.test('stringifies an array value with one item vs multiple items', function (st) {
  121. st.test('non-array item', function (s2t) {
  122. s2t.equal(qs.stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'indices' }), 'a=c');
  123. s2t.equal(qs.stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a=c');
  124. s2t.equal(qs.stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=c');
  125. s2t.equal(qs.stringify({ a: 'c' }, { encodeValuesOnly: true }), 'a=c');
  126. s2t.end();
  127. });
  128. st.test('array with a single item', function (s2t) {
  129. s2t.equal(qs.stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), 'a[0]=c');
  130. s2t.equal(qs.stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a[]=c');
  131. s2t.equal(qs.stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=c');
  132. s2t.equal(qs.stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }), 'a[]=c'); // so it parses back as an array
  133. s2t.equal(qs.stringify({ a: ['c'] }, { encodeValuesOnly: true }), 'a[0]=c');
  134. s2t.end();
  135. });
  136. st.test('array with multiple items', function (s2t) {
  137. s2t.equal(qs.stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), 'a[0]=c&a[1]=d');
  138. s2t.equal(qs.stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a[]=c&a[]=d');
  139. s2t.equal(qs.stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=c,d');
  140. s2t.equal(qs.stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true }), 'a[0]=c&a[1]=d');
  141. s2t.end();
  142. });
  143. st.test('array with multiple items with a comma inside', function (s2t) {
  144. s2t.equal(qs.stringify({ a: ['c,d', 'e'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=c%2Cd,e');
  145. s2t.equal(qs.stringify({ a: ['c,d', 'e'] }, { arrayFormat: 'comma' }), 'a=c%2Cd%2Ce');
  146. s2t.end();
  147. });
  148. st.end();
  149. });
  150. t.test('stringifies a nested array value', function (st) {
  151. st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'indices' }), 'a[b][0]=c&a[b][1]=d');
  152. st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a[b][]=c&a[b][]=d');
  153. st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a[b]=c,d');
  154. st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true }), 'a[b][0]=c&a[b][1]=d');
  155. st.end();
  156. });
  157. t.test('stringifies comma and empty array values', function (st) {
  158. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'indices' }), 'a[0]=,&a[1]=&a[2]=c,d%');
  159. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'brackets' }), 'a[]=,&a[]=&a[]=c,d%');
  160. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'comma' }), 'a=,,,c,d%');
  161. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'repeat' }), 'a=,&a=&a=c,d%');
  162. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'indices' }), 'a[0]=%2C&a[1]=&a[2]=c%2Cd%25');
  163. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a[]=%2C&a[]=&a[]=c%2Cd%25');
  164. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=%2C,,c%2Cd%25');
  165. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'repeat' }), 'a=%2C&a=&a=c%2Cd%25');
  166. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }), 'a%5B0%5D=%2C&a%5B1%5D=&a%5B2%5D=c%2Cd%25');
  167. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'brackets' }), 'a%5B%5D=%2C&a%5B%5D=&a%5B%5D=c%2Cd%25');
  168. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }), 'a=%2C%2C%2Cc%2Cd%25');
  169. st.equal(qs.stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }), 'a=%2C&a=&a=c%2Cd%25');
  170. st.end();
  171. });
  172. t.test('stringifies comma and empty non-array values', function (st) {
  173. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'indices' }), 'a=,&b=&c=c,d%');
  174. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'brackets' }), 'a=,&b=&c=c,d%');
  175. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'comma' }), 'a=,&b=&c=c,d%');
  176. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'repeat' }), 'a=,&b=&c=c,d%');
  177. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: true, arrayFormat: 'indices' }), 'a=%2C&b=&c=c%2Cd%25');
  178. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a=%2C&b=&c=c%2Cd%25');
  179. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=%2C&b=&c=c%2Cd%25');
  180. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: true, arrayFormat: 'repeat' }), 'a=%2C&b=&c=c%2Cd%25');
  181. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }), 'a=%2C&b=&c=c%2Cd%25');
  182. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: false, arrayFormat: 'brackets' }), 'a=%2C&b=&c=c%2Cd%25');
  183. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }), 'a=%2C&b=&c=c%2Cd%25');
  184. st.equal(qs.stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }), 'a=%2C&b=&c=c%2Cd%25');
  185. st.end();
  186. });
  187. t.test('stringifies a nested array value with dots notation', function (st) {
  188. st.equal(
  189. qs.stringify(
  190. { a: { b: ['c', 'd'] } },
  191. { allowDots: true, encodeValuesOnly: true, arrayFormat: 'indices' }
  192. ),
  193. 'a.b[0]=c&a.b[1]=d',
  194. 'indices: stringifies with dots + indices'
  195. );
  196. st.equal(
  197. qs.stringify(
  198. { a: { b: ['c', 'd'] } },
  199. { allowDots: true, encodeValuesOnly: true, arrayFormat: 'brackets' }
  200. ),
  201. 'a.b[]=c&a.b[]=d',
  202. 'brackets: stringifies with dots + brackets'
  203. );
  204. st.equal(
  205. qs.stringify(
  206. { a: { b: ['c', 'd'] } },
  207. { allowDots: true, encodeValuesOnly: true, arrayFormat: 'comma' }
  208. ),
  209. 'a.b=c,d',
  210. 'comma: stringifies with dots + comma'
  211. );
  212. st.equal(
  213. qs.stringify(
  214. { a: { b: ['c', 'd'] } },
  215. { allowDots: true, encodeValuesOnly: true }
  216. ),
  217. 'a.b[0]=c&a.b[1]=d',
  218. 'default: stringifies with dots + indices'
  219. );
  220. st.end();
  221. });
  222. t.test('stringifies an object inside an array', function (st) {
  223. st.equal(
  224. qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'indices' }),
  225. 'a%5B0%5D%5Bb%5D=c', // a[0][b]=c
  226. 'indices => brackets'
  227. );
  228. st.equal(
  229. qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'brackets' }),
  230. 'a%5B%5D%5Bb%5D=c', // a[][b]=c
  231. 'brackets => brackets'
  232. );
  233. st.equal(
  234. qs.stringify({ a: [{ b: 'c' }] }),
  235. 'a%5B0%5D%5Bb%5D=c',
  236. 'default => indices'
  237. );
  238. st.equal(
  239. qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'indices' }),
  240. 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1',
  241. 'indices => indices'
  242. );
  243. st.equal(
  244. qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'brackets' }),
  245. 'a%5B%5D%5Bb%5D%5Bc%5D%5B%5D=1',
  246. 'brackets => brackets'
  247. );
  248. st.equal(
  249. qs.stringify({ a: [{ b: { c: [1] } }] }),
  250. 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1',
  251. 'default => indices'
  252. );
  253. st.end();
  254. });
  255. t.test('stringifies an array with mixed objects and primitives', function (st) {
  256. st.equal(
  257. qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'indices' }),
  258. 'a[0][b]=1&a[1]=2&a[2]=3',
  259. 'indices => indices'
  260. );
  261. st.equal(
  262. qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }),
  263. 'a[][b]=1&a[]=2&a[]=3',
  264. 'brackets => brackets'
  265. );
  266. st.equal(
  267. qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'comma' }),
  268. '???',
  269. 'brackets => brackets',
  270. { skip: 'TODO: figure out what this should do' }
  271. );
  272. st.equal(
  273. qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true }),
  274. 'a[0][b]=1&a[1]=2&a[2]=3',
  275. 'default => indices'
  276. );
  277. st.end();
  278. });
  279. t.test('stringifies an object inside an array with dots notation', function (st) {
  280. st.equal(
  281. qs.stringify(
  282. { a: [{ b: 'c' }] },
  283. { allowDots: true, encode: false, arrayFormat: 'indices' }
  284. ),
  285. 'a[0].b=c',
  286. 'indices => indices'
  287. );
  288. st.equal(
  289. qs.stringify(
  290. { a: [{ b: 'c' }] },
  291. { allowDots: true, encode: false, arrayFormat: 'brackets' }
  292. ),
  293. 'a[].b=c',
  294. 'brackets => brackets'
  295. );
  296. st.equal(
  297. qs.stringify(
  298. { a: [{ b: 'c' }] },
  299. { allowDots: true, encode: false }
  300. ),
  301. 'a[0].b=c',
  302. 'default => indices'
  303. );
  304. st.equal(
  305. qs.stringify(
  306. { a: [{ b: { c: [1] } }] },
  307. { allowDots: true, encode: false, arrayFormat: 'indices' }
  308. ),
  309. 'a[0].b.c[0]=1',
  310. 'indices => indices'
  311. );
  312. st.equal(
  313. qs.stringify(
  314. { a: [{ b: { c: [1] } }] },
  315. { allowDots: true, encode: false, arrayFormat: 'brackets' }
  316. ),
  317. 'a[].b.c[]=1',
  318. 'brackets => brackets'
  319. );
  320. st.equal(
  321. qs.stringify(
  322. { a: [{ b: { c: [1] } }] },
  323. { allowDots: true, encode: false }
  324. ),
  325. 'a[0].b.c[0]=1',
  326. 'default => indices'
  327. );
  328. st.end();
  329. });
  330. t.test('does not omit object keys when indices = false', function (st) {
  331. st.equal(qs.stringify({ a: [{ b: 'c' }] }, { indices: false }), 'a%5Bb%5D=c');
  332. st.end();
  333. });
  334. t.test('uses indices notation for arrays when indices=true', function (st) {
  335. st.equal(qs.stringify({ a: ['b', 'c'] }, { indices: true }), 'a%5B0%5D=b&a%5B1%5D=c');
  336. st.end();
  337. });
  338. t.test('uses indices notation for arrays when no arrayFormat is specified', function (st) {
  339. st.equal(qs.stringify({ a: ['b', 'c'] }), 'a%5B0%5D=b&a%5B1%5D=c');
  340. st.end();
  341. });
  342. t.test('uses indices notation for arrays when no arrayFormat=indices', function (st) {
  343. st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }), 'a%5B0%5D=b&a%5B1%5D=c');
  344. st.end();
  345. });
  346. t.test('uses repeat notation for arrays when no arrayFormat=repeat', function (st) {
  347. st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }), 'a=b&a=c');
  348. st.end();
  349. });
  350. t.test('uses brackets notation for arrays when no arrayFormat=brackets', function (st) {
  351. st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }), 'a%5B%5D=b&a%5B%5D=c');
  352. st.end();
  353. });
  354. t.test('stringifies a complicated object', function (st) {
  355. st.equal(qs.stringify({ a: { b: 'c', d: 'e' } }), 'a%5Bb%5D=c&a%5Bd%5D=e');
  356. st.end();
  357. });
  358. t.test('stringifies an empty value', function (st) {
  359. st.equal(qs.stringify({ a: '' }), 'a=');
  360. st.equal(qs.stringify({ a: null }, { strictNullHandling: true }), 'a');
  361. st.equal(qs.stringify({ a: '', b: '' }), 'a=&b=');
  362. st.equal(qs.stringify({ a: null, b: '' }, { strictNullHandling: true }), 'a&b=');
  363. st.equal(qs.stringify({ a: { b: '' } }), 'a%5Bb%5D=');
  364. st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: true }), 'a%5Bb%5D');
  365. st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: false }), 'a%5Bb%5D=');
  366. st.end();
  367. });
  368. t.test('stringifies an empty array in different arrayFormat', function (st) {
  369. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false }), 'b[0]=&c=c');
  370. // arrayFormat default
  371. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices' }), 'b[0]=&c=c');
  372. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets' }), 'b[]=&c=c');
  373. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat' }), 'b=&c=c');
  374. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma' }), 'b=&c=c');
  375. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', commaRoundTrip: true }), 'b[]=&c=c');
  376. // with strictNullHandling
  377. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices', strictNullHandling: true }), 'b[0]&c=c');
  378. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets', strictNullHandling: true }), 'b[]&c=c');
  379. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat', strictNullHandling: true }), 'b&c=c');
  380. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', strictNullHandling: true }), 'b&c=c');
  381. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', strictNullHandling: true, commaRoundTrip: true }), 'b[]&c=c');
  382. // with skipNulls
  383. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices', skipNulls: true }), 'c=c');
  384. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets', skipNulls: true }), 'c=c');
  385. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat', skipNulls: true }), 'c=c');
  386. st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', skipNulls: true }), 'c=c');
  387. st.end();
  388. });
  389. t.test('stringifies a null object', { skip: !Object.create }, function (st) {
  390. var obj = Object.create(null);
  391. obj.a = 'b';
  392. st.equal(qs.stringify(obj), 'a=b');
  393. st.end();
  394. });
  395. t.test('returns an empty string for invalid input', function (st) {
  396. st.equal(qs.stringify(undefined), '');
  397. st.equal(qs.stringify(false), '');
  398. st.equal(qs.stringify(null), '');
  399. st.equal(qs.stringify(''), '');
  400. st.end();
  401. });
  402. t.test('stringifies an object with a null object as a child', { skip: !Object.create }, function (st) {
  403. var obj = { a: Object.create(null) };
  404. obj.a.b = 'c';
  405. st.equal(qs.stringify(obj), 'a%5Bb%5D=c');
  406. st.end();
  407. });
  408. t.test('drops keys with a value of undefined', function (st) {
  409. st.equal(qs.stringify({ a: undefined }), '');
  410. st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: true }), 'a%5Bc%5D');
  411. st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: false }), 'a%5Bc%5D=');
  412. st.equal(qs.stringify({ a: { b: undefined, c: '' } }), 'a%5Bc%5D=');
  413. st.end();
  414. });
  415. t.test('url encodes values', function (st) {
  416. st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c');
  417. st.end();
  418. });
  419. t.test('stringifies a date', function (st) {
  420. var now = new Date();
  421. var str = 'a=' + encodeURIComponent(now.toISOString());
  422. st.equal(qs.stringify({ a: now }), str);
  423. st.end();
  424. });
  425. t.test('stringifies the weird object from qs', function (st) {
  426. st.equal(qs.stringify({ 'my weird field': '~q1!2"\'w$5&7/z8)?' }), 'my%20weird%20field=~q1%212%22%27w%245%267%2Fz8%29%3F');
  427. st.end();
  428. });
  429. t.test('skips properties that are part of the object prototype', function (st) {
  430. Object.prototype.crash = 'test';
  431. st.equal(qs.stringify({ a: 'b' }), 'a=b');
  432. st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c');
  433. delete Object.prototype.crash;
  434. st.end();
  435. });
  436. t.test('stringifies boolean values', function (st) {
  437. st.equal(qs.stringify({ a: true }), 'a=true');
  438. st.equal(qs.stringify({ a: { b: true } }), 'a%5Bb%5D=true');
  439. st.equal(qs.stringify({ b: false }), 'b=false');
  440. st.equal(qs.stringify({ b: { c: false } }), 'b%5Bc%5D=false');
  441. st.end();
  442. });
  443. t.test('stringifies buffer values', function (st) {
  444. st.equal(qs.stringify({ a: SaferBuffer.from('test') }), 'a=test');
  445. st.equal(qs.stringify({ a: { b: SaferBuffer.from('test') } }), 'a%5Bb%5D=test');
  446. st.end();
  447. });
  448. t.test('stringifies an object using an alternative delimiter', function (st) {
  449. st.equal(qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d');
  450. st.end();
  451. });
  452. t.test('does not blow up when Buffer global is missing', function (st) {
  453. var tempBuffer = global.Buffer;
  454. delete global.Buffer;
  455. var result = qs.stringify({ a: 'b', c: 'd' });
  456. global.Buffer = tempBuffer;
  457. st.equal(result, 'a=b&c=d');
  458. st.end();
  459. });
  460. t.test('does not crash when parsing circular references', function (st) {
  461. var a = {};
  462. a.b = a;
  463. st['throws'](
  464. function () { qs.stringify({ 'foo[bar]': 'baz', 'foo[baz]': a }); },
  465. /RangeError: Cyclic object value/,
  466. 'cyclic values throw'
  467. );
  468. var circular = {
  469. a: 'value'
  470. };
  471. circular.a = circular;
  472. st['throws'](
  473. function () { qs.stringify(circular); },
  474. /RangeError: Cyclic object value/,
  475. 'cyclic values throw'
  476. );
  477. var arr = ['a'];
  478. st.doesNotThrow(
  479. function () { qs.stringify({ x: arr, y: arr }); },
  480. 'non-cyclic values do not throw'
  481. );
  482. st.end();
  483. });
  484. t.test('non-circular duplicated references can still work', function (st) {
  485. var hourOfDay = {
  486. 'function': 'hour_of_day'
  487. };
  488. var p1 = {
  489. 'function': 'gte',
  490. arguments: [hourOfDay, 0]
  491. };
  492. var p2 = {
  493. 'function': 'lte',
  494. arguments: [hourOfDay, 23]
  495. };
  496. st.equal(
  497. qs.stringify({ filters: { $and: [p1, p2] } }, { encodeValuesOnly: true }),
  498. 'filters[$and][0][function]=gte&filters[$and][0][arguments][0][function]=hour_of_day&filters[$and][0][arguments][1]=0&filters[$and][1][function]=lte&filters[$and][1][arguments][0][function]=hour_of_day&filters[$and][1][arguments][1]=23'
  499. );
  500. st.end();
  501. });
  502. t.test('selects properties when filter=array', function (st) {
  503. st.equal(qs.stringify({ a: 'b' }, { filter: ['a'] }), 'a=b');
  504. st.equal(qs.stringify({ a: 1 }, { filter: [] }), '');
  505. st.equal(
  506. qs.stringify(
  507. { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' },
  508. { filter: ['a', 'b', 0, 2], arrayFormat: 'indices' }
  509. ),
  510. 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3',
  511. 'indices => indices'
  512. );
  513. st.equal(
  514. qs.stringify(
  515. { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' },
  516. { filter: ['a', 'b', 0, 2], arrayFormat: 'brackets' }
  517. ),
  518. 'a%5Bb%5D%5B%5D=1&a%5Bb%5D%5B%5D=3',
  519. 'brackets => brackets'
  520. );
  521. st.equal(
  522. qs.stringify(
  523. { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' },
  524. { filter: ['a', 'b', 0, 2] }
  525. ),
  526. 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3',
  527. 'default => indices'
  528. );
  529. st.end();
  530. });
  531. t.test('supports custom representations when filter=function', function (st) {
  532. var calls = 0;
  533. var obj = { a: 'b', c: 'd', e: { f: new Date(1257894000000) } };
  534. var filterFunc = function (prefix, value) {
  535. calls += 1;
  536. if (calls === 1) {
  537. st.equal(prefix, '', 'prefix is empty');
  538. st.equal(value, obj);
  539. } else if (prefix === 'c') {
  540. return void 0;
  541. } else if (value instanceof Date) {
  542. st.equal(prefix, 'e[f]');
  543. return value.getTime();
  544. }
  545. return value;
  546. };
  547. st.equal(qs.stringify(obj, { filter: filterFunc }), 'a=b&e%5Bf%5D=1257894000000');
  548. st.equal(calls, 5);
  549. st.end();
  550. });
  551. t.test('can disable uri encoding', function (st) {
  552. st.equal(qs.stringify({ a: 'b' }, { encode: false }), 'a=b');
  553. st.equal(qs.stringify({ a: { b: 'c' } }, { encode: false }), 'a[b]=c');
  554. st.equal(qs.stringify({ a: 'b', c: null }, { strictNullHandling: true, encode: false }), 'a=b&c');
  555. st.end();
  556. });
  557. t.test('can sort the keys', function (st) {
  558. var sort = function (a, b) {
  559. return a.localeCompare(b);
  560. };
  561. st.equal(qs.stringify({ a: 'c', z: 'y', b: 'f' }, { sort: sort }), 'a=c&b=f&z=y');
  562. st.equal(qs.stringify({ a: 'c', z: { j: 'a', i: 'b' }, b: 'f' }, { sort: sort }), 'a=c&b=f&z%5Bi%5D=b&z%5Bj%5D=a');
  563. st.end();
  564. });
  565. t.test('can sort the keys at depth 3 or more too', function (st) {
  566. var sort = function (a, b) {
  567. return a.localeCompare(b);
  568. };
  569. st.equal(
  570. qs.stringify(
  571. { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' },
  572. { sort: sort, encode: false }
  573. ),
  574. 'a=a&b=b&z[zi][zia]=zia&z[zi][zib]=zib&z[zj][zja]=zja&z[zj][zjb]=zjb'
  575. );
  576. st.equal(
  577. qs.stringify(
  578. { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' },
  579. { sort: null, encode: false }
  580. ),
  581. 'a=a&z[zj][zjb]=zjb&z[zj][zja]=zja&z[zi][zib]=zib&z[zi][zia]=zia&b=b'
  582. );
  583. st.end();
  584. });
  585. t.test('can stringify with custom encoding', function (st) {
  586. st.equal(qs.stringify({ 県: '大阪府', '': '' }, {
  587. encoder: function (str) {
  588. if (str.length === 0) {
  589. return '';
  590. }
  591. var buf = iconv.encode(str, 'shiftjis');
  592. var result = [];
  593. for (var i = 0; i < buf.length; ++i) {
  594. result.push(buf.readUInt8(i).toString(16));
  595. }
  596. return '%' + result.join('%');
  597. }
  598. }), '%8c%a7=%91%e5%8d%e3%95%7b&=');
  599. st.end();
  600. });
  601. t.test('receives the default encoder as a second argument', function (st) {
  602. st.plan(2);
  603. qs.stringify({ a: 1 }, {
  604. encoder: function (str, defaultEncoder) {
  605. st.equal(defaultEncoder, utils.encode);
  606. }
  607. });
  608. st.end();
  609. });
  610. t.test('throws error with wrong encoder', function (st) {
  611. st['throws'](function () {
  612. qs.stringify({}, { encoder: 'string' });
  613. }, new TypeError('Encoder has to be a function.'));
  614. st.end();
  615. });
  616. t.test('can use custom encoder for a buffer object', { skip: typeof Buffer === 'undefined' }, function (st) {
  617. st.equal(qs.stringify({ a: SaferBuffer.from([1]) }, {
  618. encoder: function (buffer) {
  619. if (typeof buffer === 'string') {
  620. return buffer;
  621. }
  622. return String.fromCharCode(buffer.readUInt8(0) + 97);
  623. }
  624. }), 'a=b');
  625. st.equal(qs.stringify({ a: SaferBuffer.from('a b') }, {
  626. encoder: function (buffer) {
  627. return buffer;
  628. }
  629. }), 'a=a b');
  630. st.end();
  631. });
  632. t.test('serializeDate option', function (st) {
  633. var date = new Date();
  634. st.equal(
  635. qs.stringify({ a: date }),
  636. 'a=' + date.toISOString().replace(/:/g, '%3A'),
  637. 'default is toISOString'
  638. );
  639. var mutatedDate = new Date();
  640. mutatedDate.toISOString = function () {
  641. throw new SyntaxError();
  642. };
  643. st['throws'](function () {
  644. mutatedDate.toISOString();
  645. }, SyntaxError);
  646. st.equal(
  647. qs.stringify({ a: mutatedDate }),
  648. 'a=' + Date.prototype.toISOString.call(mutatedDate).replace(/:/g, '%3A'),
  649. 'toISOString works even when method is not locally present'
  650. );
  651. var specificDate = new Date(6);
  652. st.equal(
  653. qs.stringify(
  654. { a: specificDate },
  655. { serializeDate: function (d) { return d.getTime() * 7; } }
  656. ),
  657. 'a=42',
  658. 'custom serializeDate function called'
  659. );
  660. st.equal(
  661. qs.stringify(
  662. { a: [date] },
  663. {
  664. serializeDate: function (d) { return d.getTime(); },
  665. arrayFormat: 'comma'
  666. }
  667. ),
  668. 'a=' + date.getTime(),
  669. 'works with arrayFormat comma'
  670. );
  671. st.equal(
  672. qs.stringify(
  673. { a: [date] },
  674. {
  675. serializeDate: function (d) { return d.getTime(); },
  676. arrayFormat: 'comma',
  677. commaRoundTrip: true
  678. }
  679. ),
  680. 'a%5B%5D=' + date.getTime(),
  681. 'works with arrayFormat comma'
  682. );
  683. st.end();
  684. });
  685. t.test('RFC 1738 serialization', function (st) {
  686. st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC1738 }), 'a=b+c');
  687. st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC1738 }), 'a+b=c+d');
  688. st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }, { format: qs.formats.RFC1738 }), 'a+b=a+b');
  689. st.equal(qs.stringify({ 'foo(ref)': 'bar' }, { format: qs.formats.RFC1738 }), 'foo(ref)=bar');
  690. st.end();
  691. });
  692. t.test('RFC 3986 spaces serialization', function (st) {
  693. st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC3986 }), 'a=b%20c');
  694. st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC3986 }), 'a%20b=c%20d');
  695. st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }, { format: qs.formats.RFC3986 }), 'a%20b=a%20b');
  696. st.end();
  697. });
  698. t.test('Backward compatibility to RFC 3986', function (st) {
  699. st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c');
  700. st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }), 'a%20b=a%20b');
  701. st.end();
  702. });
  703. t.test('Edge cases and unknown formats', function (st) {
  704. ['UFO1234', false, 1234, null, {}, []].forEach(function (format) {
  705. st['throws'](
  706. function () {
  707. qs.stringify({ a: 'b c' }, { format: format });
  708. },
  709. new TypeError('Unknown format option provided.')
  710. );
  711. });
  712. st.end();
  713. });
  714. t.test('encodeValuesOnly', function (st) {
  715. st.equal(
  716. qs.stringify(
  717. { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] },
  718. { encodeValuesOnly: true }
  719. ),
  720. 'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h'
  721. );
  722. st.equal(
  723. qs.stringify(
  724. { a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }
  725. ),
  726. 'a=b&c%5B0%5D=d&c%5B1%5D=e&f%5B0%5D%5B0%5D=g&f%5B1%5D%5B0%5D=h'
  727. );
  728. st.end();
  729. });
  730. t.test('encodeValuesOnly - strictNullHandling', function (st) {
  731. st.equal(
  732. qs.stringify(
  733. { a: { b: null } },
  734. { encodeValuesOnly: true, strictNullHandling: true }
  735. ),
  736. 'a[b]'
  737. );
  738. st.end();
  739. });
  740. t.test('throws if an invalid charset is specified', function (st) {
  741. st['throws'](function () {
  742. qs.stringify({ a: 'b' }, { charset: 'foobar' });
  743. }, new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'));
  744. st.end();
  745. });
  746. t.test('respects a charset of iso-8859-1', function (st) {
  747. st.equal(qs.stringify({ æ: 'æ' }, { charset: 'iso-8859-1' }), '%E6=%E6');
  748. st.end();
  749. });
  750. t.test('encodes unrepresentable chars as numeric entities in iso-8859-1 mode', function (st) {
  751. st.equal(qs.stringify({ a: '☺' }, { charset: 'iso-8859-1' }), 'a=%26%239786%3B');
  752. st.end();
  753. });
  754. t.test('respects an explicit charset of utf-8 (the default)', function (st) {
  755. st.equal(qs.stringify({ a: 'æ' }, { charset: 'utf-8' }), 'a=%C3%A6');
  756. st.end();
  757. });
  758. t.test('adds the right sentinel when instructed to and the charset is utf-8', function (st) {
  759. st.equal(qs.stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'utf-8' }), 'utf8=%E2%9C%93&a=%C3%A6');
  760. st.end();
  761. });
  762. t.test('adds the right sentinel when instructed to and the charset is iso-8859-1', function (st) {
  763. st.equal(qs.stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'iso-8859-1' }), 'utf8=%26%2310003%3B&a=%E6');
  764. st.end();
  765. });
  766. t.test('does not mutate the options argument', function (st) {
  767. var options = {};
  768. qs.stringify({}, options);
  769. st.deepEqual(options, {});
  770. st.end();
  771. });
  772. t.test('strictNullHandling works with custom filter', function (st) {
  773. var filter = function (prefix, value) {
  774. return value;
  775. };
  776. var options = { strictNullHandling: true, filter: filter };
  777. st.equal(qs.stringify({ key: null }, options), 'key');
  778. st.end();
  779. });
  780. t.test('strictNullHandling works with null serializeDate', function (st) {
  781. var serializeDate = function () {
  782. return null;
  783. };
  784. var options = { strictNullHandling: true, serializeDate: serializeDate };
  785. var date = new Date();
  786. st.equal(qs.stringify({ key: date }, options), 'key');
  787. st.end();
  788. });
  789. t.test('allows for encoding keys and values differently', function (st) {
  790. var encoder = function (str, defaultEncoder, charset, type) {
  791. if (type === 'key') {
  792. return defaultEncoder(str, defaultEncoder, charset, type).toLowerCase();
  793. }
  794. if (type === 'value') {
  795. return defaultEncoder(str, defaultEncoder, charset, type).toUpperCase();
  796. }
  797. throw 'this should never happen! type: ' + type;
  798. };
  799. st.deepEqual(qs.stringify({ KeY: 'vAlUe' }, { encoder: encoder }), 'key=VALUE');
  800. st.end();
  801. });
  802. t.test('objects inside arrays', function (st) {
  803. var obj = { a: { b: { c: 'd', e: 'f' } } };
  804. var withArray = { a: { b: [{ c: 'd', e: 'f' }] } };
  805. st.equal(qs.stringify(obj, { encode: false }), 'a[b][c]=d&a[b][e]=f', 'no array, no arrayFormat');
  806. st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'bracket' }), 'a[b][c]=d&a[b][e]=f', 'no array, bracket');
  807. st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'indices' }), 'a[b][c]=d&a[b][e]=f', 'no array, indices');
  808. st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'comma' }), 'a[b][c]=d&a[b][e]=f', 'no array, comma');
  809. st.equal(qs.stringify(withArray, { encode: false }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, no arrayFormat');
  810. st.equal(qs.stringify(withArray, { encode: false, arrayFormat: 'bracket' }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, bracket');
  811. st.equal(qs.stringify(withArray, { encode: false, arrayFormat: 'indices' }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, indices');
  812. st.equal(
  813. qs.stringify(withArray, { encode: false, arrayFormat: 'comma' }),
  814. '???',
  815. 'array, comma',
  816. { skip: 'TODO: figure out what this should do' }
  817. );
  818. st.end();
  819. });
  820. t.test('stringifies sparse arrays', function (st) {
  821. /* eslint no-sparse-arrays: 0 */
  822. st.equal(qs.stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true }), 'a[1]=2&a[4]=1');
  823. st.equal(qs.stringify({ a: [, { b: [, , { c: '1' }] }] }, { encodeValuesOnly: true }), 'a[1][b][2][c]=1');
  824. st.equal(qs.stringify({ a: [, [, , [, , , { c: '1' }]]] }, { encodeValuesOnly: true }), 'a[1][2][3][c]=1');
  825. st.equal(qs.stringify({ a: [, [, , [, , , { c: [, '1'] }]]] }, { encodeValuesOnly: true }), 'a[1][2][3][c][1]=1');
  826. st.end();
  827. });
  828. t.end();
  829. });
  830. test('stringifies empty keys', function (t) {
  831. emptyTestCases.forEach(function (testCase) {
  832. t.test('stringifies an object with empty string key with ' + testCase.input, function (st) {
  833. st.deepEqual(qs.stringify(testCase.withEmptyKeys, { encode: false }), testCase.stringifyOutput);
  834. st.end();
  835. });
  836. });
  837. t.test('edge case with object/arrays', function (st) {
  838. st.deepEqual(qs.stringify({ '': { '': [2, 3] } }, { encode: false }), '[][0]=2&[][1]=3');
  839. st.deepEqual(qs.stringify({ '': { '': [2, 3], a: 2 } }, { encode: false }), '[][0]=2&[][1]=3&[a]=2');
  840. st.end();
  841. });
  842. });