view tests/cmd-server-topic/main.cpp @ 394:c6fbb6e0e06d

Happy new year!
author David Demelier <markand@malikania.fr>
date Sun, 01 Jan 2017 15:29:41 +0100
parents a6c3d73d9641
children 7e273b7f4f92
line wrap: on
line source

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

} // !namespace

class ServerTopicTest : public ServerTester {
public:
    void topic(std::string channel, std::string topic) override
    {
        ::channel = channel;
        ::topic = topic;
    }
};

class ServerTopicCommandTest : public CommandTester {
public:
    ServerTopicCommandTest()
        : CommandTester(std::make_unique<ServerTopicCommand>(),
                        std::make_unique<ServerTopicTest>())
    {
        m_irccdctl.client().request({
            { "command",    "server-topic"  },
            { "server",     "test"          },
            { "channel",    "#staff"        },
            { "topic",      "new version"   }
        });
    }
};

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

        ASSERT_EQ("#staff", channel);
        ASSERT_EQ("new version", topic);
    } catch (const std::exception &ex) {
        FAIL() << ex.what();
    }
}

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

    return RUN_ALL_TESTS();
}