1 /*
2  * This file is part of PowerDNS or dnsdist.
3  * Copyright -- PowerDNS.COM B.V. and its contributors
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * In addition, for the avoidance of any doubt, permission is granted to
10  * link this program with OpenSSL and to (re)distribute the binaries
11  * produced as the result of such linking.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22 #define BOOST_TEST_DYN_LINK
23 #define BOOST_TEST_MAIN
24 #define BOOST_TEST_MODULE unit
25 
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29 #include <boost/test/unit_test.hpp>
30 #include <boost/assign/list_of.hpp>
31 
32 #include <boost/tuple/tuple.hpp>
33 #include "pdns/namespaces.hh"
34 #include "pdns/dns.hh"
35 #include "pdns/dnsbackend.hh"
36 #include "pdns/dnspacket.hh"
37 #include "pdns/pdnsexception.hh"
38 #include "pdns/logger.hh"
39 #include "pdns/arguments.hh"
40 #include "pdns/dnsrecords.hh"
41 #include "pdns/json.hh"
42 #include "pdns/statbag.hh"
43 #include "pdns/auth-packetcache.hh"
44 #include "pdns/auth-querycache.hh"
45 #include "pdns/auth-zonecache.hh"
46 
47 StatBag S;
48 AuthPacketCache PC;
49 AuthQueryCache QC;
50 AuthZoneCache g_zoneCache;
arg()51 ArgvMap& arg()
52 {
53   static ArgvMap arg;
54   return arg;
55 };
56 
57 class RemoteLoader
58 {
59 public:
60   RemoteLoader();
61 };
62 
63 DNSBackend* be;
64 
65 struct RemotebackendSetup
66 {
RemotebackendSetupRemotebackendSetup67   RemotebackendSetup()
68   {
69     be = 0;
70     try {
71       // setup minimum arguments
72       ::arg().set("module-dir") = "./.libs";
73       new RemoteLoader();
74       BackendMakers().launch("remote");
75       // then get us a instance of it
76       ::arg().set("remote-connection-string") = "unix:path=/tmp/remotebackend.sock";
77       ::arg().set("remote-dnssec") = "yes";
78       be = BackendMakers().all()[0];
79       // load few record types to help out
80       SOARecordContent::report();
81       NSRecordContent::report();
82       ARecordContent::report();
83     }
84     catch (PDNSException& ex) {
85       BOOST_TEST_MESSAGE("Cannot start remotebackend: " << ex.reason);
86     };
87   }
~RemotebackendSetupRemotebackendSetup88   ~RemotebackendSetup() {}
89 };
90 
91 BOOST_GLOBAL_FIXTURE(RemotebackendSetup);
92