mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-05 16:35:23 +00:00
606 lines
20 KiB
C++
606 lines
20 KiB
C++
// Copyright (C) 2012-2018 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/lease_mgr_factory.h>
|
|
#include <dhcpsrv/mysql_lease_mgr.h>
|
|
#include <dhcpsrv/tests/test_utils.h>
|
|
#include <dhcpsrv/tests/generic_lease_mgr_unittest.h>
|
|
#include <dhcpsrv/testutils/mysql_schema.h>
|
|
#include <exceptions/exceptions.h>
|
|
#include <mysql/mysql_connection.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
using namespace isc;
|
|
using namespace isc::asiolink;
|
|
using namespace isc::db;
|
|
using namespace isc::dhcp;
|
|
using namespace isc::dhcp::test;
|
|
using namespace std;
|
|
|
|
namespace {
|
|
|
|
|
|
/// @brief Test fixture class for testing MySQL Lease Manager
|
|
///
|
|
/// Opens the database prior to each test and closes it afterwards.
|
|
/// All pending transactions are deleted prior to closure.
|
|
|
|
class MySqlLeaseMgrTest : public GenericLeaseMgrTest {
|
|
public:
|
|
/// @brief Clears the database and opens connection to it.
|
|
void initializeTest() {
|
|
// Ensure schema is the correct one.
|
|
destroyMySQLSchema();
|
|
createMySQLSchema();
|
|
|
|
// Connect to the database
|
|
try {
|
|
LeaseMgrFactory::create(validMySQLConnectionString());
|
|
} catch (...) {
|
|
std::cerr << "*** ERROR: unable to open database. The test\n"
|
|
"*** environment is broken and must be fixed before\n"
|
|
"*** the MySQL tests will run correctly.\n"
|
|
"*** The reason for the problem is described in the\n"
|
|
"*** accompanying exception output.\n";
|
|
throw;
|
|
}
|
|
|
|
lmptr_ = &(LeaseMgrFactory::instance());
|
|
}
|
|
|
|
/// @brief Destroys the LM and the schema.
|
|
void destroyTest() {
|
|
try {
|
|
lmptr_->rollback();
|
|
} catch (...) {
|
|
// Rollback may fail if backend is in read only mode. That's ok.
|
|
}
|
|
LeaseMgrFactory::destroy();
|
|
destroyMySQLSchema();
|
|
}
|
|
|
|
/// @brief Constructor
|
|
///
|
|
/// Deletes everything from the database and opens it.
|
|
MySqlLeaseMgrTest() {
|
|
initializeTest();
|
|
}
|
|
|
|
/// @brief Destructor
|
|
///
|
|
/// Rolls back all pending transactions. The deletion of lmptr_ will close
|
|
/// the database. Then reopen it and delete everything created by the test.
|
|
virtual ~MySqlLeaseMgrTest() {
|
|
destroyTest();
|
|
}
|
|
|
|
/// @brief Reopen the database
|
|
///
|
|
/// Closes the database and re-open it. Anything committed should be
|
|
/// visible.
|
|
///
|
|
/// Parameter is ignored for MySQL backend as the v4 and v6 leases share
|
|
/// the same database.
|
|
void reopen(Universe) {
|
|
LeaseMgrFactory::destroy();
|
|
LeaseMgrFactory::create(validMySQLConnectionString());
|
|
lmptr_ = &(LeaseMgrFactory::instance());
|
|
}
|
|
};
|
|
|
|
/// @brief Check that database can be opened
|
|
///
|
|
/// This test checks if the MySqlLeaseMgr can be instantiated. This happens
|
|
/// only if the database can be opened. Note that this is not part of the
|
|
/// MySqlLeaseMgr test fixure set. This test checks that the database can be
|
|
/// opened: the fixtures assume that and check basic operations.
|
|
TEST(MySqlOpenTest, OpenDatabase) {
|
|
// Schema needs to be created for the test to work.
|
|
destroyMySQLSchema(true);
|
|
createMySQLSchema(true);
|
|
|
|
// Check that lease manager open the database opens correctly and tidy up.
|
|
// If it fails, print the error message.
|
|
try {
|
|
LeaseMgrFactory::create(validMySQLConnectionString());
|
|
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());
|
|
LeaseMgrFactory::destroy();
|
|
} catch (const isc::Exception& ex) {
|
|
FAIL() << "*** ERROR: unable to open database, reason:\n"
|
|
<< " " << ex.what() << "\n"
|
|
<< "*** The test environment is broken and must be fixed\n"
|
|
<< "*** before the MySQL tests will run correctly.\n";
|
|
}
|
|
|
|
// Check that lease manager open the database opens correctly with a longer
|
|
// timeout. If it fails, print the error message.
|
|
try {
|
|
string connection_string = validMySQLConnectionString() + string(" ") +
|
|
string(VALID_TIMEOUT);
|
|
LeaseMgrFactory::create(connection_string);
|
|
EXPECT_NO_THROW((void) LeaseMgrFactory::instance());
|
|
LeaseMgrFactory::destroy();
|
|
} catch (const isc::Exception& ex) {
|
|
FAIL() << "*** ERROR: unable to open database, reason:\n"
|
|
<< " " << ex.what() << "\n"
|
|
<< "*** The test environment is broken and must be fixed\n"
|
|
<< "*** before the MySQL tests will run correctly.\n";
|
|
}
|
|
|
|
// Check that attempting to get an instance of the lease manager when
|
|
// none is set throws an exception.
|
|
EXPECT_THROW(LeaseMgrFactory::instance(), NoLeaseManager);
|
|
|
|
// Check that wrong specification of backend throws an exception.
|
|
// (This is really a check on LeaseMgrFactory, but is convenient to
|
|
// perform here.)
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
NULL, VALID_NAME, VALID_HOST, INVALID_USER, VALID_PASSWORD)),
|
|
InvalidParameter);
|
|
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
INVALID_TYPE, VALID_NAME, VALID_HOST, VALID_USER, VALID_PASSWORD)),
|
|
InvalidType);
|
|
|
|
// Check that invalid login data causes an exception.
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, INVALID_NAME, VALID_HOST, VALID_USER, VALID_PASSWORD)),
|
|
DbOpenError);
|
|
|
|
#ifndef OS_OSX
|
|
// Under MacOS, connecting with an invalid host can cause a TCP/IP socket
|
|
// to be orphaned and never closed. This can interfere with subsequent tests
|
|
// which attempt to locate and manipulate MySQL client socket descriptor.
|
|
// In the interests of progress, we'll just avoid this test.
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, VALID_NAME, INVALID_HOST, VALID_USER, VALID_PASSWORD)),
|
|
DbOpenError);
|
|
#endif
|
|
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, VALID_NAME, VALID_HOST, INVALID_USER, VALID_PASSWORD)),
|
|
DbOpenError);
|
|
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, VALID_NAME, VALID_HOST, VALID_USER, INVALID_PASSWORD)),
|
|
DbOpenError);
|
|
|
|
// Check for invalid timeouts
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, VALID_NAME, VALID_HOST, VALID_USER, VALID_PASSWORD, INVALID_TIMEOUT_1)),
|
|
DbInvalidTimeout);
|
|
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, VALID_NAME, VALID_HOST, VALID_USER, VALID_PASSWORD, INVALID_TIMEOUT_2)),
|
|
DbInvalidTimeout);
|
|
|
|
// Check for missing parameters
|
|
EXPECT_THROW(LeaseMgrFactory::create(connectionString(
|
|
MYSQL_VALID_TYPE, NULL, VALID_HOST, INVALID_USER, VALID_PASSWORD)),
|
|
NoDatabaseName);
|
|
|
|
// Tidy up after the test
|
|
destroyMySQLSchema(true);
|
|
LeaseMgrFactory::destroy();
|
|
}
|
|
|
|
/// @brief Check the getType() method
|
|
///
|
|
/// getType() returns a string giving the type of the backend, which should
|
|
/// always be "mysql".
|
|
TEST_F(MySqlLeaseMgrTest, getType) {
|
|
EXPECT_EQ(std::string("mysql"), lmptr_->getType());
|
|
}
|
|
|
|
/// @brief Check conversion functions
|
|
///
|
|
/// The server works using cltt and valid_filetime. In the database, the
|
|
/// information is stored as expire_time and valid-lifetime, which are
|
|
/// related by
|
|
///
|
|
/// expire_time = cltt + valid_lifetime
|
|
///
|
|
/// This test checks that the conversion is correct. It does not check that the
|
|
/// data is entered into the database correctly, only that the MYSQL_TIME
|
|
/// structure used for the entry is correctly set up.
|
|
TEST_F(MySqlLeaseMgrTest, checkTimeConversion) {
|
|
const time_t cltt = time(NULL);
|
|
const uint32_t valid_lft = 86400; // 1 day
|
|
struct tm tm_expire;
|
|
MYSQL_TIME mysql_expire;
|
|
|
|
// Work out what the broken-down time will be for one day
|
|
// after the current time.
|
|
time_t expire_time = cltt + valid_lft;
|
|
(void) localtime_r(&expire_time, &tm_expire);
|
|
|
|
// Convert to the database time
|
|
MySqlConnection::convertToDatabaseTime(cltt, valid_lft, mysql_expire);
|
|
|
|
// Are the times the same?
|
|
EXPECT_EQ(tm_expire.tm_year + 1900, mysql_expire.year);
|
|
EXPECT_EQ(tm_expire.tm_mon + 1, mysql_expire.month);
|
|
EXPECT_EQ(tm_expire.tm_mday, mysql_expire.day);
|
|
EXPECT_EQ(tm_expire.tm_hour, mysql_expire.hour);
|
|
EXPECT_EQ(tm_expire.tm_min, mysql_expire.minute);
|
|
EXPECT_EQ(tm_expire.tm_sec, mysql_expire.second);
|
|
EXPECT_EQ(0, mysql_expire.second_part);
|
|
EXPECT_EQ(0, mysql_expire.neg);
|
|
|
|
// Convert back
|
|
time_t converted_cltt = 0;
|
|
MySqlConnection::convertFromDatabaseTime(mysql_expire, valid_lft, converted_cltt);
|
|
EXPECT_EQ(cltt, converted_cltt);
|
|
}
|
|
|
|
/// @brief Check getName() returns correct database name
|
|
TEST_F(MySqlLeaseMgrTest, getName) {
|
|
EXPECT_EQ(std::string("keatest"), lmptr_->getName());
|
|
}
|
|
|
|
/// @brief Check that getVersion() returns the expected version
|
|
TEST_F(MySqlLeaseMgrTest, checkVersion) {
|
|
// Check version
|
|
pair<uint32_t, uint32_t> version;
|
|
ASSERT_NO_THROW(version = lmptr_->getVersion());
|
|
EXPECT_EQ(MYSQL_SCHEMA_VERSION_MAJOR, version.first);
|
|
EXPECT_EQ(MYSQL_SCHEMA_VERSION_MINOR, version.second);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// LEASE4 /////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// @brief Basic Lease4 Checks
|
|
///
|
|
/// Checks that the addLease, getLease4 (by address) and deleteLease (with an
|
|
/// IPv4 address) works.
|
|
TEST_F(MySqlLeaseMgrTest, basicLease4) {
|
|
testBasicLease4();
|
|
}
|
|
|
|
/// @brief Check that Lease4 code safely handles invalid dates.
|
|
TEST_F(MySqlLeaseMgrTest, maxDate4) {
|
|
testMaxDate4();
|
|
}
|
|
|
|
/// @brief Lease4 update tests
|
|
///
|
|
/// Checks that we are able to update a lease in the database.
|
|
TEST_F(MySqlLeaseMgrTest, updateLease4) {
|
|
testUpdateLease4();
|
|
}
|
|
|
|
/// @brief Check GetLease4 methods - access by Hardware Address
|
|
TEST_F(MySqlLeaseMgrTest, getLease4HWAddr1) {
|
|
testGetLease4HWAddr1();
|
|
}
|
|
|
|
/// @brief Check GetLease4 methods - access by Hardware Address
|
|
TEST_F(MySqlLeaseMgrTest, getLease4HWAddr2) {
|
|
testGetLease4HWAddr2();
|
|
}
|
|
|
|
// @brief Get lease4 by hardware address (2)
|
|
//
|
|
// Check that the system can cope with getting a hardware address of
|
|
// any size.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4HWAddrSize) {
|
|
testGetLease4HWAddrSize();
|
|
}
|
|
|
|
/// @brief Check GetLease4 methods - access by Hardware Address & Subnet ID
|
|
///
|
|
/// Adds leases to the database and checks that they can be accessed via
|
|
/// a combination of hardware address and subnet ID
|
|
TEST_F(MySqlLeaseMgrTest, getLease4HwaddrSubnetId) {
|
|
testGetLease4HWAddrSubnetId();
|
|
}
|
|
|
|
// @brief Get lease4 by hardware address and subnet ID (2)
|
|
//
|
|
// Check that the system can cope with getting a hardware address of
|
|
// any size.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4HWAddrSubnetIdSize) {
|
|
testGetLease4HWAddrSubnetIdSize();
|
|
}
|
|
|
|
// This test was derived from memfile.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4ClientId) {
|
|
testGetLease4ClientId();
|
|
}
|
|
|
|
/// @brief Check GetLease4 methods - access by Client ID
|
|
///
|
|
/// Adds leases to the database and checks that they can be accessed via
|
|
/// the Client ID.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4ClientId2) {
|
|
testGetLease4ClientId2();
|
|
}
|
|
|
|
// @brief Get Lease4 by client ID (2)
|
|
//
|
|
// Check that the system can cope with a client ID of any size.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4ClientIdSize) {
|
|
testGetLease4ClientIdSize();
|
|
}
|
|
|
|
/// @brief Check GetLease4 methods - access by Client ID & Subnet ID
|
|
///
|
|
/// Adds leases to the database and checks that they can be accessed via
|
|
/// a combination of client and subnet IDs.
|
|
TEST_F(MySqlLeaseMgrTest, getLease4ClientIdSubnetId) {
|
|
testGetLease4ClientIdSubnetId();
|
|
}
|
|
|
|
// This test checks that all IPv4 leases for a specified subnet id are returned.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases4SubnetId) {
|
|
testGetLeases4SubnetId();
|
|
}
|
|
|
|
// This test checks that all IPv4 leases are returned.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases4) {
|
|
testGetLeases4();
|
|
}
|
|
|
|
// Test that a range of IPv4 leases is returned with paging.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases4Paged) {
|
|
testGetLeases4Paged();
|
|
}
|
|
|
|
// This test checks that all IPv6 leases for a specified subnet id are returned.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6SubnetId) {
|
|
testGetLeases6SubnetId();
|
|
}
|
|
|
|
// This test checks that all IPv6 leases are returned.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6) {
|
|
testGetLeases6();
|
|
}
|
|
|
|
// Test that a range of IPv6 leases is returned with paging.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6Paged) {
|
|
testGetLeases6Paged();
|
|
}
|
|
|
|
/// @brief Basic Lease4 Checks
|
|
///
|
|
/// Checks that the addLease, getLease4(by address), getLease4(hwaddr,subnet_id),
|
|
/// updateLease4() and deleteLease can handle NULL client-id.
|
|
/// (client-id is optional and may not be present)
|
|
TEST_F(MySqlLeaseMgrTest, lease4NullClientId) {
|
|
testLease4NullClientId();
|
|
}
|
|
|
|
/// @brief Verify that too long hostname for Lease4 is not accepted.
|
|
///
|
|
/// Checks that the it is not possible to create a lease when the hostname
|
|
/// length exceeds 255 characters.
|
|
TEST_F(MySqlLeaseMgrTest, lease4InvalidHostname) {
|
|
testLease4InvalidHostname();
|
|
}
|
|
|
|
/// @brief Check that the expired DHCPv4 leases can be retrieved.
|
|
///
|
|
/// This test adds a number of leases to the lease database and marks
|
|
/// some of them as expired. Then it queries for expired leases and checks
|
|
/// whether only expired leases are returned, and that they are returned in
|
|
/// the order from most to least expired. It also checks that the lease
|
|
/// which is marked as 'reclaimed' is not returned.
|
|
TEST_F(MySqlLeaseMgrTest, getExpiredLeases4) {
|
|
testGetExpiredLeases4();
|
|
}
|
|
|
|
/// @brief Check that expired reclaimed DHCPv4 leases are removed.
|
|
TEST_F(MySqlLeaseMgrTest, deleteExpiredReclaimedLeases4) {
|
|
testDeleteExpiredReclaimedLeases4();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// LEASE6 /////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Test checks whether simple add, get and delete operations are possible
|
|
// on Lease6
|
|
TEST_F(MySqlLeaseMgrTest, testAddGetDelete6) {
|
|
testAddGetDelete6(false);
|
|
}
|
|
|
|
/// @brief Basic Lease6 Checks
|
|
///
|
|
/// Checks that the addLease, getLease6 (by address) and deleteLease (with an
|
|
/// IPv6 address) works.
|
|
TEST_F(MySqlLeaseMgrTest, basicLease6) {
|
|
testBasicLease6();
|
|
}
|
|
|
|
/// @brief Check that Lease6 code safely handles invalid dates.
|
|
TEST_F(MySqlLeaseMgrTest, maxDate6) {
|
|
testMaxDate6();
|
|
}
|
|
|
|
/// @brief Verify that too long hostname for Lease6 is not accepted.
|
|
///
|
|
/// Checks that the it is not possible to create a lease when the hostname
|
|
/// length exceeds 255 characters.
|
|
TEST_F(MySqlLeaseMgrTest, lease6InvalidHostname) {
|
|
testLease6InvalidHostname();
|
|
}
|
|
|
|
/// @brief Check GetLease6 methods - access by DUID/IAID
|
|
///
|
|
/// Adds leases to the database and checks that they can be accessed via
|
|
/// a combination of DUID and IAID.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6DuidIaid) {
|
|
testGetLeases6DuidIaid();
|
|
}
|
|
|
|
// Check that the system can cope with a DUID of allowed size.
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6DuidSize) {
|
|
testGetLeases6DuidSize();
|
|
}
|
|
|
|
/// @brief Check that getLease6 methods discriminate by lease type.
|
|
///
|
|
/// Adds six leases, two per lease type all with the same duid and iad but
|
|
/// with alternating subnet_ids.
|
|
/// It then verifies that all of getLeases6() method variants correctly
|
|
/// discriminate between the leases based on lease type alone.
|
|
TEST_F(MySqlLeaseMgrTest, lease6LeaseTypeCheck) {
|
|
testLease6LeaseTypeCheck();
|
|
}
|
|
|
|
/// @brief Check GetLease6 methods - access by DUID/IAID/SubnetID
|
|
///
|
|
/// Adds leases to the database and checks that they can be accessed via
|
|
/// a combination of DIUID and IAID.
|
|
TEST_F(MySqlLeaseMgrTest, getLease6DuidIaidSubnetId) {
|
|
testGetLease6DuidIaidSubnetId();
|
|
}
|
|
|
|
// Test checks that getLease6() works with different DUID sizes
|
|
TEST_F(MySqlLeaseMgrTest, getLease6DuidIaidSubnetIdSize) {
|
|
testGetLease6DuidIaidSubnetIdSize();
|
|
}
|
|
|
|
// @brief check leases could be retrieved by DUID
|
|
///
|
|
/// Create leases, add them to backend and verify if it can be queried
|
|
/// using DUID index
|
|
TEST_F(MySqlLeaseMgrTest, getLeases6Duid) {
|
|
testGetLeases6Duid();
|
|
}
|
|
|
|
/// @brief Lease6 update tests
|
|
///
|
|
/// Checks that we are able to update a lease in the database.
|
|
TEST_F(MySqlLeaseMgrTest, updateLease6) {
|
|
testUpdateLease6();
|
|
}
|
|
|
|
/// @brief DHCPv4 Lease recreation tests
|
|
///
|
|
/// Checks that the lease can be created, deleted and recreated with
|
|
/// different parameters. It also checks that the re-created lease is
|
|
/// correctly stored in the lease database.
|
|
TEST_F(MySqlLeaseMgrTest, testRecreateLease4) {
|
|
testRecreateLease4();
|
|
}
|
|
|
|
/// @brief DHCPv6 Lease recreation tests
|
|
///
|
|
/// Checks that the lease can be created, deleted and recreated with
|
|
/// different parameters. It also checks that the re-created lease is
|
|
/// correctly stored in the lease database.
|
|
TEST_F(MySqlLeaseMgrTest, testRecreateLease6) {
|
|
testRecreateLease6();
|
|
}
|
|
|
|
/// @brief Checks that null DUID is not allowed.
|
|
TEST_F(MySqlLeaseMgrTest, nullDuid) {
|
|
testNullDuid();
|
|
}
|
|
|
|
/// @brief Tests whether memfile can store and retrieve hardware addresses
|
|
TEST_F(MySqlLeaseMgrTest, testLease6Mac) {
|
|
testLease6MAC();
|
|
}
|
|
|
|
/// @brief Tests whether memfile can store and retrieve hardware addresses
|
|
TEST_F(MySqlLeaseMgrTest, testLease6HWTypeAndSource) {
|
|
testLease6HWTypeAndSource();
|
|
}
|
|
|
|
/// @brief Check that the expired DHCPv6 leases can be retrieved.
|
|
///
|
|
/// This test adds a number of leases to the lease database and marks
|
|
/// some of them as expired. Then it queries for expired leases and checks
|
|
/// whether only expired leases are returned, and that they are returned in
|
|
/// the order from most to least expired. It also checks that the lease
|
|
/// which is marked as 'reclaimed' is not returned.
|
|
TEST_F(MySqlLeaseMgrTest, getExpiredLeases6) {
|
|
testGetExpiredLeases6();
|
|
}
|
|
|
|
/// @brief Check that expired reclaimed DHCPv6 leases are removed.
|
|
TEST_F(MySqlLeaseMgrTest, deleteExpiredReclaimedLeases6) {
|
|
testDeleteExpiredReclaimedLeases6();
|
|
}
|
|
|
|
/// @brief Verifies that IPv4 lease statistics can be recalculated.
|
|
TEST_F(MySqlLeaseMgrTest, recountLeaseStats4) {
|
|
testRecountLeaseStats4();
|
|
}
|
|
|
|
/// @brief Verifies that IPv6 lease statistics can be recalculated.
|
|
TEST_F(MySqlLeaseMgrTest, recountLeaseStats6) {
|
|
testRecountLeaseStats6();
|
|
}
|
|
|
|
// @brief Tests that leases from specific subnet can be removed.
|
|
TEST_F(MySqlLeaseMgrTest, DISABLED_wipeLeases4) {
|
|
testWipeLeases4();
|
|
}
|
|
|
|
// @brief Tests that leases from specific subnet can be removed.
|
|
TEST_F(MySqlLeaseMgrTest, DISABLED_wipeLeases6) {
|
|
testWipeLeases6();
|
|
}
|
|
|
|
/// @brief Test fixture class for validating @c LeaseMgr using
|
|
/// MySQL as back end and MySQL connectivity loss.
|
|
class MySQLLeaseMgrDbLostCallbackTest : public LeaseMgrDbLostCallbackTest {
|
|
public:
|
|
virtual void destroySchema() {
|
|
test::destroyMySQLSchema();
|
|
}
|
|
|
|
virtual void createSchema() {
|
|
test::createMySQLSchema();
|
|
}
|
|
|
|
virtual std::string validConnectString() {
|
|
return (test::validMySQLConnectionString());
|
|
}
|
|
|
|
virtual std::string invalidConnectString() {
|
|
return (connectionString(MYSQL_VALID_TYPE, INVALID_NAME, VALID_HOST,
|
|
VALID_USER, VALID_PASSWORD));
|
|
}
|
|
};
|
|
|
|
// Verifies that db lost callback is not invoked on an open failure
|
|
TEST_F(MySQLLeaseMgrDbLostCallbackTest, testNoCallbackOnOpenFailure) {
|
|
testNoCallbackOnOpenFailure();
|
|
}
|
|
|
|
// Verifies that loss of connectivity to MySQL is handled correctly.
|
|
TEST_F(MySQLLeaseMgrDbLostCallbackTest, testDbLostCallback) {
|
|
testDbLostCallback();
|
|
}
|
|
|
|
// Tests v4 lease stats query variants.
|
|
TEST_F(MySqlLeaseMgrTest, leaseStatsQuery4) {
|
|
testLeaseStatsQuery4();
|
|
}
|
|
|
|
// Tests v6 lease stats query variants.
|
|
TEST_F(MySqlLeaseMgrTest, leaseStatsQuery6) {
|
|
testLeaseStatsQuery6();
|
|
}
|
|
|
|
} // namespace
|