123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /**
- * Copyright (c) 2017-2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import Interval from '../interval';
- import SortedArray from '../sorted-array';
- describe('sortedArray', () => {
- function testI(name: string, a: Interval, b: Interval) {
- it(name, () => expect(Interval.areEqual(a, b)).toBe(true));
- }
- function test(name: string, a: any, b: any) {
- it(name, () => expect(a).toEqual(b));
- }
- function compareArrays(a: ArrayLike<number>, b: ArrayLike<number>) {
- expect(a.length).toBe(b.length);
- for (let i = 0; i < a.length; i++) expect(a[i]).toBe(b[i]);
- }
- const a1234 = SortedArray.ofSortedArray([1, 2, 3, 4]);
- const a2468 = SortedArray.ofSortedArray([2, 4, 6, 8]);
- test('size', SortedArray.size(a1234), 4);
- test('min/max', [SortedArray.min(a1234), SortedArray.max(a1234)], [1, 4]);
- test('start/end', [SortedArray.start(a1234), SortedArray.end(a1234)], [1, 5]);
- test('has', SortedArray.has(a1234, 5), false);
- test('has', SortedArray.has(a1234, 4), true);
- it('has-all', () => {
- for (let i = 1; i <= 4; i++) expect(SortedArray.has(a1234, i)).toBe(true);
- });
- test('indexOf', SortedArray.indexOf(a2468, 5), -1);
- test('indexOf', SortedArray.indexOf(a2468, 2), 0);
- test('getAt', a2468[1], 4);
- test('areEqual', SortedArray.areEqual(a2468, a2468), true);
- test('areEqual1', SortedArray.areEqual(a2468, SortedArray.ofUnsortedArray([4, 2, 8, 6])), true);
- test('areEqual2', SortedArray.areEqual(a1234, a2468), false);
- test('predIndex1', SortedArray.findPredecessorIndex(a1234, 5), 4);
- test('predIndex2', SortedArray.findPredecessorIndex(a1234, 2), 1);
- test('predIndex3', SortedArray.findPredecessorIndex(a2468, 4), 1);
- test('predIndex4', SortedArray.findPredecessorIndex(a2468, 3), 1);
- test('predIndexInt', SortedArray.findPredecessorIndexInInterval(a1234, 0, Interval.ofRange(2, 3)), 2);
- testI('findRange', SortedArray.findRange(a2468, 2, 4), Interval.ofRange(0, 1));
- it('deduplicate', () => {
- compareArrays(SortedArray.deduplicate(SortedArray.ofSortedArray([1, 1, 1, 1])), [1]);
- compareArrays(SortedArray.deduplicate(SortedArray.ofSortedArray([1, 1, 2, 2, 3, 4])), [1, 2, 3, 4]);
- compareArrays(SortedArray.deduplicate(SortedArray.ofSortedArray([1, 2, 3])), [1, 2, 3]);
- });
- it('indicesOf', () => {
- compareArrays(SortedArray.indicesOf(SortedArray.ofSortedArray([10, 11, 12]), SortedArray.ofSortedArray([10, 12, 14])), [0, 2]);
- });
- it('indicesOf 2', () => {
- compareArrays(
- SortedArray.indicesOf(
- SortedArray.ofSortedArray([0, 1, 2, 3, 4, 8, 9, 10]),
- SortedArray.ofSortedArray([1, 3, 4, 9, 10])
- ),
- [1, 3, 4, 6, 7]
- );
- });
- test('intersectionSize', SortedArray.intersectionSize(a1234, a2468), 2);
- it('union1', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 836, 837, 838, 839, 840, 841, 842, 843]),
- SortedArray.ofSortedArray([835])
- ),
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843])
- );
- });
- it('union2', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([830, 832, 833]),
- SortedArray.ofSortedArray([831])
- ),
- SortedArray.ofSortedArray([830, 831, 832, 833])
- );
- });
- it('union3ab', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 835]),
- SortedArray.ofSortedArray([836, 837, 838, 839, 840, 841, 842, 843])
- ),
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843])
- );
- });
- it('union3ba', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([836, 837, 838, 839, 840, 841, 842, 843]),
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 835])
- ),
- SortedArray.ofSortedArray([830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843])
- );
- });
- it('union4', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([1, 3, 5, 7, 9]),
- SortedArray.ofSortedArray([2, 4, 6, 8])
- ),
- SortedArray.ofSortedArray([1, 2, 3, 4, 5, 6, 7, 8, 9])
- );
- });
- it('union5', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([2, 3, 4, 20, 21, 22]),
- SortedArray.ofSortedArray([10, 11, 12])
- ),
- SortedArray.ofSortedArray([2, 3, 4, 10, 11, 12, 20, 21, 22])
- );
- });
- it('union6', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([768, 769, 770, 771, 772, 773, 774, 775, 776, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819]),
- SortedArray.ofSortedArray([1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758])
- ),
- SortedArray.ofSortedArray([768, 769, 770, 771, 772, 773, 774, 775, 776, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819])
- );
- });
- it('union7', () => {
- compareArrays(
- SortedArray.union(
- SortedArray.ofSortedArray([3766, 3767, 3768, 3770, 3773, 3780, 3783, 3787, 3797]),
- SortedArray.ofSortedArray([3769, 3790, 3794])
- ),
- SortedArray.ofSortedArray([3766, 3767, 3768, 3769, 3770, 3773, 3780, 3783, 3787, 3790, 3794, 3797])
- );
- });
- it('isSubset', () => {
- expect(SortedArray.isSubset(
- SortedArray.ofSortedArray([1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295]),
- SortedArray.ofSortedArray([1271, 1272, 1274, 1275, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294])
- )).toBe(true);
- });
- });
|