view tests/src/libirccd-js/js-api-timer/main.cpp @ 758:445c071e8efb

Irccd: Javascript API cleanup - Place all related code to `js` namespace, - Import duk.hpp and duk.cpp from libduk.
author David Demelier <markand@malikania.fr>
date Thu, 09 Aug 2018 13:07:19 +0200
parents tests/src/libirccd-js/jsapi-timer/main.cpp@97b356010785
children 35c1517d705d
line wrap: on
line source

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

#include <irccd/test/js_fixture.hpp>

namespace irccd::test {

namespace {

class js_timer_fixture : public js_fixture {
public:
    js_timer_fixture()
        : js_fixture(CMAKE_CURRENT_SOURCE_DIR "/timer.js")
    {
    }

    void set_type(const std::string& name)
    {
        duk_get_global_string(plugin_->get_context(), "Irccd");
        duk_get_prop_string(plugin_->get_context(), -1, "Timer");
        duk_get_prop_string(plugin_->get_context(), -1, name.c_str());
        duk_put_global_string(plugin_->get_context(), "type");
        duk_pop_n(plugin_->get_context(), 2);

        plugin_->open();
        plugin_->handle_load(irccd_);
    }
};

BOOST_FIXTURE_TEST_SUITE(js_timer_api_suite, js_timer_fixture)

BOOST_AUTO_TEST_CASE(single)
{
    boost::timer::cpu_timer timer;

    set_type("Single");

    while (timer.elapsed().wall / 1000000LL < 3000) {
        ctx_.reset();
        ctx_.poll();
    }

    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "count"));
    BOOST_TEST(duk_get_int(plugin_->get_context(), -1) == 1);
}

BOOST_AUTO_TEST_CASE(repeat)
{
    boost::timer::cpu_timer timer;

    set_type("Repeat");

    while (timer.elapsed().wall / 1000000LL < 3000) {
        ctx_.reset();
        ctx_.poll();
    }

    BOOST_TEST(duk_get_global_string(plugin_->get_context(), "count"));
    BOOST_TEST(duk_get_int(plugin_->get_context(), -1) >= 5);
}

BOOST_AUTO_TEST_SUITE_END()

} // !namespace

} // !irccd::test