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
|
// Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <exceptions/exceptions.h>
#include <user.h>
#include <boost/function.hpp>
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <gtest/gtest.h>
using namespace std;
using namespace user_chk;
namespace {
/// @brief Tests User construction variants.
/// Note, since all constructors accept or rely on UserId, invalid id
/// variants are tested under UserId not here.
TEST(UserTest, construction) {
std::string test_address("01FF02AC030B0709");
// Create a user id.
UserIdPtr id;
ASSERT_NO_THROW(id.reset(new UserId(UserId::HW_ADDRESS, test_address)));
// Verify construction from a UserId.
UserPtr user;
ASSERT_NO_THROW(user.reset(new User(*id)));
// Verify construction from an id type and an address vector.
ASSERT_NO_THROW(user.reset(new User(UserId::HW_ADDRESS, id->getId())));
ASSERT_NO_THROW(user.reset(new User(UserId::DUID, id->getId())));
// Verify construction from an id type and an address string.
ASSERT_NO_THROW(user.reset(new User(UserId::HW_ADDRESS, test_address)));
ASSERT_NO_THROW(user.reset(new User(UserId::DUID, test_address)));
}
/// @brief Tests property map fundamentals.
TEST(UserTest, properties) {
// Create a user.
UserPtr user;
ASSERT_NO_THROW(user.reset(new User(UserId::DUID, "01020304050607")));
// Verify that we can add and retrieve a property.
std::string value = "";
EXPECT_NO_THROW(user->setProperty("one","1"));
EXPECT_NO_THROW(value = user->getProperty("one"));
EXPECT_EQ("1", value);
// Verify that we can update and then retrieve the property.
EXPECT_NO_THROW(user->setProperty("one","1.0"));
EXPECT_NO_THROW(value = user->getProperty("one"));
EXPECT_EQ("1.0", value);
// Verify that we can remove and then NOT find the property.
EXPECT_NO_THROW(user->delProperty("one"));
EXPECT_NO_THROW(value = user->getProperty("one"));
EXPECT_TRUE(value.empty());
// Verify that a blank property name is NOT permitted.
EXPECT_THROW(user->setProperty("", "blah"), isc::BadValue);
// Verify that a blank property value IS permitted.
EXPECT_NO_THROW(user->setProperty("one", ""));
EXPECT_NO_THROW(value = user->getProperty("one"));
EXPECT_TRUE(value.empty());
PropertyMap map;
map["one"]="1.0";
map["two"]="2.0";
ASSERT_NO_THROW(user->setProperties(map));
EXPECT_NO_THROW(value = user->getProperty("one"));
EXPECT_EQ("1.0", value);
EXPECT_NO_THROW(value = user->getProperty("two"));
EXPECT_EQ("2.0", value);
const PropertyMap& map2 = user->getProperties();
EXPECT_TRUE(map2 == map);
}
} // end of anonymous namespace
|