redux-devtools/packages/map2tree/test/map2tree.spec.js

222 lines
4.4 KiB
JavaScript
Raw Normal View History

import map2tree from '../src';
import immutable from 'immutable';
2019-01-08 19:35:12 +03:00
test('# rootNodeKey', () => {
const map = {};
2019-01-10 21:51:14 +03:00
const options = { key: 'foo' };
2019-01-08 19:35:12 +03:00
expect(map2tree(map, options).name).toBe('foo');
});
2019-01-08 19:35:12 +03:00
describe('# shallow map', () => {
test('## null', () => {
const map = {
a: null
};
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [{ name: 'a', value: null }]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## value', () => {
const map = {
a: 'foo',
b: 'bar'
};
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [{ name: 'a', value: 'foo' }, { name: 'b', value: 'bar' }]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## object', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: { aa: 'foo' }
};
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [{ name: 'a', children: [{ name: 'aa', value: 'foo' }] }]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## immutable Map', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: immutable.fromJS({ aa: 'foo', ab: 'bar' })
};
const expected = {
name: 'state',
children: [
2019-01-10 21:51:14 +03:00
{
name: 'a',
children: [{ name: 'aa', value: 'foo' }, { name: 'ab', value: 'bar' }]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
2019-01-10 21:51:14 +03:00
});
});
2019-01-08 19:35:12 +03:00
describe('# deep map', () => {
test('## null', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: { aa: null }
};
const expected = {
name: 'state',
children: [
{
name: 'a',
children: [
{
name: 'aa',
value: null
}
]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## object', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: { aa: { aaa: 'foo' } }
};
const expected = {
name: 'state',
children: [
{
name: 'a',
children: [
{
name: 'aa',
2019-01-10 21:51:14 +03:00
children: [{ name: 'aaa', value: 'foo' }]
}
]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
});
2019-01-08 19:35:12 +03:00
describe('# array map', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: [1, 2]
};
2019-01-08 19:35:12 +03:00
test('## push', () => {
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [
{
name: 'a',
children: [{ name: 'a[0]', value: 1 }, { name: 'a[1]', value: 2 }]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## unshift', () => {
2019-01-10 21:51:14 +03:00
const options = { pushMethod: 'unshift' };
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [
{
name: 'a',
children: [{ name: 'a[1]', value: 2 }, { name: 'a[0]', value: 1 }]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map, options)).toEqual(expected);
expect(map2tree(immutable.fromJS(map), options)).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## null', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: [null]
};
const expected = {
name: 'state',
2019-01-10 21:51:14 +03:00
children: [
{
name: 'a',
children: [{ name: 'a[0]', value: null }]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
2019-01-10 21:51:14 +03:00
});
});
2019-01-08 19:35:12 +03:00
describe('# collection map', () => {
test('## value', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: [{ aa: 1 }, { aa: 2 }]
};
const expected = {
name: 'state',
children: [
{
name: 'a',
children: [
2019-01-10 21:51:14 +03:00
{ name: 'a[0]', object: { aa: 1 } },
{ name: 'a[1]', object: { aa: 2 } }
]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
});
2019-01-08 19:35:12 +03:00
test('## object', () => {
const map = {
2019-01-10 21:51:14 +03:00
a: [{ aa: { aaa: 'foo' } }]
};
const expected = {
name: 'state',
children: [
{
name: 'a',
2019-01-10 21:51:14 +03:00
children: [{ name: 'a[0]', object: { aa: { aaa: 'foo' } } }]
}
]
};
2019-01-08 19:35:12 +03:00
expect(map2tree(map)).toEqual(expected);
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
2019-01-10 21:51:14 +03:00
});
});