diff tests/src/libirccd-daemon/command-rule-move/main.cpp @ 809:8460b4a34191

misc: reorganize namespaces, closes #952 @4h
author David Demelier <markand@malikania.fr>
date Fri, 16 Nov 2018 12:25:00 +0100
parents tests/src/libirccd/command-rule-move/main.cpp@8c44bbcbbab9
children 06cc2f95f479
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/src/libirccd-daemon/command-rule-move/main.cpp	Fri Nov 16 12:25:00 2018 +0100
@@ -0,0 +1,365 @@
+/*
+ * main.cpp -- test rule-move remote command
+ *
+ * Copyright (c) 2013-2018 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 "rule-move"
+#include <boost/test/unit_test.hpp>
+
+#include <irccd/json_util.hpp>
+
+#include <irccd/test/command_fixture.hpp>
+
+using irccd::test::command_fixture;
+
+using irccd::daemon::rule;
+using irccd::daemon::rule_error;
+
+namespace irccd {
+
+namespace {
+
+class rule_move_fixture : public command_fixture {
+public:
+	rule_move_fixture()
+	{
+		bot_.rules().add(rule{
+			{ "s0" },
+			{ "c0" },
+			{ "o0" },
+			{ "p0" },
+			{ "onMessage" },
+			rule::action_type::drop
+		});
+		bot_.rules().add(rule{
+			{ "s1", },
+			{ "c1", },
+			{ "o1", },
+			{ "p1", },
+			{ "onMessage", },
+			rule::action_type::accept
+		});
+		bot_.rules().add(rule{
+			{ "s2", },
+			{ "c2", },
+			{ "o2", },
+			{ "p2", },
+			{ "onMessage", },
+			rule::action_type::accept
+		});
+	}
+};
+
+BOOST_FIXTURE_TEST_SUITE(rule_move_fixture_suite, rule_move_fixture)
+
+BOOST_AUTO_TEST_CASE(backward)
+{
+	request({
+		{ "command",    "rule-move" },
+		{ "from",       2           },
+		{ "to",         0           }
+	});
+
+	const auto [json, code] = request({{ "command", "rule-list" }});
+
+	BOOST_TEST(!code);
+	BOOST_TEST(json.is_object());
+
+	// Rule 2.
+	{
+		auto servers = json["list"][0]["servers"];
+		auto channels = json["list"][0]["channels"];
+		auto plugins = json["list"][0]["plugins"];
+		auto events = json["list"][0]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s2"));
+		BOOST_TEST(json_util::contains(channels, "c2"));
+		BOOST_TEST(json_util::contains(plugins, "p2"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][0]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 0.
+	{
+		auto servers = json["list"][1]["servers"];
+		auto channels = json["list"][1]["channels"];
+		auto plugins = json["list"][1]["plugins"];
+		auto events = json["list"][1]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s0"));
+		BOOST_TEST(json_util::contains(channels, "c0"));
+		BOOST_TEST(json_util::contains(plugins, "p0"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][1]["action"].get<std::string>() == "drop");
+	}
+
+	// Rule 1.
+	{
+		auto servers = json["list"][2]["servers"];
+		auto channels = json["list"][2]["channels"];
+		auto plugins = json["list"][2]["plugins"];
+		auto events = json["list"][2]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s1"));
+		BOOST_TEST(json_util::contains(channels, "c1"));
+		BOOST_TEST(json_util::contains(plugins, "p1"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][2]["action"].get<std::string>() == "accept");
+	}
+}
+
+BOOST_AUTO_TEST_CASE(upward)
+{
+	request({
+		{ "command",    "rule-move" },
+		{ "from",       0           },
+		{ "to",         2           }
+	});
+
+	const auto [json, code] = request({{ "command", "rule-list" }});
+
+	BOOST_TEST(!code);
+	BOOST_TEST(json.is_object());
+
+	// Rule 1.
+	{
+		auto servers = json["list"][0]["servers"];
+		auto channels = json["list"][0]["channels"];
+		auto plugins = json["list"][0]["plugins"];
+		auto events = json["list"][0]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s1"));
+		BOOST_TEST(json_util::contains(channels, "c1"));
+		BOOST_TEST(json_util::contains(plugins, "p1"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][0]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 2.
+	{
+		auto servers = json["list"][1]["servers"];
+		auto channels = json["list"][1]["channels"];
+		auto plugins = json["list"][1]["plugins"];
+		auto events = json["list"][1]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s2"));
+		BOOST_TEST(json_util::contains(channels, "c2"));
+		BOOST_TEST(json_util::contains(plugins, "p2"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][1]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 0.
+	{
+		auto servers = json["list"][2]["servers"];
+		auto channels = json["list"][2]["channels"];
+		auto plugins = json["list"][2]["plugins"];
+		auto events = json["list"][2]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s0"));
+		BOOST_TEST(json_util::contains(channels, "c0"));
+		BOOST_TEST(json_util::contains(plugins, "p0"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][2]["action"].get<std::string>() == "drop");
+	}
+}
+
+BOOST_AUTO_TEST_CASE(same)
+{
+	request({
+		{ "command",    "rule-move" },
+		{ "from",       1           },
+		{ "to",         1           }
+	});
+
+	const auto [json, code] = request({{ "command", "rule-list" }});
+
+	BOOST_TEST(!code);
+	BOOST_TEST(json.is_object());
+
+	// Rule 0.
+	{
+		auto servers = json["list"][0]["servers"];
+		auto channels = json["list"][0]["channels"];
+		auto plugins = json["list"][0]["plugins"];
+		auto events = json["list"][0]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s0"));
+		BOOST_TEST(json_util::contains(channels, "c0"));
+		BOOST_TEST(json_util::contains(plugins, "p0"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][0]["action"].get<std::string>() == "drop");
+	}
+
+	// Rule 1.
+	{
+		auto servers = json["list"][1]["servers"];
+		auto channels = json["list"][1]["channels"];
+		auto plugins = json["list"][1]["plugins"];
+		auto events = json["list"][1]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s1"));
+		BOOST_TEST(json_util::contains(channels, "c1"));
+		BOOST_TEST(json_util::contains(plugins, "p1"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][1]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 2.
+	{
+		auto servers = json["list"][2]["servers"];
+		auto channels = json["list"][2]["channels"];
+		auto plugins = json["list"][2]["plugins"];
+		auto events = json["list"][2]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s2"));
+		BOOST_TEST(json_util::contains(channels, "c2"));
+		BOOST_TEST(json_util::contains(plugins, "p2"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][2]["action"].get<std::string>() == "accept");
+	}
+}
+
+BOOST_AUTO_TEST_CASE(beyond)
+{
+	request({
+		{ "command",    "rule-move" },
+		{ "from",       0           },
+		{ "to",         123         }
+	});
+
+	const auto [json, code] = request({{ "command", "rule-list" }});
+
+	BOOST_TEST(!code);
+	BOOST_TEST(json.is_object());
+
+	// Rule 1.
+	{
+		auto servers = json["list"][0]["servers"];
+		auto channels = json["list"][0]["channels"];
+		auto plugins = json["list"][0]["plugins"];
+		auto events = json["list"][0]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s1"));
+		BOOST_TEST(json_util::contains(channels, "c1"));
+		BOOST_TEST(json_util::contains(plugins, "p1"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][0]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 2.
+	{
+		auto servers = json["list"][1]["servers"];
+		auto channels = json["list"][1]["channels"];
+		auto plugins = json["list"][1]["plugins"];
+		auto events = json["list"][1]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s2"));
+		BOOST_TEST(json_util::contains(channels, "c2"));
+		BOOST_TEST(json_util::contains(plugins, "p2"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][1]["action"].get<std::string>() == "accept");
+	}
+
+	// Rule 0.
+	{
+		auto servers = json["list"][2]["servers"];
+		auto channels = json["list"][2]["channels"];
+		auto plugins = json["list"][2]["plugins"];
+		auto events = json["list"][2]["events"];
+
+		BOOST_TEST(json_util::contains(servers, "s0"));
+		BOOST_TEST(json_util::contains(channels, "c0"));
+		BOOST_TEST(json_util::contains(plugins, "p0"));
+		BOOST_TEST(json_util::contains(events, "onMessage"));
+		BOOST_TEST(json["list"][2]["action"].get<std::string>() == "drop");
+	}
+}
+
+BOOST_AUTO_TEST_SUITE(errors)
+
+BOOST_AUTO_TEST_CASE(invalid_index_1_from)
+{
+	const auto [json, code] = request({
+		{ "command",    "rule-move" },
+		{ "from",       -100        },
+		{ "to",         0           }
+	});
+
+	BOOST_TEST(code == rule_error::invalid_index);
+	BOOST_TEST(json["error"].get<int>() == rule_error::invalid_index);
+	BOOST_TEST(json["errorCategory"].get<std::string>() == "rule");
+}
+
+BOOST_AUTO_TEST_CASE(invalid_index_1_to)
+{
+	const auto [json, code] = request({
+		{ "command",    "rule-move" },
+		{ "from",       0           },
+		{ "to",         -100        }
+	});
+
+	BOOST_TEST(code == rule_error::invalid_index);
+	BOOST_TEST(json["error"].get<int>() == rule_error::invalid_index);
+	BOOST_TEST(json["errorCategory"].get<std::string>() == "rule");
+}
+
+BOOST_AUTO_TEST_CASE(invalid_index_2_from)
+{
+	const auto [json, code] = request({
+		{ "command",    "rule-move" },
+		{ "from",       100         },
+		{ "to",         0           }
+	});
+
+	BOOST_TEST(code == rule_error::invalid_index);
+	BOOST_TEST(json["error"].get<int>() == rule_error::invalid_index);
+	BOOST_TEST(json["errorCategory"].get<std::string>() == "rule");
+}
+
+BOOST_AUTO_TEST_CASE(invalid_index_3_from)
+{
+	const auto [json, code] = request({
+		{ "command",    "rule-move" },
+		{ "from",       "notaint"   },
+		{ "to",         0           }
+	});
+
+	BOOST_TEST(code == rule_error::invalid_index);
+	BOOST_TEST(json["error"].get<int>() == rule_error::invalid_index);
+	BOOST_TEST(json["errorCategory"].get<std::string>() == "rule");
+}
+
+BOOST_AUTO_TEST_CASE(invalid_index_3_to)
+{
+	const auto [json, code] = request({
+		{ "command",    "rule-move" },
+		{ "from",       0           },
+		{ "to",         "notaint"   }
+	});
+
+	BOOST_TEST(code == rule_error::invalid_index);
+	BOOST_TEST(json["error"].get<int>() == rule_error::invalid_index);
+	BOOST_TEST(json["errorCategory"].get<std::string>() == "rule");
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+BOOST_AUTO_TEST_SUITE_END()
+
+} // !namespace
+
+} // !irccd