view tests/js-elapsedtimer/main.cpp @ 577:3d0dbc0bee7d

Irccd: update references to onChannel(Mode|Notice), onMode - Update hangman, logger and their tests, - Update dynlib_plugin and js_plugin.
author David Demelier <markand@malikania.fr>
date Thu, 30 Nov 2017 13:19:38 +0100
parents bf56628e070b
children
line wrap: on
line source

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

#include <thread>

#include <irccd/js/elapsed_timer_jsapi.hpp>

#include <js_test.hpp>

using namespace std::chrono_literals;

namespace irccd {

BOOST_FIXTURE_TEST_SUITE(elapsed_timer_jsapi_suite, js_test<elapsed_timer_jsapi>)

BOOST_AUTO_TEST_CASE(standard)
{
    if (duk_peval_string(plugin_->context(), "timer = new Irccd.ElapsedTimer();") != 0)
        throw dukx_stack(plugin_->context(), -1);

    std::this_thread::sleep_for(300ms);

    if (duk_peval_string(plugin_->context(), "result = timer.elapsed();") != 0)
        throw dukx_stack(plugin_->context(), -1);

    BOOST_REQUIRE(duk_get_global_string(plugin_->context(), "result"));
    BOOST_REQUIRE_GE(duk_get_int(plugin_->context(), -1), 250);
    BOOST_REQUIRE_LE(duk_get_int(plugin_->context(), -1), 350);
}

} // !irccd

BOOST_AUTO_TEST_SUITE_END()