Skip to content

Commit

Permalink
Convert check programs in iocore/eventsystem/ into Catch based unit t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
masaori335 committed Aug 26, 2019
1 parent 924c8f9 commit 3952270
Show file tree
Hide file tree
Showing 6 changed files with 189 additions and 167 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ iocore/net/quic/test_QUICType
iocore/net/quic/test_QUICTypeUtil
iocore/net/quic/test_QUICVersionNegotiator
iocore/aio/test_AIO
iocore/eventsystem/test_Buffer
iocore/eventsystem/test_Event
iocore/eventsystem/test_IOBuffer
iocore/eventsystem/test_EventSystem
iocore/eventsystem/test_MIOBufferWriter
iocore/hostdb/test_RefCountCache

Expand Down
32 changes: 14 additions & 18 deletions iocore/eventsystem/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ libinkevent_a_SOURCES = \
UnixEvent.cc \
UnixEventProcessor.cc

check_PROGRAMS = test_Buffer test_Event \
check_PROGRAMS = test_IOBuffer \
test_EventSystem \
test_MIOBufferWriter

test_LD_FLAGS = \
Expand All @@ -85,36 +86,31 @@ test_CPP_FLAGS = \
-I$(abs_top_srcdir)/proxy/logging \
-I$(abs_top_srcdir)/mgmt \
-I$(abs_top_srcdir)/mgmt/utils \
-I$(abs_top_srcdir)/tests/include \
@OPENSSL_INCLUDES@

test_LD_ADD = \
libinkevent.a \
$(top_builddir)/lib/records/librecords_p.a \
$(top_builddir)/mgmt/libmgmt_p.la \
$(top_builddir)/iocore/eventsystem/libinkevent.a \
$(top_builddir)/src/tscore/libtscore.la $(top_builddir)/src/tscpp/util/libtscpputil.la \
$(top_builddir)/src/tscore/libtscore.la \
$(top_builddir)/src/tscpp/util/libtscpputil.la \
$(top_builddir)/proxy/shared/libUglyLogStubs.a \
@HWLOC_LIBS@

test_Buffer_SOURCES = \
test_Buffer.cc

test_Event_SOURCES = \
test_Event.cc

test_Buffer_CPPFLAGS = $(test_CPP_FLAGS)
test_Event_CPPFLAGS = $(test_CPP_FLAGS)

test_Buffer_LDFLAGS = $(test_LD_FLAGS)
test_Event_LDFLAGS = $(test_LD_FLAGS)

test_Buffer_LDADD = $(test_LD_ADD)
test_Event_LDADD = $(test_LD_ADD)
test_EventSystem_SOURCES = unit_tests/test_EventSystem.cc
test_EventSystem_CPPFLAGS = $(test_CPP_FLAGS)
test_EventSystem_LDFLAGS = $(test_LD_FLAGS)
test_EventSystem_LDADD = $(test_LD_ADD)

test_IOBuffer_SOURCES = unit_tests/test_IOBuffer.cc
test_IOBuffer_CPPFLAGS = $(test_CPP_FLAGS)
test_IOBuffer_LDFLAGS = $(test_LD_FLAGS)
test_IOBuffer_LDADD = $(test_LD_ADD)

test_MIOBufferWriter_SOURCES = unit_tests/test_MIOBufferWriter.cc

test_MIOBufferWriter_CPPFLAGS = $(test_CPP_FLAGS) -I$(abs_top_srcdir)/tests/include
test_MIOBufferWriter_CPPFLAGS = $(test_CPP_FLAGS)
test_MIOBufferWriter_LDFLAGS = $(test_LD_FLAGS)
test_MIOBufferWriter_LDADD = $(test_LD_ADD)

Expand Down
64 changes: 0 additions & 64 deletions iocore/eventsystem/test_Buffer.cc

This file was deleted.

83 changes: 0 additions & 83 deletions iocore/eventsystem/test_Event.cc

This file was deleted.

