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 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25 #include "pdns/namespaces.hh"
26 #include "pdns/dns.hh"
27 #include "pdns/dnsbackend.hh"
28 #include "pdns/dnspacket.hh"
29 #include "pdns/pdnsexception.hh"
30 #include "pdns/logger.hh"
31 #include "pdns/arguments.hh"
32 #include "pdns/json.hh"
33 #include "pdns/statbag.hh"
34 #include "pdns/auth-packetcache.hh"
35 #include "pdns/auth-querycache.hh"
36 #include "pdns/auth-zonecache.hh"
37 
38 StatBag S;
39 AuthPacketCache PC;
40 AuthQueryCache QC;
41 AuthZoneCache g_zoneCache;
arg()42 ArgvMap& arg()
43 {
44   static ArgvMap arg;
45   return arg;
46 };
47 
48 class RemoteLoader
49 {
50 public:
51   RemoteLoader();
52 };
53 
54 DNSBackend* be;
55 
56 #define BOOST_TEST_DYN_LINK
57 #define BOOST_TEST_MAIN
58 #define BOOST_TEST_MODULE unit
59 
60 #include <boost/test/unit_test.hpp>
61 #include <boost/assign/list_of.hpp>
62 
63 #include <boost/tuple/tuple.hpp>
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") = "http:url=http://localhost:62434/dns/endpoint.json,post=1,post_json=1";
77       ::arg().set("remote-dnssec") = "yes";
78       be = BackendMakers().all()[0];
79     }
80     catch (PDNSException& ex) {
81       BOOST_TEST_MESSAGE("Cannot start remotebackend: " << ex.reason);
82     };
83   }
~RemotebackendSetupRemotebackendSetup84   ~RemotebackendSetup() {}
85 };
86 
87 BOOST_GLOBAL_FIXTURE(RemotebackendSetup);
88