view tests/src/libirccd-js/js-api-timer/main.cpp @ 824:06cc2f95f479

misc: happy new year!
author David Demelier <markand@malikania.fr>
date Tue, 08 Jan 2019 20:41:20 +0100
parents 8460b4a34191
children 5e25439fe98d
line wrap: on
line source

/*
 * main.cpp -- test Irccd.Timer API
 *
 * Copyright (c) 2013-2019 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>

using namespace irccd::test;

namespace irccd {

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(bot_);
	}
};

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