view tests/plugin-auth/main.cpp @ 489:349fe29d86d5

Tests: switch to Boost, closes #680
author David Demelier <markand@malikania.fr>
date Sun, 20 Aug 2017 08:16:39 +0200
parents 7e273b7f4f92
children 68032209609d
line wrap: on
line source

/*
 * main.cpp -- test auth plugin
 *
 * 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.
 */

#define BOOST_TEST_MODULE "Auth plugin"
#include <boost/test/unit_test.hpp>

#include <irccd/irccd.hpp>
#include <irccd/server.hpp>
#include <irccd/service.hpp>

#include "plugin_test.hpp"

namespace irccd {

class auth_test : public plugin_test {
protected:
    std::shared_ptr<journal_server> nickserv1_;
    std::shared_ptr<journal_server> nickserv2_;
    std::shared_ptr<journal_server> quakenet_;

public:
    auth_test()
        : plugin_test(PLUGIN_NAME, PLUGIN_PATH)
        , nickserv1_(std::make_shared<journal_server>("nickserv1"))
        , nickserv2_(std::make_shared<journal_server>("nickserv2"))
        , quakenet_(std::make_shared<journal_server>("quakenet"))
    {
        plugin_->set_config({
            { "nickserv1.type", "nickserv" },
            { "nickserv1.password", "plopation" },
            { "nickserv2.type", "nickserv" },
            { "nickserv2.password", "something" },
            { "nickserv2.username", "jean" },
            { "quakenet.type", "quakenet" },
            { "quakenet.password", "hello" },
            { "quakenet.username", "mario" }
        });
        plugin_->on_load(irccd_);
    }
};

BOOST_FIXTURE_TEST_SUITE(auth_test_suite, auth_test)

BOOST_AUTO_TEST_CASE(nickserv1)
{
    plugin_->on_connect(irccd_, {nickserv1_});

    auto cmd = nickserv1_->cqueue().front();

    BOOST_REQUIRE_EQUAL(cmd["command"].get<std::string>(), "message");
    BOOST_REQUIRE_EQUAL(cmd["target"].get<std::string>(), "NickServ");
    BOOST_REQUIRE_EQUAL(cmd["message"].get<std::string>(), "identify plopation");
}

BOOST_AUTO_TEST_CASE(nickserv2)
{
    plugin_->on_connect(irccd_, {nickserv2_});

    auto cmd = nickserv2_->cqueue().front();

    BOOST_REQUIRE_EQUAL(cmd["command"].get<std::string>(), "message");
    BOOST_REQUIRE_EQUAL(cmd["target"].get<std::string>(), "NickServ");
    BOOST_REQUIRE_EQUAL(cmd["message"].get<std::string>(), "identify jean something");
}

BOOST_AUTO_TEST_CASE(quakenet)
{
    plugin_->on_connect(irccd_, {quakenet_});

    auto cmd = quakenet_->cqueue().front();

    BOOST_REQUIRE_EQUAL(cmd["command"].get<std::string>(), "message");
    BOOST_REQUIRE_EQUAL(cmd["target"].get<std::string>(), "Q@CServe.quakenet.org");
    BOOST_REQUIRE_EQUAL(cmd["message"].get<std::string>(), "AUTH mario hello");
}

BOOST_AUTO_TEST_SUITE_END()

} // !irccd