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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113 | // Copyright (C) 2016-2017 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 <dhcp/dhcp6.h>
#include <dhcpsrv/cfg_host_operations.h>
#include <dhcpsrv/host.h>
#include <testutils/test_to_element.h>
#include <gtest/gtest.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <algorithm><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <iterator><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace isc;
using namespace isc::dhcp;
using namespace isc::test;
namespace {
/// @brief Checks if specified identifier is present.
///
/// @param cfg Object holding current configuration.
/// @param id Identifier type which presence should be checked.
/// @return true if specified identifier is present.
bool
identifierPresent(const CfgHostOperations& cfg, const Host::IdentifierType& id) {
CfgHostOperations::IdentifierTypes types = cfg.getIdentifierTypes();
return (std::find(types.begin(), types.end(), id) != types.end());
}
/// @brief Checks if specified identifier is at specified position.
///
/// @param cfg Object holding current configuration.
/// @param id Identifier type which presence should be checked.
/// @param pos Position at which the identifier is expected on the list.
/// @return true if specified identifier exists at specified position.
bool
identifierAtPosition(const CfgHostOperations& cfg, const Host::IdentifierType& id,
const size_t pos) {
CfgHostOperations::IdentifierTypes types = cfg.getIdentifierTypes();
if (types.size() > pos) {
CfgHostOperations::IdentifierTypes::const_iterator type = types.begin();
std::advance(type, pos);
return (*type == id);
}
return (false);
}
// This test checks that the list of identifiers is initially
// empty.
TEST(CfgHostOperationsTest, defaults) {<--- syntax error
CfgHostOperations cfg;
EXPECT_TRUE(cfg.getIdentifierTypes().empty());
runToElementTest<CfgHostOperations>("[ ]", cfg);
}
// This test verifies that identifier types can be added into an
// ordered collection and then removed.
TEST(CfgHostOperationsTest, addIdentifier) {
CfgHostOperations cfg;
// Only HW address added.
ASSERT_NO_THROW(cfg.addIdentifierType("hw-address"));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_HWADDR, 0));
EXPECT_FALSE(identifierPresent(cfg, Host::IDENT_DUID));
EXPECT_FALSE(identifierPresent(cfg, Host::IDENT_CIRCUIT_ID));
// HW address and DUID should be present.
ASSERT_NO_THROW(cfg.addIdentifierType("duid"));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_HWADDR, 0));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_DUID, 1));
EXPECT_FALSE(identifierPresent(cfg, Host::IDENT_CIRCUIT_ID));
// All three identifiers should be present now.
ASSERT_NO_THROW(cfg.addIdentifierType("circuit-id"));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_HWADDR, 0));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_DUID, 1));
EXPECT_TRUE(identifierAtPosition(cfg, Host::IDENT_CIRCUIT_ID, 2));
// Check unparse
std::string ids = "[ \"hw-address\", \"duid\", \"circuit-id\" ]";
runToElementTest<CfgHostOperations>(ids, cfg);
// Let's clear and make sure no identifiers are present.
ASSERT_NO_THROW(cfg.clearIdentifierTypes());
EXPECT_TRUE(cfg.getIdentifierTypes().empty());
runToElementTest<CfgHostOperations>("[ ]", cfg);
}
// This test verifies that the default DHCPv4 configuration is created
// as expected.
TEST(CfgHostOperationsTest, createConfig4) {
CfgHostOperationsPtr cfg = CfgHostOperations::createConfig4();
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_HWADDR, 0));
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_DUID, 1));
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_CIRCUIT_ID, 2));
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_CLIENT_ID, 3));
}
// This test verifies that the default DHCPv6 configuration is created
// as expected.
TEST(CfgHostOperationsTest, createConfig6) {
CfgHostOperationsPtr cfg = CfgHostOperations::createConfig6();
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_HWADDR, 0));
EXPECT_TRUE(identifierAtPosition(*cfg, Host::IDENT_DUID, 1));
EXPECT_FALSE(identifierPresent(*cfg, Host::IDENT_CIRCUIT_ID));
}
} // end of anonymous namespace
|