view tests/cmd-server-notice/main.cpp @ 473:d5bfaf362ded release-2.2

Added tag 2.2.0 for changeset 76aaaf7cd5a3
author David Demelier <markand@malikania.fr>
date Tue, 26 Sep 2017 12:33:59 +0200
parents c6fbb6e0e06d
children 7e273b7f4f92
line wrap: on
line source

/*
 * main.cpp -- test server-notice 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>

using namespace irccd;
using namespace irccd::command;

namespace {

std::string channel;
std::string message;

} // !namespace

class ServerNoticeTest : public ServerTester {
public:
    void notice(std::string channel, std::string message) override
    {
        ::channel = channel;
        ::message = message;
    }
};

class ServerNoticeCommandTest : public CommandTester {
public:
    ServerNoticeCommandTest()
        : CommandTester(std::make_unique<ServerNoticeCommand>(),
                        std::make_unique<ServerNoticeTest>())
    {
        m_irccdctl.client().request({
            { "command",    "server-notice" },
            { "server",     "test"          },
            { "target",     "#staff"        },
            { "message",    "quiet!"        }
        });
    }
};

TEST_F(ServerNoticeCommandTest, basic)
{
    try {
        poll([&] () {
            return !channel.empty() && !message.empty();
        });

        ASSERT_EQ("#staff", channel);
        ASSERT_EQ("quiet!", message);
    } catch (const std::exception &ex) {
        FAIL() << ex.what();
    }
}

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

    return RUN_ALL_TESTS();
}