1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Copyright (C) 2011 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 <datasrc/client.h>
- #include <dns/name.h>
- #include <gtest/gtest.h>
- using namespace isc::datasrc;
- using isc::dns::Name;
- namespace {
- /*
- * The DataSourceClient can't be created as it has pure virtual methods.
- * So we implement them as NOPs and test the other methods.
- */
- class NopClient : public DataSourceClient {
- public:
- virtual FindResult findZone(const isc::dns::Name&) const {
- return (FindResult(result::NOTFOUND, ZoneFinderPtr()));
- }
- };
- class ClientTest : public ::testing::Test {
- public:
- NopClient client_;
- };
- // The default implementation is NotImplemented
- TEST_F(ClientTest, defaultIterator) {
- EXPECT_THROW(client_.getIterator(Name(".")), isc::NotImplemented);
- }
- }
|