1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "libtest/yatlcon.h"
38 #include <libtest/common.h>
40 #include <libtest/drizzled.h>
42 #include "util/instance.hpp"
43 #include "util/operation.hpp"
45 using namespace datadifferential
;
46 using namespace libtest
;
56 #include <sys/types.h>
60 #ifndef __INTEL_COMPILER
61 #pragma GCC diagnostic ignored "-Wold-style-cast"
64 #if defined(HAVE_LIBDRIZZLE) && HAVE_LIBDRIZZLE
65 # include <libdrizzle-5.1/drizzle_client.h>
68 using namespace libtest
;
71 bool ping_drizzled(const in_port_t _port
)
74 #if defined(HAVE_LIBDRIZZLE) && HAVE_LIBDRIZZLE
77 drizzle_st
*drizzle
= drizzle_create(getenv("MYSQL_SERVER"),
78 getenv("MYSQL_PORT") ? atoi("MYSQL_PORT") : DRIZZLE_DEFAULT_TCP_PORT
,
80 getenv("MYSQL_PASSWORD"),
81 getenv("MYSQL_SCHEMA"), 0);
91 if ((rc
= drizzle_connect(drizzle
)) == DRIZZLE_RETURN_OK
)
93 drizzle_result_st
*result
= drizzle_ping(drizzle
, &rc
);
94 success
= bool(result
);
95 drizzle_result_free(result
);
100 else if (rc
!= DRIZZLE_RETURN_OK
)
102 Error
<< drizzle_error(drizzle
) << " localhost:" << _port
;
105 drizzle_quit(drizzle
);
113 } // namespace libtest
115 class Drizzle
: public libtest::Server
119 Drizzle(const std::string
& host_arg
, in_port_t port_arg
) :
120 libtest::Server(host_arg
, port_arg
, DRIZZLED_BINARY
, false)
128 while (_app
.check() and --limit
)
130 if (ping_drizzled(_port
))
134 libtest::dream(1, 0);
145 void log_file_option(Application
&, const std::string
&)
149 bool has_log_file_option() const
154 bool broken_pid_file()
164 bool has_syslog() const
169 bool has_port_option() const
174 void port_option(Application
& app
, in_port_t arg
)
178 libtest::vchar_t buffer
;
180 snprintf(&buffer
[1024], buffer
.size(), "--drizzle-protocol.port=%d", int(arg
));
181 app
.add_option(&buffer
[1024]);
188 bool Drizzle::build()
190 if (getuid() == 0 or geteuid() == 0)
192 add_option("--user=root");
195 add_option("--verbose=INSPECT");
197 add_option("--datadir=var/drizzle");
205 libtest::Server
*build_drizzled(const char *hostname
, in_port_t try_port
)
207 return new Drizzle(hostname
, try_port
);