aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/ObjectVisitorTestCase.java
blob: 3c224d06cc36259c1c32f41634c6fd27a7349345 (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
62
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.expression;

import com.yahoo.vespa.objects.ObjectDumper;
import org.junit.Test;

import java.util.Arrays;

import static org.junit.Assert.assertEquals;

/**
 * @author Simon Thoresen Hult
 */
public class ObjectVisitorTestCase {

    @Test
    public void testObjectDumper() {
        assertDump("test: <NULL>\n", null);
        assertDump("test: 1\n", 1);
        assertDump("test: 'foo'\n", "foo");
        assertDump("test: List {\n" +
                   "    [0]: 'foo'\n" +
                   "    [1]: 69\n" +
                   "    [2]: <NULL>\n" +
                   "}\n",
                   Arrays.asList("foo", 69, null));
        assertDump("test: String[] {\n" +
                   "    [0]: 'foo'\n" +
                   "    [1]: 'bar'\n" +
                   "    [2]: 'baz'\n" +
                   "}\n",
                   new String[] { "foo", "bar", "baz" });
        assertDump("test: IntegerResultNode {\n" +
                   "    classId: 16491\n" +
                   "    value: 5\n" +
                   "}\n",
                   new IntegerResultNode(5));
        assertDump("test: FixedWidthBucketFunctionNode {\n" +
                   "    classId: 16461\n" +
                   "    result: <NULL>\n" +
                   "    args: List {\n" +
                   "        [0]: AttributeNode {\n" +
                   "            classId: 16439\n" +
                   "            result: <NULL>\n" +
                   "            attribute: 'foo'\n" +
                   "        }\n" +
                   "    }\n" +
                   "    width: IntegerResultNode {\n" +
                   "        classId: 16491\n" +
                   "        value: 5\n" +
                   "    }\n" +
                   "}\n",
                   new FixedWidthBucketFunctionNode(new IntegerResultNode(5), new AttributeNode("foo")));
    }

    private void assertDump(String expected, Object obj) {
        ObjectDumper dump = new ObjectDumper();
        dump.visit("test", obj);
        assertEquals(expected, dump.toString());
    }

}