summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/test/java/ExampleUsageFeedClientTest.java
blob: 238f6a91e53aac646344926a8ffe8028aa469846 (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
78
79
80
81
82
83
84
85
86
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import com.yahoo.vespa.http.client.FeedClient;
import com.yahoo.vespa.http.client.FeedClientFactory;
import com.yahoo.vespa.http.client.Result;
import com.yahoo.vespa.http.client.Server;
import com.yahoo.vespa.http.client.config.Cluster;
import com.yahoo.vespa.http.client.config.Endpoint;
import com.yahoo.vespa.http.client.config.FeedParams;
import com.yahoo.vespa.http.client.config.SessionParams;
import com.yahoo.vespa.http.client.handlers.V3MockParsingRequestHandler;
import org.junit.Test;

import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;

/**
 * Unit test that test documentation code.
 * @author dybis
 */
public class ExampleUsageFeedClientTest {

    @Test
    public void testExampleCode() {
        Server serverA =
                new Server(new V3MockParsingRequestHandler(200, V3MockParsingRequestHandler.Scenario.ALL_OK), 0);
        Server serverB =
                new Server(new V3MockParsingRequestHandler(200, V3MockParsingRequestHandler.Scenario.ALL_OK), 0);


        exampleCode("localhost", serverA.getPort(), "localhost", serverB.getPort());
        serverA.close();
        serverB.close();
    }


    private static CharSequence generateDocument(String docId) {
        // Just a dummy example of an update document operation.
        return "{\"update\": \""+ docId + "\","
                + " \"fields\": { \"actualMapStringToArrayOfInt\": {"
                + " \"assign\": ["
                + "{ \"key\": \"fooKey\", \"value\": [ 2,1, 3] }"
                + "]}}}";
    }

    // Example usage of FeedClient
    public static void exampleCode(String hostNameA, int portServerA, String hostNameB, int portServerB) {
        final boolean useSsl = false;
        final SessionParams sessionParams = new SessionParams.Builder()
                .addCluster(new Cluster.Builder().addEndpoint(Endpoint.create(hostNameA, portServerA, useSsl)).build())
                .addCluster(new Cluster.Builder().addEndpoint(Endpoint.create(hostNameB, portServerB, useSsl)).build())
                .setFeedParams(new FeedParams.Builder()
                        .setDataFormat(FeedParams.DataFormat.JSON_UTF8)
                        .build())
                .build();

        final AtomicInteger resultsReceived = new AtomicInteger(0);
        final AtomicInteger errorsReceived = new AtomicInteger(0);

        FeedClient feedClient = FeedClientFactory.create(sessionParams, new FeedClient.ResultCallback() {
            @Override
            public void onCompletion(String docId, Result documentResult) {
                resultsReceived.incrementAndGet();
                if (! documentResult.getContext().equals(docId)) {
                    System.err.println("Context does not work as expected.");
                    errorsReceived.incrementAndGet();
                }
                if (!documentResult.isSuccess()) {
                    System.err.println("Problems with docID " + docId + ":" + documentResult.toString());
                    errorsReceived.incrementAndGet();
                }
            }
        });
        int sentCounter = 0;
        final List<String> docIds = Arrays.asList("1", "2", "3", "4");
        for (final String docId : docIds) {
            CharSequence docData = generateDocument(docId);
            feedClient.stream(docId, docData, docId);
            sentCounter++;
            System.out.println("Sent " + sentCounter + " received results from " + resultsReceived.get());
        }
        feedClient.close();
        System.out.println("Finished, got " + errorsReceived.get()
                + " errors from " + resultsReceived.get() + " results, sent " + sentCounter + " documents.");
    }
}