view tests/src/irccdctl/cli-plugin-load/main.cpp @ 662:e9153b85b9bd

Tests: test irccdctl (plugin-* commands) #785 While here, fix many commands that were throwing invalid_message because of missing 'command' JSON property.
author David Demelier <markand@malikania.fr>
date Thu, 29 Mar 2018 09:13:51 +0200
parents
children a4082de4e94e
line wrap: on
line source

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

#include <irccd/test/cli_test.hpp>

namespace irccd {

BOOST_FIXTURE_TEST_SUITE(plugin_load_suite, cli_test)

BOOST_AUTO_TEST_CASE(simple)
{
    run_irccd("irccd-plugins.conf");

    // Load a plugin first.
    {
        const auto result = run_irccdctl({ "plugin-load", "test-cli-plugin-load" });

        BOOST_TEST(result.first.size() == 0U);
        BOOST_TEST(result.second.size() == 0U);
    }

    // Get the new list of plugins.
    {
        const auto result = run_irccdctl({ "plugin-list" });

    BOOST_TEST(result.first.size() == 4U);
    BOOST_TEST(result.second.size() == 0U);
    BOOST_TEST(result.first[0] == "foo");
    BOOST_TEST(result.first[1] == "bar");
    BOOST_TEST(result.first[2] == "test-cli-plugin-load");
    }
}

BOOST_AUTO_TEST_SUITE_END()

} // !irccd