aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/federation/http/QueryParametersTestCase.java
blob: 19750cf84cc082d07b45228dfc47224bb5edbcad (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
63
64
65
66
67
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.federation.http;

import com.yahoo.component.ComponentId;
import com.yahoo.search.Query;
import com.yahoo.search.Result;
import com.yahoo.search.searchchain.Execution;
import com.yahoo.statistics.Statistics;
import com.yahoo.vespa.defaults.Defaults;
import org.junit.Test;

import java.util.Collections;
import java.util.Map;

import static org.junit.Assert.assertEquals;

/**
 * Tests that source and backend specific parameters from the query are added correctly to the backend requests
 *
 * @author bratseth
 */
public class QueryParametersTestCase {

    @Test
    public void testQueryParameters() {
        Query query=new Query();
        query.properties().set("a","a-value");
        query.properties().set("b.c","b.c-value");
        query.properties().set("source.otherSource.d","d-value");
        query.properties().set("source.testSource.e","e-value");
        query.properties().set("source.testSource.f.g","f.g-value");
        query.properties().set("provider.testProvider.h","h-value");
        query.properties().set("provider.testProvider.i.j","i.j-value");

        query.properties().set("sourceName","testSource"); // Done by federation searcher
        query.properties().set("providerName","testProvider"); // Done by federation searcher

        TestHttpProvider searcher=new TestHttpProvider();
        Map<String,String> parameters=searcher.getQueryMap(query);
        searcher.deconstruct();

        assertEquals(4,parameters.size()); // the appropriate 4 of the above
        assertEquals(parameters.get("e"),"e-value");
        assertEquals(parameters.get("f.g"),"f.g-value");
        assertEquals(parameters.get("h"),"h-value");
        assertEquals(parameters.get("i.j"),"i.j-value");
    }

    public static class TestHttpProvider extends HTTPProviderSearcher {

        public TestHttpProvider() {
            super(new ComponentId("test"), Collections.singletonList(new Connection("host", Defaults.getDefaults().vespaWebServicePort())), "path", Statistics.nullImplementation);
        }

        @Override
        public Map<String, String> getCacheKey(Query q) {
            return Collections.singletonMap("nocaching", String.valueOf(Math.random()));
        }

        @Override
        protected void fill(Result result, String summaryClass, Execution execution, Connection connection) {
        }

    }

}