view tests/src/irccdctl/cli-rule-list/main.cpp @ 854:eac2cc421f49

irccdctl: support origins in rule-edit and rule-add, #947
author David Demelier <markand@malikania.fr>
date Wed, 17 Jul 2019 21:06:43 +0200
parents 1399755352e7
children 5e25439fe98d
line wrap: on
line source

/*
 * main.cpp -- test irccdctl rule-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 rule-list"
#include <boost/test/unit_test.hpp>

#include <irccd/test/cli_fixture.hpp>

using irccd::test::cli_fixture;

using irccd::daemon::rule;

namespace irccd {

namespace {

class rule_list_fixture : public cli_fixture {
public:
	rule_list_fixture()
		: cli_fixture(IRCCDCTL_EXECUTABLE)
	{
	}
};

BOOST_FIXTURE_TEST_SUITE(rule_list_suite, rule_list_fixture)

BOOST_AUTO_TEST_CASE(simple)
{
	bot_.get_rules().add({
		{ "s1", "s2" },
		{ "c1", "c2" },
		{ "o1", "o2" },
		{ "p1", "p2" },
		{ "onCommand", "onMessage" },
		rule::action_type::drop
	});
	start();

	const auto [code, out, err] = exec({ "rule-list" });

	BOOST_TEST(!code);
	BOOST_TEST(out.size() == 7U);
	BOOST_TEST(err.size() == 0U);
	BOOST_TEST(out[0]  == "rule:           0");
	BOOST_TEST(out[1]  == "servers:        s1 s2 ");
	BOOST_TEST(out[2]  == "channels:       c1 c2 ");
	BOOST_TEST(out[3]  == "origins:        o1 o2 ");
	BOOST_TEST(out[4]  == "plugins:        p1 p2 ");
	BOOST_TEST(out[5]  == "events:         onCommand onMessage ");
	BOOST_TEST(out[6]  == "action:         drop");
}

BOOST_AUTO_TEST_SUITE_END()

} // !namespace

} // !irccd