aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/query/context/test/PropertiesTestCase.java
blob: 8505da0e81464a4f9488038e7f48f1958bd4b25b (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.context.test;

import com.yahoo.search.Query;
import com.yahoo.search.query.context.QueryContext;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;

/**
 * @author bratseth
 */
public class PropertiesTestCase {

    @Test
    void testProperties() {
        Query query = new Query();
        QueryContext h = query.getContext(true);
        h.setProperty("a", "a1");
        h.trace("first message", 2);
        h.setProperty("a", "a2");
        h.setProperty("b", "b1");
        query.clone();
        QueryContext h2 = query.clone().getContext(true);
        h2.setProperty("b", "b2");
        h2.trace("second message", 2);
        h2.setProperty("b", "b3");
        h.setProperty("b", "b4");
        QueryContext h3 = query.clone().getContext(true);
        h3.setProperty("b", "b5");
        h3.setProperty("c", "c1");
        h3.trace("third message", 2);
        h2.setProperty("c", "c2");
        h.trace("fourth message", 2);
        h.setProperty("d", "d1");
        h2.trace("fifth message", 2);
        h2.setProperty("c", "c3");
        h.setProperty("c", "c4");

        assertEquals("a2", h.getProperty("a"));
        assertEquals("b5", h.getProperty("b"));
        assertEquals("c4", h.getProperty("c"));
        assertEquals("d1", h.getProperty("d"));
        assertNull(h.getProperty("e"));
    }

}