view tests/js-irccd/main.cpp @ 529:b3a0f61a35fe

Irccdctl: rename module to jsapi, closes #727
author David Demelier <markand@malikania.fr>
date Thu, 16 Nov 2017 23:31:28 +0100
parents 173c52d3120b
children 194162717ec9
line wrap: on
line source

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

#include <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_exception(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_exception(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(fromNative)
{
    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_exception(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