aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/http_connection_pool/http_connection_pool_test.cpp
blob: 7ed011866e1d1116a478d2bf1486800fa390587d (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/net/crypto_engine.h>

using namespace vbench;
using vespalib::CountDownLatch;

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

TEST_MT_F("http connection pool", 2, ServerSocket()) {
    if (thread_id == 0) {
        for (; f1.accept(*null_crypto).get() != 0; ) {}
    } else {
        Timer timer;
        HttpConnection::UP conn;
        HttpConnectionPool pool(null_crypto, timer);
        conn = pool.getConnection(ServerSpec("localhost", f1.port()));
        EXPECT_TRUE(conn.get() != 0);
        pool.putConnection(std::move(conn));
        EXPECT_TRUE(conn.get() == 0);
        conn = pool.getConnection(ServerSpec("localhost", f1.port()));
        EXPECT_TRUE(conn.get() != 0);
        conn->stream().obtain(); // trigger eof
        pool.putConnection(std::move(conn));
        EXPECT_TRUE(conn.get() == 0);
        conn = pool.getConnection(ServerSpec("localhost", f1.port()));
        EXPECT_TRUE(conn.get() != 0);
        f1.close();
    }
}

TEST_MT_FFFF("stress http connection pool", 256, ServerSocket(), Timer(), HttpConnectionPool(null_crypto, f2),
             CountDownLatch(num_threads-2))
{
    if (thread_id == 0) {
        for (; f1.accept(*null_crypto).get() != 0; ) {}
    } else {
        while (f2.sample() < 5.0) {
            HttpConnection::UP conn = f3.getConnection(ServerSpec("localhost", f1.port()));
            EXPECT_TRUE(conn.get() != 0);
            if (thread_id > (num_threads / 2)) {
                conn->stream().obtain(); // trigger eof
            }
            f3.putConnection(std::move(conn));
            EXPECT_TRUE(conn.get() == 0);
        }
        if (thread_id == 1) {
            f4.await();
            f1.close();
        } else {
            f4.countDown();
        }
    }
}

TEST_MAIN() { TEST_RUN_ALL(); }