aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/select/OrderingSpecificationTestCase.java
blob: 8c0f74027043bf48cf00420a94457f0ab009b085 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.select;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

/**
 * @author Håkon Humberset
 */
public class OrderingSpecificationTestCase {

    @Test
    public void testExpressions() throws Exception {
        assertSelection("id.order(10,10) < 100", OrderingSpecification.DESCENDING,
                        new OrderingSpecification(OrderingSpecification.DESCENDING, (long)99, (short)10, (short)10));
        assertSelection("id.order(10,10) <= 100", OrderingSpecification.DESCENDING,
                        new OrderingSpecification(OrderingSpecification.DESCENDING, (long)100, (short)10, (short)10));
        assertSelection("id.order(10,10) > 100", OrderingSpecification.DESCENDING, null);
        assertSelection("id.order(10,10) > 100", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)101, (short)10, (short)10));
        assertSelection("id.user==1234 AND id.order(10,10) > 100", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)101, (short)10, (short)10));
        assertSelection("id.order(10,10) >= 100", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)100, (short)10, (short)10));
        assertSelection("id.order(10,10) == 100", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)100, (short)10, (short)10));
        assertSelection("id.order(10,10) = 100", OrderingSpecification.DESCENDING,
                        new OrderingSpecification(OrderingSpecification.DESCENDING, (long)100, (short)10, (short)10));
        assertSelection("id.order(10,10) > 30 AND id.order(10,10) < 100", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)31, (short)10, (short)10));
        assertSelection("id.order(10,10) > 30 AND id.order(10,10) < 100", OrderingSpecification.DESCENDING,
                        new OrderingSpecification(OrderingSpecification.DESCENDING, (long)99, (short)10, (short)10));
        assertSelection("id.order(10,10) > 30 OR id.order(10,10) > 70", OrderingSpecification.ASCENDING,
                        new OrderingSpecification(OrderingSpecification.ASCENDING, (long)31, (short)10, (short)10));
        assertSelection("id.order(10,10) < 30 OR id.order(10,10) < 70", OrderingSpecification.DESCENDING,
                        new OrderingSpecification(OrderingSpecification.DESCENDING, (long)69, (short)10, (short)10));
    }

    public void assertSelection(String selection, int ordering, OrderingSpecification wanted) throws Exception {
        DocumentSelector selector = new DocumentSelector(selection);
        if (wanted != null) {
            assertEquals(wanted, selector.getOrdering(ordering));
        } else {
            assertNull(selector.getOrdering(ordering));
        }
    }

}