view tests/src/libirccd-js/jsapi-irccd/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 27587ff92a64
children a059100b73dc
line wrap: on
line source

/*
 * main.cpp -- test Irccd API
 *
 * 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 "Irccd Javascript API"
#include <boost/test/unit_test.hpp>

#include <irccd/test/js_test.hpp>

namespace irccd {

BOOST_FIXTURE_TEST_SUITE(irccd_jsapi_suite, js_test<irccd_jsapi>)

BOOST_AUTO_TEST_CASE(version)
{
    auto ret = duk_peval_string(plugin_->context(),
        "major = Irccd.version.major;"
        "minor = Irccd.version.minor;"
        "patch = Irccd.version.patch;"
    );

    if (ret != 0)
        throw dukx_stack(plugin_->context(), -1);

    BOOST_TEST(duk_get_global_string(plugin_->context(), "major"));
    BOOST_TEST(IRCCD_VERSION_MAJOR == duk_get_int(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "minor"));
    BOOST_TEST(IRCCD_VERSION_MINOR == duk_get_int(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "patch"));
    BOOST_TEST(IRCCD_VERSION_PATCH == duk_get_int(plugin_->context(), -1));
}

BOOST_AUTO_TEST_CASE(from_javascript)
{
    auto ret = duk_peval_string(plugin_->context(),
        "try {"
        "  throw new Irccd.SystemError(1, 'test');"
        "} catch (e) {"
        "  errno = e.errno;"
        "  name = e.name;"
        "  message = e.message;"
        "  v1 = (e instanceof Error);"
        "  v2 = (e instanceof Irccd.SystemError);"
        "}"
    );

    if (ret != 0)
        throw dukx_stack(plugin_->context(), -1);

    BOOST_TEST(duk_get_global_string(plugin_->context(), "errno"));
    BOOST_TEST(1 == duk_get_int(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "name"));
    BOOST_TEST("SystemError" == duk_get_string(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "message"));
    BOOST_TEST("test" == duk_get_string(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "v1"));
    BOOST_TEST(duk_get_boolean(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "v2"));
    BOOST_TEST(duk_get_boolean(plugin_->context(), -1));
}

BOOST_AUTO_TEST_CASE(from_native)
{
    duk_push_c_function(plugin_->context(), [] (duk_context *ctx) -> duk_ret_t {
        dukx_throw(ctx, system_error(EINVAL, "hey"));

        return 0;
    }, 0);

    duk_put_global_string(plugin_->context(), "f");

    auto ret = duk_peval_string(plugin_->context(),
        "try {"
        "  f();"
        "} catch (e) {"
        "  errno = e.errno;"
        "  name = e.name;"
        "  message = e.message;"
        "  v1 = (e instanceof Error);"
        "  v2 = (e instanceof Irccd.SystemError);"
        "}"
    );

    if (ret != 0)
        throw dukx_stack(plugin_->context(), -1);

    BOOST_TEST(duk_get_global_string(plugin_->context(), "errno"));
    BOOST_TEST(EINVAL == duk_get_int(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "name"));
    BOOST_TEST("SystemError" == duk_get_string(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "message"));
    BOOST_TEST("hey" == duk_get_string(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "v1"));
    BOOST_TEST(duk_get_boolean(plugin_->context(), -1));
    BOOST_TEST(duk_get_global_string(plugin_->context(), "v2"));
    BOOST_TEST(duk_get_boolean(plugin_->context(), -1));
}

BOOST_AUTO_TEST_SUITE_END()

} // !irccd