import test from 'ember-sinon-qunit/test-support/test';
import { module, skip } 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(),
test: new String('MTIzNA=='),
expected: '1234',
test: [],
test: [' '],
test: new Array(),
test: ['MTIzNA=='],
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) {
test: '',
test: 'MTIzNA==',
test('throws when passed the wrong value', function(assert) {
[{}, ['MTIz', 'NA=='], new Number(), 'hi'].forEach(function(item) {
assert.throws(function() {
atob(item);