aboutsummaryrefslogtreecommitdiff
path: root/src/Utils.test.js
blob: 6c9161b1ce2995920017ac8c339f4be57dcc06ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { colorEqual, coordsEqual, xy, rgb, findContiguousPixels } from './Utils'

test('test colorEqual function', () => {
    expect(colorEqual([0, 0, 0], [0, 0, 0]))
        .toBe(true)
    expect(colorEqual([1, 0, 0], [0, 0, 0]))
        .toBe(false)
    expect(colorEqual([0, 1, 0], [0, 0, 0]))
        .toBe(false)
    expect(colorEqual([0, 0, 1], [0, 0, 0]))
        .toBe(false)

    expect(colorEqual([0, 0, 1], {r: 0, g: 0, b: 1}))
        .toBe(true)
    expect(colorEqual({r: 0, g: 0, b: 1}, [0, 0, 1]))
        .toBe(true)

    expect(colorEqual({r: 0, g: 0, b: 0}, [0, 0, 1]))
        .toBe(false)
    expect(colorEqual([0, 0, 1], {r: 0, g: 0, b: 0}))
        .toBe(false)

    expect(colorEqual(undefined, {r: 0, g: 0, b: 0}))
        .toBe(false)
    expect(colorEqual({r: 0, g: 0, b: 0}, undefined))
        .toBe(false)
})

test('coordEqual function', () => {
    expect(coordsEqual([0, 0], [0, 0]))
        .toBe(true)
    expect(coordsEqual([0, 1], [0, 0]))
        .toBe(false)
    expect(coordsEqual([1, 0], [0, 0]))
        .toBe(false)

    expect(coordsEqual([1, 0], [0, 0]))
        .toBe(false)

    expect(coordsEqual(undefined, [0, 0]))
        .toBe(false)
    expect(coordsEqual([0, 0], undefined))
        .toBe(false)
})

test('contiguousPixels', () => {
    let allBlack = [
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
    ]

    let contiguousPx = findContiguousPixels(0, 0, allBlack)
    expect(contiguousPx.length)
        .toBe(16)

    expect(findContiguousPixels(0, 0, [
        [[0, 0, 0], [0, 0, 1], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 1], [0, 0, 1], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
    ]).length)
        .toBe(1)

    expect(findContiguousPixels(1, 1, [
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 1], [0, 0, 1], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 1], [0, 0, 1], [0, 0, 0]],
        [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
    ]).length)
        .toBe(4)

    expect(findContiguousPixels(1, 1, [
        [[0, 0, 1], [0, 0, 1], [0, 0, 1], [0, 0, 1]],
        [[0, 0, 1], [0, 0, 0], [0, 0, 0], [0, 0, 1]],
        [[0, 0, 1], [0, 0, 0], [0, 0, 0], [0, 0, 1]],
        [[0, 0, 1], [0, 0, 1], [0, 0, 1], [0, 0, 1]]
    ]).length)
        .toBe(4)
})