summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/communication/IOThreadTest.java
blob: 60a737c490bc3f078c7e5e15a46cf87b76124dba (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core.communication;

import com.yahoo.vespa.http.client.Result;
import com.yahoo.vespa.http.client.V3HttpAPITest;
import com.yahoo.vespa.http.client.core.Document;
import com.yahoo.vespa.http.client.core.EndpointResult;

import org.junit.Test;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.*;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

public class IOThreadTest {
    final EndpointResultQueue endpointResultQueue = mock(EndpointResultQueue.class);
    final ApacheGatewayConnection apacheGatewayConnection = mock(ApacheGatewayConnection.class);
    final String exceptionMessage = "SOME EXCEPTION FOO";
    CountDownLatch latch = new CountDownLatch(1);
    String docId1 = V3HttpAPITest.documents.get(0).getDocumentId();
    Document doc1 = new Document(V3HttpAPITest.documents.get(0).getDocumentId(),
            V3HttpAPITest.documents.get(0).getContents(), null /* context */);
    String docId2 = V3HttpAPITest.documents.get(1).getDocumentId();
    Document doc2 = new Document(V3HttpAPITest.documents.get(1).getDocumentId(),
            V3HttpAPITest.documents.get(1).getContents(), null /* context */);
    DocumentQueue documentQueue = new DocumentQueue(4);

    /**
     * Set up mock so that it can handle both failDocument() and resultReceived().
     * @param expectedDocIdFail on failure, this has to be the doc id, or the mock will fail.
     * @param expectedDocIdOk on ok, this has to be the doc id, or the mock will fail.
     * @param isTransient checked on failure, if different, the mock will fail.
     * @param expectedException checked on failure, if exception toString is different, the mock will fail.
     */
    void setupEndpointResultQueueMock(String expectedDocIdFail, String expectedDocIdOk,boolean isTransient, String expectedException) {

        doAnswer(invocation -> {
            EndpointResult endpointResult = (EndpointResult) invocation.getArguments()[0];
            assertThat(endpointResult.getOperationId(), is(expectedDocIdFail));
            assertThat(endpointResult.getDetail().getException().toString(),
                    containsString(expectedException));
            assertThat(endpointResult.getDetail().getResultType(), is(
                    isTransient ? Result.ResultType.TRANSITIVE_ERROR : Result.ResultType.FATAL_ERROR));

            latch.countDown();
            return null;
        }).when(endpointResultQueue).failOperation(anyObject(), eq(0));

        doAnswer(invocation -> {
            EndpointResult endpointResult = (EndpointResult) invocation.getArguments()[0];
            assertThat(endpointResult.getOperationId(), is(expectedDocIdOk));
            assertThat(endpointResult.getDetail().getResultType(), is(Result.ResultType.OPERATION_EXECUTED));
            latch.countDown();
            return null;
        }).when(endpointResultQueue).resultReceived(anyObject(), eq(0));
    }

    @Test
    public void singleDocumentSuccess() throws Exception {
        when(apacheGatewayConnection.connect()).thenReturn(true);
        InputStream serverResponse = new ByteArrayInputStream(
                (docId1 + " OK Doc{20}fed").getBytes(StandardCharsets.UTF_8));
        when(apacheGatewayConnection.writeOperations(anyObject())).thenReturn(serverResponse);
        setupEndpointResultQueueMock( "nope", docId1, true, exceptionMessage);
        try (IOThread ioThread = new IOThread(
                endpointResultQueue, apacheGatewayConnection, 0, 0, 10000, 10000L, documentQueue, 0)) {
            ioThread.post(doc1);
            assert (latch.await(120, TimeUnit.SECONDS));
        }
    }

    @Test
    public void requireThatSingleDocumentWriteErrorIsHandledProperly() throws Exception {
        when(apacheGatewayConnection.connect()).thenReturn(true);
        when(apacheGatewayConnection.writeOperations(anyObject())).thenThrow(new IOException(exceptionMessage));
        setupEndpointResultQueueMock(doc1.getOperationId(), "nope", true, exceptionMessage);
        try (IOThread ioThread = new IOThread(
                endpointResultQueue, apacheGatewayConnection, 0, 0, 10000, 10000L, documentQueue, 0)) {
            ioThread.post(doc1);
            assert (latch.await(120, TimeUnit.SECONDS));
        }
    }

    @Test
    public void requireThatTwoDocumentsFirstWriteErrorSecondOkIsHandledProperly() throws Exception {
        when(apacheGatewayConnection.connect()).thenReturn(true);
        InputStream serverResponse = new ByteArrayInputStream(
                (docId2 + " OK Doc{20}fed").getBytes(StandardCharsets.UTF_8));
        when(apacheGatewayConnection.writeOperations(anyObject()))
                .thenThrow(new IOException(exceptionMessage))
                .thenReturn(serverResponse);
        latch = new CountDownLatch(2);
        setupEndpointResultQueueMock(doc1.getOperationId(), doc2.getDocumentId(), true, exceptionMessage);

        try (IOThread ioThread = new IOThread(
                endpointResultQueue, apacheGatewayConnection, 0, 0, 10000, 10000L, documentQueue, 0)) {
            ioThread.post(doc1);
            ioThread.post(doc2);
            assert (latch.await(120, TimeUnit.SECONDS));
        }
    }

    @Test
    public void testQueueTimeOutNoNoConnectionToServer() throws Exception {
        when(apacheGatewayConnection.connect()).thenReturn(false);
        InputStream serverResponse = new ByteArrayInputStream(
                ("").getBytes(StandardCharsets.UTF_8));
        when(apacheGatewayConnection.writeOperations(anyObject()))
                .thenReturn(serverResponse);
        setupEndpointResultQueueMock(doc1.getOperationId(), "nope", true,
                "java.lang.Exception: Not sending document operation, timed out in queue after");
        try (IOThread ioThread = new IOThread(
                endpointResultQueue, apacheGatewayConnection, 0, 0, 10, 10L, documentQueue, 0)) {
            ioThread.post(doc1);
            assert (latch.await(120, TimeUnit.SECONDS));
        }
    }
}