]> git.ipfire.org Git - thirdparty/pdns.git/blob - modules/remotebackend/test-remotebackend-pipe.cc
Merge pull request #9106 from omoerbeek/release-cycles
[thirdparty/pdns.git] / modules / remotebackend / test-remotebackend-pipe.cc
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
46 StatBag S;
47 AuthPacketCache PC;
48 AuthQueryCache QC;
49 ArgvMap &arg()
50 {
51 static ArgvMap arg;
52 return arg;
53 };
54
55 class RemoteLoader
56 {
57 public:
58 RemoteLoader();
59 };
60
61 DNSBackend *be;
62
63 struct RemotebackendSetup {
64 RemotebackendSetup() {
65 be = 0;
66 try {
67 // setup minimum arguments
68 ::arg().set("module-dir")="./.libs";
69 new RemoteLoader();
70 BackendMakers().launch("remote");
71 // then get us a instance of it
72 ::arg().set("remote-connection-string")="pipe:command=unittest_pipe.rb";
73 ::arg().set("remote-dnssec")="yes";
74 be = BackendMakers().all()[0];
75 // load few record types to help out
76 SOARecordContent::report();
77 NSRecordContent::report();
78 ARecordContent::report();
79 } catch (PDNSException &ex) {
80 BOOST_TEST_MESSAGE("Cannot start remotebackend: " << ex.reason );
81 };
82 }
83 ~RemotebackendSetup() { }
84 };
85
86 BOOST_GLOBAL_FIXTURE( RemotebackendSetup );
87