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

import com.yahoo.prelude.fastsearch.FastHit;
import com.yahoo.search.Query;
import com.yahoo.search.dispatch.searchcluster.Node;
import com.yahoo.search.result.Coverage;
import com.yahoo.search.result.Hit;
import com.yahoo.search.searchchain.Execution;

import java.util.List;
import java.util.Optional;

class MockInvoker extends SearchInvoker {

    private final Coverage coverage;
    private Query query;
    private List<Hit> hits;
    int hitsRequested;

    protected MockInvoker(int key, Coverage coverage) {
        super(Optional.of(new Node("test", key, "?", 0)));
        this.coverage = coverage;
    }

    protected MockInvoker(int key) {
        this(key, null);
    }

    MockInvoker setHits(List<Hit> hits) {
        this.hits = hits;
        return this;
    }

    @Override
    protected Object sendSearchRequest(Query query, Object context) {
        this.query = query;
        hitsRequested = query.getHits();
        return context;
    }

    @Override
    protected InvokerResult getSearchResult(Execution execution) {
        InvokerResult ret = new InvokerResult(query, 10);
        if (coverage != null) {
            ret.getResult().setCoverage(coverage);
        }
        if (hits != null) {
            for (Hit h : hits) {
                if (h instanceof FastHit) {
                    FastHit fh = (FastHit) h;
                    ret.getLeanHits().add(new LeanHit(fh.getRawGlobalId(), fh.getPartId(), fh.getDistributionKey(), fh.getRelevance().getScore()));
                } else {
                    ret.getResult().hits().add(h);
                }
            }
        }
        return ret;
    }

    @Override
    protected void release() {
    }

    @Override
    public String toString() {
        return "invoker with key " + distributionKey();
    }

}