aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/app_dumpurl/app_dumpurl_test.cpp
blob: 8fecff0531dd81df9782026849b06a9fca2db2fb (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/testapp.h>
#include <vbench/test/all.h>
#include <vespa/vespalib/process/process.h>
#include <vespa/vespalib/net/crypto_engine.h>

using namespace vbench;
using vespalib::Process;

using InputReader = vespalib::InputReader;
using OutputWriter = vespalib::OutputWriter;
using vespalib::SimpleBuffer;

auto null_crypto = std::make_shared<vespalib::NullCryptoEngine>();

bool endsWith(const Memory &mem, const string &str) {
    return (mem.size < str.size()) ? false
        : (strncmp(mem.data + mem.size - str.size(), str.data(), str.size()) == 0);
}

void readUntil(Input &input, SimpleBuffer &buffer, const string &end) {
    InputReader in(input);
    while (!endsWith(buffer.get(), end)) {
        char c = in.read();
        if (in.failed()) {
            return;
        }
        buffer.reserve(1).data[0] = c;
        buffer.commit(1);
    }
}

TEST("dumpurl usage") {
    vespalib::string out;
    EXPECT_FALSE(Process::run("../../apps/dumpurl/vbench_dumpurl_app", out));
    fprintf(stderr, "%s\n", out.c_str());
}

TEST_MT_F("run dumpurl", 2, ServerSocket()) {
    if (thread_id == 0) {
        Stream::UP stream = f1.accept(*null_crypto);
        SimpleBuffer ignore;
        readUntil(*stream, ignore, "\r\n\r\n");
        OutputWriter out(*stream, 256);
        out.write("HTTP/1.1 200\r\n");
        out.write("content-length: 4\r\n");
        out.write("\r\n");
        out.write("data");
    } else {
        vespalib::string out;
        EXPECT_TRUE(Process::run(strfmt("../../apps/dumpurl/vbench_dumpurl_app localhost %d /foo",
                                        f1.port()).c_str(), out));
        fprintf(stderr, "%s\n", out.c_str());
    }
}

TEST_MAIN() { TEST_RUN_ALL(); }