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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (C) 2021 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>

#include <cc/data.h>
#include <d2srv/d2_stats.h>
#include <d2srv/d2_tsig_key.h>
#include <stats/stats_mgr.h>

#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include <iostream><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sstream><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc::d2;
using namespace isc::data;
using namespace isc::dns;
using namespace isc::stats;
using namespace std;

namespace {

/// @brief Check statistics names.
TEST(D2StatsTest, names) {
    ASSERT_EQ(3, D2Stats::ncr.size());
    ASSERT_EQ(6, D2Stats::update.size());
    ASSERT_EQ(4, D2Stats::key.size());
}

/// @brief Fixture class for TSIG key / DNS update statistics.
class D2TsigKeyTest : public ::testing::Test {
public:
    /// @brief Constructor.
    D2TsigKeyTest() {
        StatsMgr::instance();
        StatsMgr::instance().removeAll();
        StatsMgr::instance().setMaxSampleCountDefault(0);
    }

    /// @brief Destructor.
    ~D2TsigKeyTest() {
        StatsMgr::instance().removeAll();
        StatsMgr::instance().setMaxSampleCountDefault(0);
    }
};

/// @brief Check TSIG key life.
TEST_F(D2TsigKeyTest, key) {<--- syntax error
    // Get the statistics manager.
    StatsMgr& stat_mgr = StatsMgr::instance();
    ASSERT_EQ(0, stat_mgr.count());

    // Create a key.
    const string& key_spec = "foo.bar.::test";
    D2TsigKeyPtr key(new D2TsigKey(key_spec));
    EXPECT_EQ(4, stat_mgr.count());

    // Create a context.
    TSIGContextPtr ctx;
    ASSERT_NO_THROW(ctx = key->createContext());
    ASSERT_TRUE(ctx);
    EXPECT_EQ(TSIGContext::INIT, ctx->getState());

    // Get the 'sent' statistics.
    const string& stat_name = "key[foo.bar.].update-sent";
    EXPECT_EQ(1, stat_mgr.getSize(stat_name));
    ObservationPtr stat = stat_mgr.getObservation(stat_name);
    ASSERT_TRUE(stat);
    IntegerSample sample;
    ASSERT_NO_THROW(sample = stat->getInteger());
    EXPECT_EQ(0, sample.first);

    // Increment the 'sent' statistics.
    stat_mgr.addValue(stat_name, static_cast<int64_t>(1));
    stat = stat_mgr.getObservation(stat_name);
    ASSERT_TRUE(stat);
    ASSERT_NO_THROW(sample = stat->getInteger());
    EXPECT_EQ(1, sample.first);

    // Reset the key statistics.
    ASSERT_NO_THROW(key->resetStats());
    stat = stat_mgr.getObservation(stat_name);
    ASSERT_TRUE(stat);
    ASSERT_NO_THROW(sample = stat->getInteger());
    EXPECT_EQ(0, sample.first);

    // Destroy the key: its stats are removed.
    key.reset();
    EXPECT_EQ(0, stat_mgr.count());
    stat = stat_mgr.getObservation(stat_name);
    EXPECT_FALSE(stat);
}

} // end of anonymous namespace