mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import createQueryParams from 'consul-ui/utils/http/create-query-params';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | http/create-query-params', function() {
|
|
const stringifyQueryParams = createQueryParams(str => str);
|
|
test('it turns objects into query params formatted strings', function(assert) {
|
|
const expected = 'something=here&another=variable';
|
|
const actual = stringifyQueryParams({
|
|
something: 'here',
|
|
another: 'variable',
|
|
});
|
|
assert.equal(actual, expected);
|
|
});
|
|
test('it ignores undefined properties', function(assert) {
|
|
const expected = 'something=here';
|
|
const actual = stringifyQueryParams({
|
|
something: 'here',
|
|
another: undefined,
|
|
});
|
|
assert.equal(actual, expected);
|
|
});
|
|
test('it stringifies nested objects', function(assert) {
|
|
const expected = 'something=here&another[something]=here&another[another][something]=here';
|
|
const actual = stringifyQueryParams({
|
|
something: 'here',
|
|
another: {
|
|
something: 'here',
|
|
another: {
|
|
something: 'here',
|
|
},
|
|
},
|
|
});
|
|
assert.equal(actual, expected);
|
|
});
|
|
test('it only adds the property if the value is null', function(assert) {
|
|
const expected = 'something&another=here';
|
|
const actual = stringifyQueryParams({
|
|
something: null,
|
|
another: 'here',
|
|
});
|
|
assert.equal(actual, expected);
|
|
});
|
|
});
|