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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
// Copyright (C) 2023 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 <asiolink/io_address.h>
#include <dhcpsrv/flq_allocation_state.h>
#include <dhcpsrv/lease.h>
#include <dhcpsrv/pool.h>
#include <testutils/multi_threading_utils.h>
#include <boost/make_shared.hpp><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc;
using namespace isc::asiolink;
using namespace isc::dhcp;
using namespace isc::test;

namespace {

// Test creating a new free lease queue allocation state for an IPv4
// address pool.
TEST(PoolFreeLeaseAllocationState, createV4) {
    auto pool = boost::make_shared<Pool4>(IOAddress("192.0.2.1"), IOAddress("192.0.2.10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_TRUE(state->exhausted());
}

// Test adding and deleting free IPv4 leases.
TEST(PoolFreeLeaseAllocationState, addDeleteFreeLeaseV4) {<--- syntax error
    auto pool = boost::make_shared<Pool4>(IOAddress("192.0.2.1"), IOAddress("192.0.2.10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    // A new state lacks free leases until we add them.
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the first free lease. The pool should now have one free lease
    // that is always offered.
    state->addFreeLease(IOAddress("192.0.2.1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The same lease is always offered.
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());

    // Add another free lease. We should now have two free leases.
    state->addFreeLease(IOAddress("192.0.2.3"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    // The new free lease is appended at the end of the queue. Thus, our
    // first lease should be offered now.
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());
    // Now, the second lease should be offered.
    EXPECT_EQ("192.0.2.3", state->offerFreeLease().toText());

    // Try to delete a non-existing lease. It should not affect the
    // existing leases.
    state->deleteFreeLease(IOAddress("192.0.2.2"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());
    EXPECT_EQ("192.0.2.3", state->offerFreeLease().toText());

    // Delete one of the free leases.
    state->deleteFreeLease(IOAddress("192.0.2.1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The sole lease should be now offered.
    EXPECT_EQ("192.0.2.3", state->offerFreeLease().toText());
    EXPECT_EQ("192.0.2.3", state->offerFreeLease().toText());

    // Delete the remaining lease. The pool is now exhausted.
    state->deleteFreeLease(IOAddress("192.0.2.3"));
    EXPECT_TRUE(state->exhausted());
    EXPECT_TRUE(state->offerFreeLease().isV4Zero());
}

// Test that duplicate leases are not added to the queue.
TEST(PoolFreeLeaseAllocationState, addFreeLeaseV4SeveralTimes) {
    auto pool = boost::make_shared<Pool4>(IOAddress("192.0.2.1"), IOAddress("192.0.2.10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the free lease for the first time.
    state->addFreeLease(IOAddress("192.0.2.1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Add the same lease the second time. The second lease instance should
    // not be inserted.
    state->addFreeLease(IOAddress("192.0.2.1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("192.0.2.1", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Delete the sole lease and ensure there are no more leases.
    state->deleteFreeLease(IOAddress("192.0.2.1"));
    EXPECT_TRUE(state->exhausted());
    EXPECT_EQ(0, state->getFreeLeaseCount());
}


// Test creating a new free lease queue allocation state for an IPv6
// address pool.
TEST(PoolFreeLeaseAllocationState, createNA) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_NA, IOAddress("2001:db8:1::"),
                                          IOAddress("2001:db8:1::10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_TRUE(state->exhausted());
}

// Test adding and deleting free IPv6 address leases.
TEST(PoolFreeLeaseAllocationState, addDeleteFreeLeaseNA) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_NA, IOAddress("2001:db8:1::"),
                                          IOAddress("2001:db8:1::10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    // A new state lacks free leases until we add them.
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the first free lease. The pool should now have one free lease
    // that is always offered.
    state->addFreeLease(IOAddress("2001:db8:1::1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The same lease is always offered.
    EXPECT_EQ("2001:db8:1::1", state->offerFreeLease().toText());
    EXPECT_EQ("2001:db8:1::1", state->offerFreeLease().toText());

    // Add another free lease. We should now have two free leases.
    state->addFreeLease(IOAddress("2001:db8:1::3"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    // The new free lease is appended at the end of the queue. Thus, our
    // first lease should be offered now.
    EXPECT_EQ("2001:db8:1::1", state->offerFreeLease().toText());
    // Now, the second lease should be offered.
    EXPECT_EQ("2001:db8:1::3", state->offerFreeLease().toText());

    // Try to delete a non-existing lease. It should not affect the
    // existing leases.
    state->deleteFreeLease(IOAddress("2001:db8:1::2"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    EXPECT_EQ("2001:db8:1::1", state->offerFreeLease().toText());
    EXPECT_EQ("2001:db8:1::3", state->offerFreeLease().toText());

    // Delete one of the free leases.
    state->deleteFreeLease(IOAddress("2001:db8:1::1"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The sole lease should be now offered.
    EXPECT_EQ("2001:db8:1::3", state->offerFreeLease().toText());
    EXPECT_EQ("2001:db8:1::3", state->offerFreeLease().toText());

    // Delete the remaining lease. The pool is now exhausted.
    state->deleteFreeLease(IOAddress("2001:db8:1::3"));
    EXPECT_TRUE(state->exhausted());
    EXPECT_TRUE(state->offerFreeLease().isV6Zero());
}

// Test that duplicate leases are not added to the queue.
TEST(PoolFreeLeaseAllocationState, addFreeLeaseNASeveralTimes) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_NA, IOAddress("2001:db8:1::"),
                                          IOAddress("2001:db8:1::10"));
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the free lease for the first time.
    state->addFreeLease(IOAddress("2001:db8:1::5"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("2001:db8:1::5", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Add the same lease the second time. The second lease instance should
    // not be inserted.
    state->addFreeLease(IOAddress("2001:db8:1::5"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("2001:db8:1::5", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Delete the sole lease and ensure there are no more leases.
    state->deleteFreeLease(IOAddress("2001:db8:1::5"));
    EXPECT_TRUE(state->exhausted());
}

// Test creating a new free lease queue allocation state for an IPv6
// prefix pool.
TEST(PoolFreeLeaseAllocationState, createPD) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_PD, IOAddress("3000::"), 112, 120);
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_TRUE(state->exhausted());
}

// Test creating a new free lease queue allocation state for a
// delegated prefix pool.
TEST(PoolFreeLeaseAllocationState, addDeleteFreeLeasePD) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_PD, IOAddress("3000::"), 112, 120);
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    // A new state lacks free leases until we add them.
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the first free lease. The pool should now have one free lease
    // that is always offered.
    state->addFreeLease(IOAddress("3000::5600"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The same lease is always offered.
    EXPECT_EQ("3000::5600", state->offerFreeLease().toText());

    // Add another free lease. We should now have two free leases.
    state->addFreeLease(IOAddress("3000::7800"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    // The new free lease is appended at the end of the queue. Thus, our
    // first lease should be offered now.
    EXPECT_EQ("3000::5600", state->offerFreeLease().toText());
    // Now, the second lease should be offered.
    EXPECT_EQ("3000::7800", state->offerFreeLease().toText());

    // Try to delete a non-existing lease. It should not affect the
    // existing leases.
    state->deleteFreeLease(IOAddress("3000::6400"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(2, state->getFreeLeaseCount());
    EXPECT_EQ("3000::5600", state->offerFreeLease().toText());
    EXPECT_EQ("3000::7800", state->offerFreeLease().toText());

    // Delete one of the free leases.
    state->deleteFreeLease(IOAddress("3000::5600"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ(1, state->getFreeLeaseCount());
    // The sole lease should be now offered.
    EXPECT_EQ("3000::7800", state->offerFreeLease().toText());
    EXPECT_EQ("3000::7800", state->offerFreeLease().toText());

    // Delete the remaining lease. The pool is now exhausted.
    state->deleteFreeLease(IOAddress("3000::7800"));
    EXPECT_TRUE(state->exhausted());
    EXPECT_TRUE(state->offerFreeLease().isV6Zero());
}

// Test that duplicate leases are not added to the queue.
TEST(PoolFreeLeaseAllocationState, addFreeLeasPDSeveralTimes) {
    auto pool = boost::make_shared<Pool6>(Lease::TYPE_PD, IOAddress("3000::"), 112, 120);
    auto state = PoolFreeLeaseQueueAllocationState::create(pool);
    ASSERT_TRUE(state);
    EXPECT_EQ(0, state->getFreeLeaseCount());

    // Add the free lease for the first time.
    state->addFreeLease(IOAddress("3000::5600"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("3000::5600", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Add the same lease the second time. The second lease instance should
    // not be inserted.
    state->addFreeLease(IOAddress("3000::5600"));
    EXPECT_FALSE(state->exhausted());
    EXPECT_EQ("3000::5600", state->offerFreeLease().toText());
    EXPECT_EQ(1, state->getFreeLeaseCount());

    // Delete the sole lease and ensure there are no more leases.
    state->deleteFreeLease(IOAddress("3000::5600"));
    EXPECT_TRUE(state->exhausted());
}


} // end of anonymous namespace