view tests/cmd-plugin-reload/main.cpp @ 488:7e273b7f4f92

Irccd: new coding style, closes #576
author David Demelier <markand@malikania.fr>
date Tue, 26 Sep 2017 17:18:47 +0200
parents c6fbb6e0e06d
children 9b6b0d7d89c6
line wrap: on
line source

/*
 * main.cpp -- test plugin-reload remote command
 *
 * Copyright (c) 2013-2017 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.
 */

#include <command.hpp>
#include <command-tester.hpp>
#include <server-tester.hpp>
#include <service.hpp>
#include <plugin.hpp>

using namespace irccd;

namespace {

bool called = false;

class CustomPlugin : public plugin {
public:
    CustomPlugin()
        : plugin("test", "")
    {
    }

    void on_reload(irccd::irccd &) override
    {
        called = true;
    }
};

class PluginReloadCommandTest : public CommandTester {
public:
    PluginReloadCommandTest()
        : CommandTester(std::make_unique<plugin_reload_command>())
    {
        called = false;
    }
};

TEST_F(PluginReloadCommandTest, basic)
{
    try {
        m_irccd.plugins().add(std::make_unique<CustomPlugin>());
        m_irccdctl.client().request({
            { "command", "plugin-reload" },
            { "plugin", "test" }
        });

        poll([&] () {
            return called;
        });

        ASSERT_TRUE(called);
    } catch (const std::exception &ex) {
        FAIL() << ex.what();
    }
}

TEST_F(PluginReloadCommandTest, notfound)
{
    try {
        auto response = nlohmann::json();

        m_irccdctl.client().onMessage.connect([&] (auto msg) {
            response = msg;
        });
        m_irccdctl.client().request({
            { "command", "plugin-reload" },
            { "plugin", "no" }
        });

        poll([&] () {
            return response.is_object();
        });

        ASSERT_TRUE(response.is_object());
        ASSERT_FALSE(response["status"]);
        ASSERT_EQ("plugin no not found", response["error"]);
    } catch (const std::exception &ex) {
        FAIL() << ex.what();
    }
}

} // !namespace

int main(int argc, char **argv)
{
    testing::InitGoogleTest(&argc, argv);

    return RUN_ALL_TESTS();
}