mirror of
https://github.com/status-im/consul.git
synced 2025-01-28 14:34:59 +00:00
663a5642c2
* Upgrade to 3.25 via ember-cli-update * v3.25.3...v3.26.1 * v3.26.1...v3.27.0 Co-authored-by: Michael Klein <michael@firstiwaslike.com>
70 lines
1.4 KiB
JavaScript
70 lines
1.4 KiB
JavaScript
import { module, skip, test } from 'qunit';
|
||
import atob from 'consul-ui/utils/atob';
|
||
|
||
module('Unit | Utils | atob', function () {
|
||
skip('it decodes non-strings properly', function (assert) {
|
||
[
|
||
{
|
||
test: ' ',
|
||
expected: '',
|
||
},
|
||
{
|
||
test: new String(),
|
||
expected: '',
|
||
},
|
||
{
|
||
test: new String('MTIzNA=='),
|
||
expected: '1234',
|
||
},
|
||
{
|
||
test: [],
|
||
expected: '',
|
||
},
|
||
{
|
||
test: [' '],
|
||
expected: '',
|
||
},
|
||
{
|
||
test: new Array(),
|
||
expected: '',
|
||
},
|
||
{
|
||
test: ['MTIzNA=='],
|
||
expected: '1234',
|
||
},
|
||
{
|
||
test: null,
|
||
expected: '<27><>e',
|
||
},
|
||
].forEach(function (item) {
|
||
const actual = atob(item.test);
|
||
assert.equal(actual, item.expected);
|
||
});
|
||
});
|
||
test('it decodes strings properly', function (assert) {
|
||
assert.expect(2);
|
||
[
|
||
{
|
||
test: '',
|
||
expected: '',
|
||
},
|
||
{
|
||
test: 'MTIzNA==',
|
||
expected: '1234',
|
||
},
|
||
].forEach(function (item) {
|
||
const actual = atob(item.test);
|
||
assert.equal(actual, item.expected);
|
||
});
|
||
});
|
||
test('throws when passed the wrong value', function (assert) {
|
||
assert.expect(4);
|
||
|
||
[{}, ['MTIz', 'NA=='], new Number(), 'hi'].forEach(function (item) {
|
||
assert.throws(function () {
|
||
atob(item);
|
||
});
|
||
});
|
||
});
|
||
});
|