aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/query/test/ParametersTestCase.java
blob: df97c03ae68243884f6a4fad81b61c1bfc67c492 (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
68
69
70
71
72
73
74
75
76
77
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.test;

import com.yahoo.container.jdisc.HttpRequest;
import com.yahoo.search.Query;
import com.yahoo.search.query.profile.QueryProfile;
import com.yahoo.search.query.profile.QueryProfileRegistry;
import com.yahoo.search.query.profile.compiled.CompiledQueryProfile;
import org.junit.jupiter.api.Test;

import static com.yahoo.jdisc.http.HttpRequest.Method;
import static org.junit.jupiter.api.Assertions.assertEquals;

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

    private final double delta = 0.000001;

    @Test
    void testSettingRankProperty() {
        Query query = new Query("?query=test&ranking.properties.dotProduct.X=(a:1,b:2)");
        assertEquals("[(a:1,b:2)]", query.getRanking().getProperties().get("dotProduct.X").toString());
    }

    @Test
    void testSettingRankPropertyAsAlias() {
        Query query = new Query("?query=test&rankproperty.dotProduct.X=(a:1,b:2)");
        assertEquals("[(a:1,b:2)]", query.getRanking().getProperties().get("dotProduct.X").toString());
    }

    @Test
    void testSettingRankFeature() {
        Query query = new Query("?query=test&ranking.features.matches=3");
        assertEquals(3, query.getRanking().getFeatures().getDouble("matches").getAsDouble(), delta);
    }

    @Test
    void testSettingRankFeatureAsAlias() {
        Query query = new Query("?query=test&rankfeature.matches=3");
        assertEquals(3, query.getRanking().getFeatures().getDouble("matches").getAsDouble(), delta);
    }

    @Test
    void testSettingRankPropertyWithQueryProfile() {
        Query query = new Query(HttpRequest.createTestRequest("?query=test&ranking.properties.dotProduct.X=(a:1,b:2)", Method.GET), createProfile());
        assertEquals("[(a:1,b:2)]", query.getRanking().getProperties().get("dotProduct.X").toString());
    }

    @Test
    void testSettingRankPropertyAsAliasWithQueryProfile() {
        Query query = new Query(HttpRequest.createTestRequest("?query=test&rankproperty.dotProduct.X=(a:1,b:2)", Method.GET), createProfile());
        assertEquals("[(a:1,b:2)]", query.getRanking().getProperties().get("dotProduct.X").toString());
    }

    @Test
    void testSettingRankFeatureWithQueryProfile() {
        Query query = new Query(HttpRequest.createTestRequest("?query=test&ranking.features.matches=3", Method.GET), createProfile());
        assertEquals(3, query.getRanking().getFeatures().getDouble("matches").getAsDouble(), delta);
    }

    @Test
    void testSettingRankFeatureAsAliasWithQueryProfile() {
        Query query = new Query(HttpRequest.createTestRequest("?query=test&rankfeature.matches=3", Method.GET), createProfile());
        assertEquals(3, query.getRanking().getFeatures().getDouble("matches").getAsDouble(), delta);
    }

    public CompiledQueryProfile createProfile() {
        QueryProfileRegistry registry = new QueryProfileRegistry();
        QueryProfile profile = new QueryProfile("test");
        profile.set("model.filter", "+year:2001", registry);
        profile.set("model.language", "en", registry);
        return registry.compile().findQueryProfile("test");
    }

}