summaryrefslogtreecommitdiffstats
path: root/storageserver/src/tests/testhelper.h
blob: 9db4a93041a363a7cbdf0e3e7c7fa5eca2bc996c (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include <vespa/vdstestlib/cppunit/dirconfig.h>
#include <vespa/vdstestlib/cppunit/macros.h>


#include <fstream>
#include <vespa/messagebus/testlib/slobrok.h>
#include <sstream>

#define ASSERT_REPLY_COUNT(count, dummylink) \
    { \
        std::ostringstream msgost; \
        if ((dummylink).getNumReplies() != count) { \
            for (uint32_t ijx=0; ijx<(dummylink).getNumReplies(); ++ijx) { \
                msgost << (dummylink).getReply(ijx)->toString(true) << "\n"; \
            } \
        } \
        CPPUNIT_ASSERT_EQUAL_MSG(msgost.str(), size_t(count), \
                                 (dummylink).getNumReplies()); \
    }
#define ASSERT_COMMAND_COUNT(count, dummylink) \
    { \
        std::ostringstream msgost; \
        if ((dummylink).getNumCommands() != count) { \
            for (uint32_t ijx=0; ijx<(dummylink).getNumCommands(); ++ijx) { \
                msgost << (dummylink).getCommand(ijx)->toString(true) << "\n"; \
            } \
        } \
        CPPUNIT_ASSERT_EQUAL_MSG(msgost.str(), size_t(count), \
                                 (dummylink).getNumCommands()); \
    }

namespace storage {

void addFileConfig(vdstestlib::DirConfig& dc,
                   const std::string& configDefName,
                   const std::string& fileName);


void addStorageDistributionConfig(vdstestlib::DirConfig& dc);

vdstestlib::DirConfig getStandardConfig(bool storagenode);

void addSlobrokConfig(vdstestlib::DirConfig& dc,
                      const mbus::Slobrok& slobrok);

// Class used to print start and end of test. Enable debug when you want to see
// which test creates what output or where we get stuck
struct TestName {
    std::string name;
    TestName(const std::string& n);
    ~TestName();
};

} // storage