view tests/cmd-server-mode/main.cpp @ 428:ce1903f4bdb7 release-2.1

Fix #637: check for domain and family options The decision was not clear between the two option names, the documentation stated to use family but the code checked for family. Accept both for compatibility purposes and unify the documentation using the family name. Task: #637 Errata: 20170218
author David Demelier <markand@malikania.fr>
date Sat, 18 Feb 2017 09:08:51 +0100
parents c6fbb6e0e06d
children 7e273b7f4f92
line wrap: on
line source

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

} // !namespace

class ServerModeTest : public ServerTester {
public:
    void mode(std::string mode) override
    {
        ::mode = mode;
    }
};

class ServerModeCommandTest : public CommandTester {
public:
    ServerModeCommandTest()
        : CommandTester(std::make_unique<ServerModeCommand>(),
                        std::make_unique<ServerModeTest>())
    {
        m_irccdctl.client().request({
            { "command",    "server-mode"   },
            { "server",     "test"          },
            { "mode",       "+t"            }
        });
    }
};

TEST_F(ServerModeCommandTest, basic)
{
    try {
        poll([&] () {
            return !mode.empty();
        });

        ASSERT_EQ("+t", mode);
    } catch (const std::exception &ex) {
        FAIL() << ex.what();
    }
}

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

    return RUN_ALL_TESTS();
}