2012-10-03 00:04:58 +04:00
|
|
|
|
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
// Original author: ekr@rtfm.com
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsXPCOM.h"
|
|
|
|
|
|
|
|
// nrappkit includes
|
|
|
|
extern "C" {
|
|
|
|
#include "nr_api.h"
|
|
|
|
#include "async_timer.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "runnable_utils.h"
|
|
|
|
|
|
|
|
#define GTEST_HAS_RTTI 0
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "gtest_utils.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-02-09 21:02:40 +03:00
|
|
|
class TimerTest : public MtransportTest {
|
2012-10-03 00:04:58 +04:00
|
|
|
public:
|
2016-02-09 21:02:40 +03:00
|
|
|
TimerTest() : MtransportTest(), handle_(nullptr), fired_(false) {}
|
|
|
|
virtual ~TimerTest() {}
|
2012-10-03 00:04:58 +04:00
|
|
|
|
|
|
|
int ArmTimer(int timeout) {
|
|
|
|
int ret;
|
|
|
|
|
2016-02-09 21:02:40 +03:00
|
|
|
test_utils_->sts_target()->Dispatch(
|
2015-05-05 23:21:37 +03:00
|
|
|
WrapRunnableRet(&ret, this, &TimerTest::ArmTimer_w, timeout),
|
2012-10-03 00:04:58 +04:00
|
|
|
NS_DISPATCH_SYNC);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-16 16:33:49 +03:00
|
|
|
int ArmCancelTimer(int timeout) {
|
|
|
|
int ret;
|
|
|
|
|
2016-02-09 21:02:40 +03:00
|
|
|
test_utils_->sts_target()->Dispatch(
|
2015-05-05 23:21:37 +03:00
|
|
|
WrapRunnableRet(&ret, this, &TimerTest::ArmCancelTimer_w, timeout),
|
2015-04-16 16:33:49 +03:00
|
|
|
NS_DISPATCH_SYNC);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-10-03 00:04:58 +04:00
|
|
|
int ArmTimer_w(int timeout) {
|
|
|
|
return NR_ASYNC_TIMER_SET(timeout, cb, this, &handle_);
|
|
|
|
}
|
|
|
|
|
2015-04-16 16:33:49 +03:00
|
|
|
int ArmCancelTimer_w(int timeout) {
|
|
|
|
int r;
|
|
|
|
r = ArmTimer_w(timeout);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return CancelTimer_w();
|
|
|
|
}
|
|
|
|
|
2012-10-03 00:04:58 +04:00
|
|
|
int CancelTimer() {
|
|
|
|
int ret;
|
|
|
|
|
2016-02-09 21:02:40 +03:00
|
|
|
test_utils_->sts_target()->Dispatch(
|
2015-05-05 23:21:37 +03:00
|
|
|
WrapRunnableRet(&ret, this, &TimerTest::CancelTimer_w),
|
2012-10-03 00:04:58 +04:00
|
|
|
NS_DISPATCH_SYNC);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CancelTimer_w() {
|
|
|
|
return NR_async_timer_cancel(handle_);
|
|
|
|
}
|
|
|
|
|
2012-11-20 18:12:52 +04:00
|
|
|
int Schedule() {
|
|
|
|
int ret;
|
|
|
|
|
2016-02-09 21:02:40 +03:00
|
|
|
test_utils_->sts_target()->Dispatch(
|
2015-05-05 23:21:37 +03:00
|
|
|
WrapRunnableRet(&ret, this, &TimerTest::Schedule_w),
|
2012-11-20 18:12:52 +04:00
|
|
|
NS_DISPATCH_SYNC);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Schedule_w() {
|
|
|
|
NR_ASYNC_SCHEDULE(cb, this);
|
2015-04-16 16:33:49 +03:00
|
|
|
|
2012-11-20 18:12:52 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 00:04:58 +04:00
|
|
|
static void cb(NR_SOCKET r, int how, void *arg) {
|
|
|
|
std::cerr << "Timer fired " << std::endl;
|
|
|
|
|
|
|
|
TimerTest *t = static_cast<TimerTest *>(arg);
|
|
|
|
|
|
|
|
t->fired_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void *handle_;
|
|
|
|
bool fired_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(TimerTest, SimpleTimer) {
|
|
|
|
ArmTimer(100);
|
|
|
|
ASSERT_TRUE_WAIT(fired_, 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(TimerTest, CancelTimer) {
|
|
|
|
ArmTimer(1000);
|
|
|
|
CancelTimer();
|
|
|
|
PR_Sleep(2000);
|
|
|
|
ASSERT_FALSE(fired_);
|
|
|
|
}
|
|
|
|
|
2015-04-16 16:33:49 +03:00
|
|
|
TEST_F(TimerTest, CancelTimer0) {
|
|
|
|
ArmCancelTimer(0);
|
|
|
|
PR_Sleep(100);
|
|
|
|
ASSERT_FALSE(fired_);
|
|
|
|
}
|
|
|
|
|
2012-11-20 18:12:52 +04:00
|
|
|
TEST_F(TimerTest, ScheduleTest) {
|
|
|
|
Schedule();
|
|
|
|
ASSERT_TRUE_WAIT(fired_, 1000);
|
|
|
|
}
|