summaryrefslogtreecommitdiffstats
path: root/persistence/src/tests/proxy/providerproxy_conformancetest.cpp
blob: cadcd3c224a8c72b0db3432a8c9afef9836aebba (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/document/repo/documenttyperepo.h>
#include <vespa/persistence/conformancetest/conformancetest.h>
#include <vespa/persistence/dummyimpl/dummypersistence.h>
#include <vespa/persistence/proxy/providerproxy.h>
#include <vespa/persistence/proxy/providerstub.h>
#include "proxy_factory_wrapper.h"

using namespace storage::spi;
typedef document::DocumentTypeRepo Repo;
typedef ConformanceTest::PersistenceFactory Factory;

namespace {

struct DummyFactory : Factory {
    PersistenceProvider::UP getPersistenceImplementation(const Repo::SP& repo,
                                                         const Repo::DocumenttypesConfig &) override {
        return PersistenceProvider::UP(new dummy::DummyPersistence(repo, 4));
    }

    bool supportsActiveState() const override {
        return true;
    }
};

struct ConformanceFixture : public ConformanceTest {
    ConformanceFixture(Factory::UP f) : ConformanceTest(std::move(f)) { setUp(); }
    ~ConformanceFixture() { tearDown(); }
};

Factory::UP dummyViaProxy(size_t n) {
    if (n == 0) {
        return Factory::UP(new DummyFactory());
    }
    return Factory::UP(new ProxyFactoryWrapper(dummyViaProxy(n - 1)));
}

#define CONVERT_TEST(testFunction, makeFactory)                                             \
namespace ns_ ## testFunction {                                                             \
TEST_F(TEST_STR(testFunction) " " TEST_STR(makeFactory), ConformanceFixture(makeFactory)) { \
    f.testFunction();                                                                       \
}                                                                                           \
} // namespace testFunction

#undef CPPUNIT_TEST
#define CPPUNIT_TEST(testFunction) CONVERT_TEST(testFunction, MAKE_FACTORY)

#define MAKE_FACTORY dummyViaProxy(1)
DEFINE_CONFORMANCE_TESTS();

#undef MAKE_FACTORY
#define MAKE_FACTORY dummyViaProxy(7)
DEFINE_CONFORMANCE_TESTS();

}  // namespace

TEST_MAIN() {
    TEST_RUN_ALL();
}