view tests/src/plugins/auth/main.cpp @ 628:27587ff92a64

Misc: update copyrights
author David Demelier <markand@malikania.fr>
date Tue, 09 Jan 2018 14:06:40 +0100
parents 9fbd1700435b
children 152d20dc0e74
line wrap: on
line source

/*
 * main.cpp -- test auth plugin
 *
 * Copyright (c) 2013-2018 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/daemon/irccd.hpp>
#include <irccd/daemon/server.hpp>

#include <irccd/test/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>(service_, "nickserv1"))
        , nickserv2_(std::make_shared<journal_server>(service_, "nickserv2"))
        , quakenet_(std::make_shared<journal_server>(service_, "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