view tests/js-timer/main.cpp @ 305:e1e596a75355

Tests: add test for server-info, #559
author David Demelier <markand@malikania.fr>
date Tue, 18 Oct 2016 18:30:45 +0200
parents 7227203a9a70
children 287e9ede5eef
line wrap: on
line source

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

#include <gtest/gtest.h>

#include <irccd/elapsed-timer.hpp>
#include <irccd/irccd.hpp>
#include <irccd/logger.hpp>
#include <irccd/plugin-js.hpp>
#include <irccd/service-plugin.hpp>
#include <irccd/system.hpp>

using namespace irccd;

TEST(Basic, single)
{
    Irccd irccd;
    ElapsedTimer timer;

    auto plugin = std::make_shared<JsPlugin>("timer", IRCCD_TESTS_DIRECTORY "/timer-single.js");

    plugin->onLoad(irccd);
    irccd.plugins().add(plugin);

    while (timer.elapsed() < 3000) {
        util::poller::poll(512, irccd);
        irccd.dispatch();
    }

    ASSERT_TRUE(duk_get_global_string(plugin->context(), "count"));
    ASSERT_EQ(1, duk_get_int(plugin->context(), -1));
}

TEST(Basic, repeat)
{
    Irccd irccd;
    ElapsedTimer timer;

    auto plugin = std::make_shared<JsPlugin>("timer", IRCCD_TESTS_DIRECTORY "/timer-repeat.js");

    plugin->onLoad(irccd);
    irccd.plugins().add(plugin);

    while (timer.elapsed() < 3000) {
        util::poller::poll(512, irccd);
        irccd.dispatch();
    }

    ASSERT_TRUE(duk_get_global_string(plugin->context(), "count"));
    ASSERT_GE(duk_get_int(plugin->context(), -1), 5);
}

#if 0

/*
 * XXX: currently disabled because it will break single-shot timers.
 */

TEST(Basic, pending)
{
    /*
     * This test ensure that if pending actions on a stopped timer are never executed.
     */
    Irccd irccd;
    ElapsedTimer timer;

    auto plugin = std::make_shared<Plugin>("timer", IRCCD_TESTS_DIRECTORY "/timer-pending.js");

    irccd.addPlugin(plugin);
    irccd.poll();
    irccd.dispatch();

    ASSERT_EQ(0, plugin->context().getGlobal<int>("count"));
}

#endif

int main(int argc, char **argv)
{
    // Needed for some components.
    sys::setProgramName("irccd");
    path::setApplicationPath(argv[0]);
    log::setLogger(std::make_unique<log::SilentLogger>());
    log::setVerbose(true);
    testing::InitGoogleTest(&argc, argv);

    return RUN_ALL_TESTS();
}