view tests/src/libirccd/command-rule-edit/main.cpp @ 670:95ac3ace1610

Common: introduce new io code To avoid code duplication in accept, connect, reading and writing we add a new set of classes in `io` namespaces located in the following files: - stream.hpp, acceptor.hpp, connector.hpp These classes consist of pure abstract interfaces for I/O. Then we reimplement them in the following files: - socket_stream.hpp, socket_acceptor.hpp, socket_connector.hpp, - tls_stream.hpp, tls_acceptor.hpp, tls_conncetor.hpp (for SSL). This allows future independant connections such as DBus, fifo or any other fancy optional stuff. We also no longer need large class hierarchy such as `connection` for irccdctl controller or transport_server, transport_client classes.
author David Demelier <markand@malikania.fr>
date Tue, 10 Apr 2018 21:20:30 +0200
parents 1081e45b8628
children e8c4ba5ed1c6
line wrap: on
line source

/*
 * main.cpp -- test rule-edit remote command
 *
 * 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 "rule-edit"
#include <boost/test/unit_test.hpp>

#include <irccd/json_util.hpp>

#include <irccd/daemon/command/rule_edit_command.hpp>
#include <irccd/daemon/command/rule_info_command.hpp>
#include <irccd/daemon/service/rule_service.hpp>

#include <irccd/test/command_test.hpp>

namespace irccd {

namespace {

class rule_edit_test : public command_test<rule_edit_command, rule_info_command> {
public:
    rule_edit_test()
    {
        daemon_->rules().add(rule(
            { "s1", "s2" },
            { "c1", "c2" },
            { "o1", "o2" },
            { "p1", "p2" },
            { "onMessage", "onCommand" },
            rule::action::drop
        ));
    }
};

} // !namespace

BOOST_FIXTURE_TEST_SUITE(rule_edit_test_suite, rule_edit_test)

BOOST_AUTO_TEST_CASE(add_server)
{
    request({
        { "command",        "rule-edit"     },
        { "add-servers",    { "new-s3" }    },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["servers"], "new-s3"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(add_channel)
{
    request({
        { "command",        "rule-edit"     },
        { "add-channels",   { "new-c3" }    },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "new-c3"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(add_plugin)
{
    request({
        { "command",        "rule-edit"     },
        { "add-plugins",    { "new-p3" }    },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "new-p3"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(add_event)
{
    request({
        { "command",        "rule-edit"     },
        { "add-events",     { "onQuery" }   },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(json_util::contains(result.first["events"], "onQuery"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(add_event_and_server)
{
    request({
        { "command",        "rule-edit"     },
        { "add-servers",    { "new-s3" }    },
        { "add-events",     { "onQuery" }   },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["servers"], "new-s3"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(json_util::contains(result.first["events"], "onQuery"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(change_action)
{
    request({
        { "command",        "rule-edit"     },
        { "action",         "accept"        },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "accept");
}

BOOST_AUTO_TEST_CASE(remove_server)
{
    request({
        { "command",        "rule-edit"     },
        { "remove-servers", { "s2" }        },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(!json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(remove_channel)
{
    request({
        { "command",        "rule-edit"     },
        { "remove-channels", { "c2" }       },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(!json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(remove_plugin)
{
    request({
        { "command",        "rule-edit"     },
        { "remove-plugins", { "p2" }        },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(!json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(remove_event)
{
    request({
        { "command",        "rule-edit"     },
        { "remove-events",  { "onCommand" } },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(!json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_CASE(remove_event_and_server)
{
    request({
        { "command",        "rule-edit"     },
        { "remove-servers", { "s2" }        },
        { "remove-events",  { "onCommand" } },
        { "index",          0               }
    });

    const auto result = request({
        { "command",        "rule-info"     },
        { "index",          0               }
    });

    BOOST_TEST(result.first.is_object());
    BOOST_TEST(json_util::contains(result.first["servers"], "s1"));
    BOOST_TEST(!json_util::contains(result.first["servers"], "s2"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c1"));
    BOOST_TEST(json_util::contains(result.first["channels"], "c2"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p1"));
    BOOST_TEST(json_util::contains(result.first["plugins"], "p2"));
    BOOST_TEST(json_util::contains(result.first["events"], "onMessage"));
    BOOST_TEST(!json_util::contains(result.first["events"], "onCommand"));
    BOOST_TEST(result.first["action"].get<std::string>() == "drop");
}

BOOST_AUTO_TEST_SUITE(errors)

BOOST_AUTO_TEST_CASE(invalid_index_1)
{
    const auto result = request({
        { "command",    "rule-edit" },
        { "index",      -100        },
        { "action",     "drop"      }
    });

    BOOST_TEST(result.second == rule_error::invalid_index);
    BOOST_TEST(result.first["error"].template get<int>() == rule_error::invalid_index);
    BOOST_TEST(result.first["errorCategory"].template get<std::string>() == "rule");
}

BOOST_AUTO_TEST_CASE(invalid_index_2)
{
    const auto result = request({
        { "command",    "rule-edit" },
        { "index",      100         },
        { "action",     "drop"      }
    });

    BOOST_TEST(result.second == rule_error::invalid_index);
    BOOST_TEST(result.first["error"].template get<int>() == rule_error::invalid_index);
    BOOST_TEST(result.first["errorCategory"].template get<std::string>() == "rule");
}

BOOST_AUTO_TEST_CASE(invalid_index_3)
{
    const auto result = request({
        { "command",    "rule-edit" },
        { "index",      "notaint"   },
        { "action",     "drop"      }
    });

    BOOST_TEST(result.second == rule_error::invalid_index);
    BOOST_TEST(result.first["error"].template get<int>() == rule_error::invalid_index);
    BOOST_TEST(result.first["errorCategory"].template get<std::string>() == "rule");
}

BOOST_AUTO_TEST_CASE(invalid_action)
{
    const auto result = request({
        { "command",    "rule-edit" },
        { "index",      0           },
        { "action",     "unknown"   }
    });

    BOOST_TEST(result.second == rule_error::invalid_action);
    BOOST_TEST(result.first["error"].template get<int>() == rule_error::invalid_action);
    BOOST_TEST(result.first["errorCategory"].template get<std::string>() == "rule");
}

BOOST_AUTO_TEST_SUITE_END()

BOOST_AUTO_TEST_SUITE_END()

} // !irccd