aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/MockLogRetriever.java
blob: 4a521e3b8a20f63d9ffaf54165333fee92bd8ec8 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server;

import com.yahoo.container.jdisc.HttpResponse;
import com.yahoo.vespa.config.server.http.LogRetriever;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.time.Instant;
import java.util.Optional;

/**
 * @author olaa
 */
public class MockLogRetriever extends LogRetriever {

    @Override
    public HttpResponse getLogs(String logServerUri, Optional<Instant>deployTime ) {
        return new HttpResponse(200) {
            @Override
            public void render(OutputStream outputStream) throws IOException {
                outputStream.write("log line".getBytes(StandardCharsets.UTF_8));
            }

        };
    }

}