101 changes: 101 additions & 0 deletions iocore/eventsystem/unit_tests/test_EventSystem.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/** @file
Catch based unit tests for EventSystem
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#define CATCH_CONFIG_MAIN
#include "catch.hpp"

#include "I_EventSystem.h"
#include "tscore/I_Layout.h"
#include "tscore/TSSystemState.h"

#include "diags.i"

#define TEST_TIME_SECOND 60
#define TEST_THREADS 2

TEST_CASE("EventSystem", "[iocore]")
{
static int count;

struct alarm_printer : public Continuation {
alarm_printer(ProxyMutex *m) : Continuation(m) { SET_HANDLER(&alarm_printer::dummy_function); }

int
dummy_function(int /* event ATS_UNUSED */, Event * /* e ATS_UNUSED */)
{
ink_atomic_increment((int *)&count, 1);

EThread *e = this_ethread();
printf("thread=%d (%p) count = %d\n", e->id, e, count);

return 0;
}
};

struct process_killer : public Continuation {
process_killer(ProxyMutex *m) : Continuation(m) { SET_HANDLER(&process_killer::kill_function); }

int
kill_function(int /* event ATS_UNUSED */, Event * /* e ATS_UNUSED */)
{
EThread *e = this_ethread();
printf("thread=%d (%p) count is %d\n", e->id, e, count);

REQUIRE(count > 0);
REQUIRE(count <= TEST_TIME_SECOND * TEST_THREADS);

TSSystemState::shut_down_event_system();

return 0;
}
};

alarm_printer *alrm = new alarm_printer(new_ProxyMutex());
process_killer *killer = new process_killer(new_ProxyMutex());
eventProcessor.schedule_in(killer, HRTIME_SECONDS(10));
eventProcessor.schedule_every(alrm, HRTIME_SECONDS(1));

while (!TSSystemState::is_event_system_shut_down()) {
sleep(1);
}
}

struct EventProcessorListener : Catch::TestEventListenerBase {
using TestEventListenerBase::TestEventListenerBase;

void
testRunStarting(Catch::TestRunInfo const &testRunInfo) override
{
Layout::create();
init_diags("", nullptr);
RecProcessInit(RECM_STAND_ALONE);

ink_event_system_init(EVENT_SYSTEM_MODULE_PUBLIC_VERSION);
eventProcessor.start(TEST_THREADS, 1048576); // Hardcoded stacksize at 1MB

EThread *main_thread = new EThread;
main_thread->set_specific();
}
};

CATCH_REGISTER_LISTENER(EventProcessorListener);
72 changes: 72 additions & 0 deletions iocore/eventsystem/unit_tests/test_IOBuffer.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/** @file
Catch based unit tests for IOBuffer
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#define CATCH_CONFIG_MAIN
#include "catch.hpp"

#include "I_EventSystem.h"
#include "tscore/I_Layout.h"

#include "diags.i"

#define TEST_THREADS 1

TEST_CASE("MIOBuffer", "[iocore]")
{
for (unsigned i = 0; i < 100; ++i) {
MIOBuffer *b1 = new_MIOBuffer(default_small_iobuffer_size);
int64_t len1 = b1->write_avail();
IOBufferReader *b1reader = b1->alloc_reader();
b1->fill(len1);
CHECK(b1reader->read_avail() == len1);

MIOBuffer *b2 = new_MIOBuffer(default_large_iobuffer_size);
int64_t len2 = b1->write_avail();
IOBufferReader *b2reader = b2->alloc_reader();
b2->fill(len2);
CHECK(b2reader->read_avail() == len2);

free_MIOBuffer(b2);
free_MIOBuffer(b1);
}
}

struct EventProcessorListener : Catch::TestEventListenerBase {
using TestEventListenerBase::TestEventListenerBase;

void
testRunStarting(Catch::TestRunInfo const &testRunInfo) override
{
Layout::create();
init_diags("", nullptr);
RecProcessInit(RECM_STAND_ALONE);

ink_event_system_init(EVENT_SYSTEM_MODULE_PUBLIC_VERSION);
eventProcessor.start(TEST_THREADS);

EThread *main_thread = new EThread;
main_thread->set_specific();
}
};

CATCH_REGISTER_LISTENER(EventProcessorListener);

0 comments on commit 3952270

Please sign in to comment.