aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/src/test/java/com/yahoo/document/predicate/RangeEdgePartitionTest.java
blob: 00a25e4dc49dda6cc61cd03365bac2e1d3a6d054 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.predicate;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

/**
 * @author <a href="mailto:magnarn@yahoo-inc.com">Magnar Nedland</a>
 */
public class RangeEdgePartitionTest {

    @Test
    void requireThatRangeEdgePartitionIsAValue() {
        assertTrue(PredicateValue.class.isAssignableFrom(RangeEdgePartition.class));
    }

    @Test
    void requireThatConstructorsWork() {
        RangeEdgePartition part = new RangeEdgePartition("foo=10", 10, 0, -1);
        assertEquals("foo=10", part.getLabel());
        assertEquals(0, part.getLowerBound());
        assertEquals(-1, part.getUpperBound());
    }

    @Test
    void requireThatCloneIsImplemented() throws CloneNotSupportedException {
        RangeEdgePartition node1 = new RangeEdgePartition("foo=10", 10, 0, 0);
        RangeEdgePartition node2 = node1.clone();
        assertEquals(node1, node2);
        assertNotSame(node1, node2);
    }

    @Test
    void requireThatHashCodeIsImplemented() {
        assertEquals(new RangeEdgePartition("foo=-10", 10, 2, 3).hashCode(),
                new RangeEdgePartition("foo=-10", 10, 2, 3).hashCode());
    }

    @Test
    void requireThatEqualsIsImplemented() {
        RangeEdgePartition lhs = new RangeEdgePartition("foo=10", 10, 5, 10);
        assertEquals(lhs, lhs);
        assertNotEquals(lhs, new Object());

        RangeEdgePartition rhs = new RangeEdgePartition("foo=20", 20, 0, 0);
        assertNotEquals(lhs, rhs);
        rhs = new RangeEdgePartition("foo=10", 10, 5, 10);
        assertEquals(lhs, rhs);
        assertNotEquals(lhs, new RangeEdgePartition("foo=10", 10, 5, 11));
        assertNotEquals(lhs, new RangeEdgePartition("foo=10", 10, 6, 10));
        assertNotEquals(lhs, new RangeEdgePartition("foo=10", 11, 5, 10));
        assertNotEquals(lhs, new RangeEdgePartition("foo=11", 10, 5, 10));
    }

    @Test
    void requireThatKeyIsEscapedInToString() {
        assertEquals("foo=10+[2..3]", new RangeEdgePartition("foo=10", 10, 2, 3).toString());
        assertEquals("'\\foo=10'+[2..3]", new RangeEdgePartition("\foo=10", 10, 2, 3).toString());
        assertEquals("'\\x27foo\\x27=10'+[2..3]", new RangeEdgePartition("'foo'=10", 10, 2, 3).toString());
    }}