123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- // Copyright (C) 2012-2014 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 <config.h>
- #include <asiolink/io_address.h>
- #include <dhcp/duid.h>
- #include <dhcpsrv/cfgmgr.h>
- #include <dhcpsrv/lease_mgr.h>
- #include <dhcpsrv/memfile_lease_mgr.h>
- #include <dhcpsrv/tests/test_utils.h>
- #include <dhcpsrv/tests/generic_lease_mgr_unittest.h>
- #include <gtest/gtest.h>
- #include <iostream>
- #include <sstream>
- using namespace std;
- using namespace isc;
- using namespace isc::asiolink;
- using namespace isc::dhcp;
- using namespace isc::dhcp::test;
- namespace {
- // empty class for now, but may be extended once Addr6 becomes bigger
- class MemfileLeaseMgrTest : public GenericLeaseMgrTest {
- public:
- /// @brief memfile lease mgr test constructor
- ///
- /// Creates memfile and stores it in lmptr_ pointer
- MemfileLeaseMgrTest() {
- const LeaseMgr::ParameterMap pmap;
- lmptr_ = new Memfile_LeaseMgr(pmap);
- }
- virtual void reopen() {
- /// @todo: write lease to disk, flush, read file from disk
- }
- /// @brief destructor
- ///
- /// destroys lease manager backend.
- virtual ~MemfileLeaseMgrTest() {
- delete lmptr_;
- lmptr_ = 0;
- }
- /// @brief Return path to the lease file used by unit tests.
- ///
- /// @param filename Name of the lease file appended to the path to the
- /// directory where test data is held.
- ///
- /// @return Full path to the lease file.
- std::string getLeaseFilePath(const std::string& filename) const {
- std::ostringstream s;
- s << TEST_DATA_BUILDDIR << "/" << filename;
- return (s.str());
- }
- };
- // This test checks if the LeaseMgr can be instantiated and that it
- // parses parameters string properly.
- TEST_F(MemfileLeaseMgrTest, constructor) {
- const LeaseMgr::ParameterMap pmap; // Empty parameter map
- boost::scoped_ptr<Memfile_LeaseMgr> lease_mgr;
- ASSERT_NO_THROW(lease_mgr.reset(new Memfile_LeaseMgr(pmap)));
- }
- // Checks if the getType() and getName() methods both return "memfile".
- TEST_F(MemfileLeaseMgrTest, getTypeAndName) {
- EXPECT_EQ(std::string("memfile"), lmptr_->getType());
- EXPECT_EQ(std::string("memory"), lmptr_->getName());
- }
- // Checks if the path to the lease files is initialized correctly.
- TEST_F(MemfileLeaseMgrTest, getLeaseFilePath) {
- LeaseMgr::ParameterMap pmap;
- boost::scoped_ptr<Memfile_LeaseMgr> lease_mgr(new Memfile_LeaseMgr(pmap));
- std::ostringstream s4;
- s4 << CfgMgr::instance().getDataDir() << "/" << "kea-leases4.csv";
- std::ostringstream s6;
- s6 << CfgMgr::instance().getDataDir() << "/" << "kea-leases6.csv";
- EXPECT_EQ(s4.str(),
- lease_mgr->getDefaultLeaseFilePath(Memfile_LeaseMgr::V4));
- EXPECT_EQ(s6.str(),
- lease_mgr->getDefaultLeaseFilePath(Memfile_LeaseMgr::V6));
- EXPECT_EQ(lease_mgr->getDefaultLeaseFilePath(Memfile_LeaseMgr::V4),
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V4));
- EXPECT_EQ(lease_mgr->getDefaultLeaseFilePath(Memfile_LeaseMgr::V6),
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V6));
- pmap["leasefile4"] = getLeaseFilePath("leasefile4.csv");
- lease_mgr.reset(new Memfile_LeaseMgr(pmap));
- EXPECT_EQ(pmap["leasefile4"],
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V4));
- EXPECT_EQ(lease_mgr->getDefaultLeaseFilePath(Memfile_LeaseMgr::V6),
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V6));
- pmap["leasefile6"] = getLeaseFilePath("kea-leases6.csv");
- lease_mgr.reset(new Memfile_LeaseMgr(pmap));
- EXPECT_EQ(pmap["leasefile4"],
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V4));
- EXPECT_EQ(pmap["leasefile6"],
- lease_mgr->getLeaseFilePath(Memfile_LeaseMgr::V6));
- }
- // Check if the persitLeases correctly checks that leases should not be written
- // to disk when lease file is set to empty value.
- TEST_F(MemfileLeaseMgrTest, persistLeases) {
- LeaseMgr::ParameterMap pmap;
- boost::scoped_ptr<Memfile_LeaseMgr> lease_mgr(new Memfile_LeaseMgr(pmap));
- // If the leasefile4 and leasefile6 are not specified, the default
- // file names will be used. The leases will be written to these files.
- EXPECT_TRUE(lease_mgr->persistLeases(Memfile_LeaseMgr::V4));
- EXPECT_TRUE(lease_mgr->persistLeases(Memfile_LeaseMgr::V6));
- // Specify the names of the lease files. Leases will be written.
- pmap["leasefile4"] = "leases4.csv";
- pmap["leasefile6"] = "leases6.csv";
- lease_mgr.reset(new Memfile_LeaseMgr(pmap));
- EXPECT_TRUE(lease_mgr->persistLeases(Memfile_LeaseMgr::V4));
- EXPECT_TRUE(lease_mgr->persistLeases(Memfile_LeaseMgr::V6));
- // Specify empty names of the lease files. This should disable writes
- // of leases to disk.
- pmap["leasefile4"] = "";
- pmap["leasefile6"] = "";
- lease_mgr.reset(new Memfile_LeaseMgr(pmap));
- EXPECT_FALSE(lease_mgr->persistLeases(Memfile_LeaseMgr::V4));
- EXPECT_FALSE(lease_mgr->persistLeases(Memfile_LeaseMgr::V6));
- }
- // Checks that adding/getting/deleting a Lease6 object works.
- TEST_F(MemfileLeaseMgrTest, addGetDelete6) {
- testAddGetDelete6(true); // true - check T1,T2 values
- // memfile is able to preserve those values, but some other
- // backends can't do that.
- }
- /// @brief Basic Lease4 Checks
- ///
- /// Checks that the addLease, getLease4 (by address) and deleteLease (with an
- /// IPv4 address) works.
- TEST_F(MemfileLeaseMgrTest, basicLease4) {
- testBasicLease4();
- }
- /// @todo Write more memfile tests
- // Simple test about lease4 retrieval through client id method
- TEST_F(MemfileLeaseMgrTest, getLease4ClientId) {
- testGetLease4ClientId();
- }
- // Checks that lease4 retrieval client id is null is working
- TEST_F(MemfileLeaseMgrTest, getLease4NullClientId) {
- testGetLease4NullClientId();
- }
- // Checks lease4 retrieval through HWAddr
- TEST_F(MemfileLeaseMgrTest, getLease4HWAddr1) {
- testGetLease4HWAddr1();
- }
- /// @brief Check GetLease4 methods - access by Hardware Address
- ///
- /// Adds leases to the database and checks that they can be accessed via
- /// a combination of DUID and IAID.
- TEST_F(MemfileLeaseMgrTest, getLease4HWAddr2) {
- testGetLease4HWAddr2();
- }
- // Checks lease4 retrieval with clientId, HWAddr and subnet_id
- TEST_F(MemfileLeaseMgrTest, getLease4ClientIdHWAddrSubnetId) {
- testGetLease4ClientIdHWAddrSubnetId();
- }
- /// @brief Basic Lease4 Checks
- ///
- /// Checks that the addLease, getLease4(by address), getLease4(hwaddr,subnet_id),
- /// updateLease4() and deleteLease (IPv4 address) can handle NULL client-id.
- /// (client-id is optional and may not be present)
- TEST_F(MemfileLeaseMgrTest, DISABLED_lease4NullClientId) {
- /// @todo Test is disabled, because memfile does not support disk storage, so
- /// all leases are lost after reopen()
- testLease4NullClientId();
- }
- /// @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(MemfileLeaseMgrTest, DISABLED_getLease4HwaddrSubnetId) {
- /// @todo: fails on memfile. It's probably a memfile bug.
- testGetLease4HWAddrSubnetId();
- }
- /// @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(MemfileLeaseMgrTest, getLease4ClientId2) {
- testGetLease4ClientId2();
- }
- // @brief Get Lease4 by client ID
- //
- // Check that the system can cope with a client ID of any size.
- TEST_F(MemfileLeaseMgrTest, 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(MemfileLeaseMgrTest, getLease4ClientIdSubnetId) {
- testGetLease4ClientIdSubnetId();
- }
- /// @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.
- /// @todo: test disabled, because Memfile_LeaseMgr::getLeases6(Lease::Type,
- /// const DUID& duid, uint32_t iaid) const is not implemented yet.
- TEST_F(MemfileLeaseMgrTest, DISABLED_getLeases6DuidIaid) {
- testGetLeases6DuidIaid();
- }
- // Check that the system can cope with a DUID of allowed size.
- /// @todo: test disabled, because Memfile_LeaseMgr::getLeases6(Lease::Type,
- /// const DUID& duid, uint32_t iaid) const is not implemented yet.
- TEST_F(MemfileLeaseMgrTest, DISABLED_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.
- /// @todo: Disabled, because type parameter in Memfile_LeaseMgr::getLease6
- /// (Lease::Type, const isc::asiolink::IOAddress& addr) const is not used.
- TEST_F(MemfileLeaseMgrTest, DISABLED_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(MemfileLeaseMgrTest, getLease6DuidIaidSubnetId) {
- testGetLease6DuidIaidSubnetId();
- }
- /// Checks that getLease6(type, duid, iaid, subnet-id) works with different
- /// DUID sizes
- TEST_F(MemfileLeaseMgrTest, getLease6DuidIaidSubnetIdSize) {
- testGetLease6DuidIaidSubnetIdSize();
- }
- /// @brief Lease4 update tests
- ///
- /// Checks that we are able to update a lease in the database.
- /// @todo: Disabled, because memfile does not throw when lease is updated.
- /// We should reconsider if lease{4,6} structures should have a limit
- /// implemented in them.
- TEST_F(MemfileLeaseMgrTest, DISABLED_updateLease4) {
- testUpdateLease4();
- }
- /// @brief Lease6 update tests
- ///
- /// Checks that we are able to update a lease in the database.
- /// @todo: Disabled, because memfile does not throw when lease is updated.
- /// We should reconsider if lease{4,6} structures should have a limit
- /// implemented in them.
- TEST_F(MemfileLeaseMgrTest, DISABLED_updateLease6) {
- testUpdateLease6();
- }
- // The following tests are not applicable for memfile. When adding
- // new tests to the list here, make sure to provide brief explanation
- // why they are not applicable:
- //
- // testGetLease4HWAddrSubnetIdSize() - memfile just keeps Lease structure
- // and does not do any checks of HWAddr content
- }; // end of anonymous namespace
|