diff tests/src/irccdctl/cli-hook-list/main.cpp @ 895:f0d6bc79aa32

irccd: implement hooks, closes #2342 @2h The hook mechanism is an alternative approach to plugins which allow the user to write lightweight scripts in any language.
author David Demelier <markand@malikania.fr>
date Thu, 05 Sep 2019 13:39:32 +0200
parents
children 5e25439fe98d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/src/irccdctl/cli-hook-list/main.cpp	Thu Sep 05 13:39:32 2019 +0200
@@ -0,0 +1,61 @@
+/*
+ * main.cpp -- test irccdctl hook-list
+ *
+ * Copyright (c) 2013-2019 David Demelier <markand@malikania.fr>
+ *
+ * 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 THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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.
+ */
+
+#define BOOST_TEST_MODULE "irccdctl hook-list"
+#include <boost/test/unit_test.hpp>
+
+#include <irccd/test/cli_fixture.hpp>
+
+using namespace irccd::test;
+
+using irccd::daemon::hook;
+
+namespace irccd {
+
+namespace {
+
+class hook_list_fixture : public cli_fixture {
+public:
+	hook_list_fixture()
+		: cli_fixture(IRCCDCTL_EXECUTABLE)
+	{
+		bot_.get_hooks().add(hook("true", "/bin/true"));
+		bot_.get_hooks().add(hook("false", "/bin/false"));
+	}
+};
+
+BOOST_FIXTURE_TEST_SUITE(hook_list_suite, hook_list_fixture)
+
+BOOST_AUTO_TEST_CASE(basic)
+{
+	start();
+
+	const auto [code, out, err] = exec({ "hook-list" });
+
+	BOOST_TEST(!code);
+	BOOST_TEST(out.size() == 2U);
+	BOOST_TEST(err.size() == 0U);
+	BOOST_TEST(out[0] == "true             /bin/true");
+	BOOST_TEST(out[1] == "false            /bin/false");
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+} // !namespace
+
+} // !irccd