Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
417
Issues
417
List
Boards
Labels
Service Desk
Milestones
Merge Requests
67
Merge Requests
67
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
Kea
Commits
58859405
Commit
58859405
authored
Feb 28, 2017
by
Marcin Siodelski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[5107] Renamed ctrl_agent_* to ca_* and unittest to unittests.
parent
c362eac0
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
93 additions
and
93 deletions
+93
-93
configure.ac
configure.ac
+1
-1
src/bin/agent/.gitignore
src/bin/agent/.gitignore
+2
-2
src/bin/agent/Makefile.am
src/bin/agent/Makefile.am
+14
-14
src/bin/agent/ca_cfg_mgr.cc
src/bin/agent/ca_cfg_mgr.cc
+2
-2
src/bin/agent/ca_cfg_mgr.h
src/bin/agent/ca_cfg_mgr.h
+0
-0
src/bin/agent/ca_command_mgr.cc
src/bin/agent/ca_command_mgr.cc
+1
-1
src/bin/agent/ca_command_mgr.h
src/bin/agent/ca_command_mgr.h
+0
-0
src/bin/agent/ca_controller.cc
src/bin/agent/ca_controller.cc
+2
-2
src/bin/agent/ca_controller.h
src/bin/agent/ca_controller.h
+0
-0
src/bin/agent/ca_log.cc
src/bin/agent/ca_log.cc
+2
-2
src/bin/agent/ca_log.h
src/bin/agent/ca_log.h
+2
-2
src/bin/agent/ca_messages.mes
src/bin/agent/ca_messages.mes
+0
-0
src/bin/agent/ca_process.cc
src/bin/agent/ca_process.cc
+3
-3
src/bin/agent/ca_process.h
src/bin/agent/ca_process.h
+2
-2
src/bin/agent/ca_response_creator.cc
src/bin/agent/ca_response_creator.cc
+2
-2
src/bin/agent/ca_response_creator.h
src/bin/agent/ca_response_creator.h
+1
-1
src/bin/agent/ca_response_creator_factory.h
src/bin/agent/ca_response_creator_factory.h
+1
-1
src/bin/agent/main.cc
src/bin/agent/main.cc
+2
-2
src/bin/agent/tests/.gitignore
src/bin/agent/tests/.gitignore
+2
-2
src/bin/agent/tests/Makefile.am
src/bin/agent/tests/Makefile.am
+41
-41
src/bin/agent/tests/ca_cfg_mgr_unittests.cc
src/bin/agent/tests/ca_cfg_mgr_unittests.cc
+2
-2
src/bin/agent/tests/ca_command_mgr_unittests.cc
src/bin/agent/tests/ca_command_mgr_unittests.cc
+1
-1
src/bin/agent/tests/ca_controller_unittests.cc
src/bin/agent/tests/ca_controller_unittests.cc
+3
-3
src/bin/agent/tests/ca_process_tests.sh.in
src/bin/agent/tests/ca_process_tests.sh.in
+0
-0
src/bin/agent/tests/ca_process_unittests.cc
src/bin/agent/tests/ca_process_unittests.cc
+3
-3
src/bin/agent/tests/ca_response_creator_factory_unittests.cc
src/bin/agent/tests/ca_response_creator_factory_unittests.cc
+2
-2
src/bin/agent/tests/ca_response_creator_unittests.cc
src/bin/agent/tests/ca_response_creator_unittests.cc
+2
-2
src/bin/agent/tests/ca_unittests.cc
src/bin/agent/tests/ca_unittests.cc
+0
-0
src/bin/agent/tests/parser_unittests.cc
src/bin/agent/tests/parser_unittests.cc
+0
-0
No files found.
configure.ac
View file @
58859405
...
...
@@ -1601,7 +1601,7 @@ AC_CONFIG_FILES([compatcheck/Makefile
src/bin/Makefile
src/bin/agent/Makefile
src/bin/agent/tests/Makefile
src/bin/agent/tests/c
trl_agent
_process_tests.sh
src/bin/agent/tests/c
a
_process_tests.sh
src/bin/d2/Makefile
src/bin/d2/tests/Makefile
src/bin/d2/tests/d2_process_tests.sh
...
...
src/bin/agent/.gitignore
View file @
58859405
/kea-ctrl-agent
/c
trl_agent
_messages.cc
/c
trl_agent
_messages.h
/c
a
_messages.cc
/c
a
_messages.h
/s-messages
/kea-ctrl-agent.8
src/bin/agent/Makefile.am
View file @
58859405
...
...
@@ -9,7 +9,7 @@ if USE_STATIC_LINK
AM_LDFLAGS
=
-static
endif
CLEANFILES
=
*
.gcno
*
.gcda c
trl_agent_messages.h ctrl_agent
_messages.cc s-messages
CLEANFILES
=
*
.gcno
*
.gcda c
a_messages.h ca
_messages.cc s-messages
man_MANS
=
kea-ctrl-agent.8
DISTCLEANFILES
=
$(man_MANS)
...
...
@@ -29,13 +29,13 @@ $(man_MANS):
endif
c
trl_agent_messages.h ctrl_agent
_messages.cc
:
s-messages
c
a_messages.h ca
_messages.cc
:
s-messages
s-messages
:
c
trl_agent
_messages.mes
$(top_builddir)
/src/lib/log/compiler/kea-msg-compiler
$(top_srcdir)
/src/bin/agent/c
trl_agent
_messages.mes
s-messages
:
c
a
_messages.mes
$(top_builddir)
/src/lib/log/compiler/kea-msg-compiler
$(top_srcdir)
/src/bin/agent/c
a
_messages.mes
touch
$@
BUILT_SOURCES
=
c
trl_agent_messages.h ctrl_agent
_messages.cc
BUILT_SOURCES
=
c
a_messages.h ca
_messages.cc
# convenience archive
...
...
@@ -44,17 +44,17 @@ noinst_LTLIBRARIES = libagent.la
libagent_la_SOURCES
=
agent_parser.cc agent_parser.h
libagent_la_SOURCES
+=
agent_lexer.cc
libagent_la_SOURCES
+=
c
trl_agent_cfg_mgr.cc ctrl_agent
_cfg_mgr.h
libagent_la_SOURCES
+=
c
trl_agent_controller.cc ctrl_agent
_controller.h
libagent_la_SOURCES
+=
c
trl_agent_command_mgr.cc ctrl_agent
_command_mgr.h
libagent_la_SOURCES
+=
c
trl_agent_log.cc ctrl_agent
_log.h
libagent_la_SOURCES
+=
c
trl_agent_process.cc ctrl_agent
_process.h
libagent_la_SOURCES
+=
c
trl_agent_response_creator.cc ctrl_agent
_response_creator.h
libagent_la_SOURCES
+=
c
trl_agent
_response_creator_factory.h
libagent_la_SOURCES
+=
c
a_cfg_mgr.cc ca
_cfg_mgr.h
libagent_la_SOURCES
+=
c
a_controller.cc ca
_controller.h
libagent_la_SOURCES
+=
c
a_command_mgr.cc ca
_command_mgr.h
libagent_la_SOURCES
+=
c
a_log.cc ca
_log.h
libagent_la_SOURCES
+=
c
a_process.cc ca
_process.h
libagent_la_SOURCES
+=
c
a_response_creator.cc ca
_response_creator.h
libagent_la_SOURCES
+=
c
a
_response_creator_factory.h
libagent_la_SOURCES
+=
parser_context.cc parser_context.h parser_context_decl.h
nodist_libagent_la_SOURCES
=
c
trl_agent_messages.h ctrl_agent
_messages.cc
EXTRA_DIST
+=
c
trl_agent
_messages.mes
nodist_libagent_la_SOURCES
=
c
a_messages.h ca
_messages.cc
EXTRA_DIST
+=
c
a
_messages.mes
EXTRA_DIST
+=
agent_lexer.ll
EXTRA_DIST
+=
agent_parser.yy
...
...
src/bin/agent/c
trl_agent
_cfg_mgr.cc
→
src/bin/agent/c
a
_cfg_mgr.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <config.h>
#include <agent/c
trl_agent
_cfg_mgr.h>
#include <agent/c
a
_cfg_mgr.h>
using
namespace
isc
::
dhcp
;
using
namespace
isc
::
process
;
...
...
src/bin/agent/c
trl_agent
_cfg_mgr.h
→
src/bin/agent/c
a
_cfg_mgr.h
View file @
58859405
File moved
src/bin/agent/c
trl_agent
_command_mgr.cc
→
src/bin/agent/c
a
_command_mgr.cc
View file @
58859405
...
...
@@ -4,7 +4,7 @@
// 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/.
#include <agent/c
trl_agent
_command_mgr.h>
#include <agent/c
a
_command_mgr.h>
#include <cc/data.h>
#include <boost/pointer_cast.hpp>
...
...
src/bin/agent/c
trl_agent
_command_mgr.h
→
src/bin/agent/c
a
_command_mgr.h
View file @
58859405
File moved
src/bin/agent/c
trl_agent
_controller.cc
→
src/bin/agent/c
a
_controller.cc
View file @
58859405
...
...
@@ -6,8 +6,8 @@
#include <config.h>
#include <agent/c
trl_agent
_controller.h>
#include <agent/c
trl_agent
_process.h>
#include <agent/c
a
_controller.h>
#include <agent/c
a
_process.h>
using
namespace
isc
::
process
;
...
...
src/bin/agent/c
trl_agent
_controller.h
→
src/bin/agent/c
a
_controller.h
View file @
58859405
File moved
src/bin/agent/c
trl_agent
_log.cc
→
src/bin/agent/c
a
_log.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <agent/c
trl_agent
_log.h>
#include <agent/c
a
_log.h>
namespace
isc
{
namespace
agent
{
...
...
src/bin/agent/c
trl_agent
_log.h
→
src/bin/agent/c
a
_log.h
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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
...
...
@@ -9,7 +9,7 @@
#include <log/logger_support.h>
#include <log/macros.h>
#include <agent/c
trl_agent
_messages.h>
#include <agent/c
a
_messages.h>
namespace
isc
{
namespace
agent
{
...
...
src/bin/agent/c
trl_agent
_messages.mes
→
src/bin/agent/c
a
_messages.mes
View file @
58859405
File moved
src/bin/agent/c
trl_agent
_process.cc
→
src/bin/agent/c
a
_process.cc
View file @
58859405
...
...
@@ -5,9 +5,9 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <agent/c
trl_agent
_process.h>
#include <agent/c
trl_agent
_response_creator_factory.h>
#include <agent/c
trl_agent
_log.h>
#include <agent/c
a
_process.h>
#include <agent/c
a
_response_creator_factory.h>
#include <agent/c
a
_log.h>
#include <asiolink/io_address.h>
#include <cc/command_interpreter.h>
#include <http/listener.h>
...
...
src/bin/agent/c
trl_agent
_process.h
→
src/bin/agent/c
a
_process.h
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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
...
...
@@ -7,7 +7,7 @@
#ifndef CTRL_AGENT_PROCESS_H
#define CTRL_AGENT_PROCESS_H
#include <agent/c
trl_agent
_cfg_mgr.h>
#include <agent/c
a
_cfg_mgr.h>
#include <process/d_process.h>
namespace
isc
{
...
...
src/bin/agent/c
trl_agent
_response_creator.cc
→
src/bin/agent/c
a
_response_creator.cc
View file @
58859405
...
...
@@ -4,8 +4,8 @@
// 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/.
#include <agent/c
trl_agent
_command_mgr.h>
#include <agent/c
trl_agent
_response_creator.h>
#include <agent/c
a
_command_mgr.h>
#include <agent/c
a
_response_creator.h>
#include <cc/data.h>
#include <http/post_request_json.h>
#include <http/response_json.h>
...
...
src/bin/agent/c
trl_agent
_response_creator.h
→
src/bin/agent/c
a
_response_creator.h
View file @
58859405
...
...
@@ -7,7 +7,7 @@
#ifndef CTRL_AGENT_RESPONSE_CREATOR_H
#define CTRL_AGENT_RESPONSE_CREATOR_H
#include <agent/c
trl_agent
_command_mgr.h>
#include <agent/c
a
_command_mgr.h>
#include <http/response_creator.h>
#include <boost/shared_ptr.hpp>
...
...
src/bin/agent/c
trl_agent
_response_creator_factory.h
→
src/bin/agent/c
a
_response_creator_factory.h
View file @
58859405
...
...
@@ -7,7 +7,7 @@
#ifndef CTRL_AGENT_RESPONSE_CREATOR_FACTORY_H
#define CTRL_AGENT_RESPONSE_CREATOR_FACTORY_H
#include <agent/c
trl_agent
_response_creator.h>
#include <agent/c
a
_response_creator.h>
#include <http/response_creator_factory.h>
namespace
isc
{
...
...
src/bin/agent/main.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <config.h>
#include <agent/c
trl_agent
_controller.h>
#include <agent/c
a
_controller.h>
#include <exceptions/exceptions.h>
#include <cstdlib>
#include <iostream>
...
...
src/bin/agent/tests/.gitignore
View file @
58859405
/c
trl_agent_unittest
/c
trl_agent
_process_tests.sh
/c
a_unittests
/c
a
_process_tests.sh
src/bin/agent/tests/Makefile.am
View file @
58859405
SHTESTS
=
# The test of dynamic reconfiguration based on signals will work only
# if we are using file based configuration approach.
SHTESTS
+=
c
trl_agent
_process_tests.sh
SHTESTS
+=
c
a
_process_tests.sh
noinst_SCRIPTS
=
c
trl_agent
_process_tests.sh
noinst_SCRIPTS
=
c
a
_process_tests.sh
EXTRA_DIST
=
c
trl_agent
_process_tests.sh.in
EXTRA_DIST
=
c
a
_process_tests.sh.in
# test using command-line arguments, so use check-local target instead of TESTS
check-local
:
...
...
@@ -26,7 +26,7 @@ AM_CPPFLAGS += -DCFG_EXAMPLES=\"$(abs_top_srcdir)/doc/examples/agent\"
CLEANFILES
=
$(builddir)
/interfaces.txt
$(builddir)
/logger_lockfile
DISTCLEANFILES
=
c
trl_agent
_process_tests.sh
DISTCLEANFILES
=
c
a
_process_tests.sh
AM_CXXFLAGS
=
$(KEA_CXXFLAGS)
...
...
@@ -40,43 +40,43 @@ TESTS_ENVIRONMENT = \
TESTS
=
if
HAVE_GTEST
TESTS
+=
c
trl_agent_unittest
c
trl_agent_unittest_SOURCES
=
ctrl_agent_cfg_mgr_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_command_mgr_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_controller_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_process_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_response_creator_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_response_creator_factory_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
ctrl_agent_unittest
.cc
c
trl_agent_unittest_SOURCES
+=
parser_unittest
.cc
c
trl_agent_unittest
_CPPFLAGS
=
$(AM_CPPFLAGS)
$(GTEST_INCLUDES)
c
trl_agent_unittest
_LDFLAGS
=
$(AM_LDFLAGS)
$(CRYPTO_LDFLAGS)
$(GTEST_LDFLAGS)
c
trl_agent_unittest
_LDADD
=
$(top_builddir)
/src/bin/agent/libagent.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/process/testutils/libprocesstest.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/cfgrpt/libcfgrpt.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/process/libkea-process.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/dhcpsrv/libkea-dhcpsrv.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/eval/libkea-eval.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/dhcp_ddns/libkea-dhcp_ddns.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/stats/libkea-stats.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/config/libkea-cfgclient.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/dhcp/libkea-dhcp++.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/http/libkea-http.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/asiolink/libkea-asiolink.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/cc/libkea-cc.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/dns/libkea-dns++.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/cryptolink/libkea-cryptolink.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/hooks/libkea-hooks.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/log/libkea-log.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/util/threads/libkea-threads.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/testutils/libkea-testutils.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/util/libkea-util.la
c
trl_agent_unittest
_LDADD
+=
$(top_builddir)
/src/lib/exceptions/libkea-exceptions.la
c
trl_agent_unittest
_LDADD
+=
$(LOG4CPLUS_LIBS)
$(CRYPTO_LIBS)
c
trl_agent_unittest
_LDADD
+=
$(BOOST_LIBS)
$(GTEST_LDADD)
TESTS
+=
c
a_unittests
c
a_unittests_SOURCES
=
ca_cfg_mgr_unittests
.cc
c
a_unittests_SOURCES
+=
ca_command_mgr_unittests
.cc
c
a_unittests_SOURCES
+=
ca_controller_unittests
.cc
c
a_unittests_SOURCES
+=
ca_process_unittests
.cc
c
a_unittests_SOURCES
+=
ca_response_creator_unittests
.cc
c
a_unittests_SOURCES
+=
ca_response_creator_factory_unittests
.cc
c
a_unittests_SOURCES
+=
ca_unittests
.cc
c
a_unittests_SOURCES
+=
parser_unittests
.cc
c
a_unittests
_CPPFLAGS
=
$(AM_CPPFLAGS)
$(GTEST_INCLUDES)
c
a_unittests
_LDFLAGS
=
$(AM_LDFLAGS)
$(CRYPTO_LDFLAGS)
$(GTEST_LDFLAGS)
c
a_unittests
_LDADD
=
$(top_builddir)
/src/bin/agent/libagent.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/process/testutils/libprocesstest.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/cfgrpt/libcfgrpt.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/process/libkea-process.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/dhcpsrv/libkea-dhcpsrv.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/eval/libkea-eval.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/dhcp_ddns/libkea-dhcp_ddns.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/stats/libkea-stats.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/config/libkea-cfgclient.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/dhcp/libkea-dhcp++.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/http/libkea-http.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/asiolink/libkea-asiolink.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/cc/libkea-cc.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/dns/libkea-dns++.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/cryptolink/libkea-cryptolink.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/hooks/libkea-hooks.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/log/libkea-log.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/util/threads/libkea-threads.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/testutils/libkea-testutils.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/util/libkea-util.la
c
a_unittests
_LDADD
+=
$(top_builddir)
/src/lib/exceptions/libkea-exceptions.la
c
a_unittests
_LDADD
+=
$(LOG4CPLUS_LIBS)
$(CRYPTO_LIBS)
c
a_unittests
_LDADD
+=
$(BOOST_LIBS)
$(GTEST_LDADD)
endif
...
...
src/bin/agent/tests/c
trl_agent_cfg_mgr_unittest
.cc
→
src/bin/agent/tests/c
a_cfg_mgr_unittests
.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <config.h>
#include <agent/c
trl_agent
_cfg_mgr.h>
#include <agent/c
a
_cfg_mgr.h>
#include <process/testutils/d_test_stubs.h>
#include <boost/scoped_ptr.hpp>
#include <gtest/gtest.h>
...
...
src/bin/agent/tests/c
trl_agent_command_mgr_unittest
.cc
→
src/bin/agent/tests/c
a_command_mgr_unittests
.cc
View file @
58859405
...
...
@@ -5,7 +5,7 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <agent/c
trl_agent
_command_mgr.h>
#include <agent/c
a
_command_mgr.h>
#include <cc/command_interpreter.h>
#include <gtest/gtest.h>
...
...
src/bin/agent/tests/c
trl_agent_controller_unittest
.cc
→
src/bin/agent/tests/c
a_controller_unittests
.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <config.h>
#include <agent/c
trl_agent
_controller.h>
#include <agent/c
trl_agent
_process.h>
#include <agent/c
a
_controller.h>
#include <agent/c
a
_process.h>
#include <process/testutils/d_test_stubs.h>
#include <boost/pointer_cast.hpp>
...
...
src/bin/agent/tests/c
trl_agent
_process_tests.sh.in
→
src/bin/agent/tests/c
a
_process_tests.sh.in
View file @
58859405
File moved
src/bin/agent/tests/c
trl_agent_process_unittest
.cc
→
src/bin/agent/tests/c
a_process_unittests
.cc
View file @
58859405
// Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016
-2017
Internet Systems Consortium, Inc. ("ISC")
//
// 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/.
#include <config.h>
#include <agent/c
trl_agent
_cfg_mgr.h>
#include <agent/c
trl_agent
_process.h>
#include <agent/c
a
_cfg_mgr.h>
#include <agent/c
a
_process.h>
#include <asiolink/interval_timer.h>
#include <asiolink/io_service.h>
#include <process/testutils/d_test_stubs.h>
...
...
src/bin/agent/tests/c
trl_agent_response_creator_factory_unittest
.cc
→
src/bin/agent/tests/c
a_response_creator_factory_unittests
.cc
View file @
58859405
...
...
@@ -5,8 +5,8 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <agent/c
trl_agent
_response_creator.h>
#include <agent/c
trl_agent
_response_creator_factory.h>
#include <agent/c
a
_response_creator.h>
#include <agent/c
a
_response_creator_factory.h>
#include <boost/pointer_cast.hpp>
#include <gtest/gtest.h>
...
...
src/bin/agent/tests/c
trl_agent_response_creator_unittest
.cc
→
src/bin/agent/tests/c
a_response_creator_unittests
.cc
View file @
58859405
...
...
@@ -5,8 +5,8 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <agent/c
trl_agent
_command_mgr.h>
#include <agent/c
trl_agent
_response_creator.h>
#include <agent/c
a
_command_mgr.h>
#include <agent/c
a
_response_creator.h>
#include <cc/command_interpreter.h>
#include <http/post_request.h>
#include <http/post_request_json.h>
...
...
src/bin/agent/tests/c
trl_agent_unittest
.cc
→
src/bin/agent/tests/c
a_unittests
.cc
View file @
58859405
File moved
src/bin/agent/tests/parser_unittest.cc
→
src/bin/agent/tests/parser_unittest
s
.cc
View file @
58859405
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment