1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
* Copyright (c) 2020 Balabit
* Copyright (c) 2020 László Várady
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*/
/* this has to come first for modules which include the Python.h header */
#include "python-module.h"
#include <criterion/criterion.h>
#include <criterion/parameterized.h>
#include "libtest/msg_parse_lib.h"
#include "python-helpers.h"
#include "python-ack-tracker.h"
#include "python-bookmark.h"
#include "python-main.h"
#include "python-startup.h"
#include "apphook.h"
#include "cfg.h"
#include "ack-tracker/instant_ack_tracker.h"
static PyObject *_python_main;
static PyObject *_python_main_dict;
MsgFormatOptions parse_options;
static void
_init_python_main(void)
{
PyGILState_STATE gstate = PyGILState_Ensure();
{
_python_main = PyImport_AddModule("__main__");
_python_main_dict = PyModule_GetDict(_python_main);
}
PyGILState_Release(gstate);
}
void
setup(void)
{
app_startup();
init_parse_options_and_load_syslogformat(&parse_options);
_py_init_interpreter(FALSE);
_init_python_main();
}
void
teardown(void)
{
deinit_syslogformat_module();
app_shutdown();
}
TestSuite(python_ack_tracker, .init = setup, .fini = teardown);
static PyObject *
ack_callback(PyObject *self, PyObject *args)
{
Py_RETURN_NONE;
}
static PyMethodDef test_ack_callback =
{
"ack_callback", ack_callback, METH_VARARGS, "Test ack callback"
};
struct AckTrackerFactoryTestParams
{
PyTypeObject *ack_tracker_factory_type;
AckTrackerType expected_ack_tracker_type;
};
Test(python_ack_tracker, test_instant_ack_tracker_factory)
{
PyGILState_STATE gstate = PyGILState_Ensure();
PyObject *factory_args = Py_BuildValue("(N)", PyCFunction_New(&test_ack_callback, NULL));
PyObject *py_ack_tracker_factory_obj = PyObject_CallObject((PyObject *) &py_instant_ack_tracker_factory_type,
factory_args);
Py_XDECREF(factory_args);
cr_assert_not_null(py_ack_tracker_factory_obj);
cr_assert(py_is_ack_tracker_factory(py_ack_tracker_factory_obj));
PyAckTrackerFactory *py_ack_tracker_factory = (PyAckTrackerFactory *) py_ack_tracker_factory_obj;
cr_assert_not_null(py_ack_tracker_factory->ack_tracker_factory);
cr_assert_eq(ack_tracker_factory_get_type(py_ack_tracker_factory->ack_tracker_factory),
ACK_INSTANT);
Py_XDECREF(py_ack_tracker_factory);
PyGILState_Release(gstate);
}
Test(python_ack_tracker, test_consecutive_ack_tracker_factory)
{
PyGILState_STATE gstate = PyGILState_Ensure();
PyObject *factory_args = Py_BuildValue("(N)", PyCFunction_New(&test_ack_callback, NULL));
PyObject *py_ack_tracker_factory_obj = PyObject_CallObject((PyObject *) &py_consecutive_ack_tracker_factory_type,
factory_args);
Py_XDECREF(factory_args);
cr_assert_not_null(py_ack_tracker_factory_obj);
cr_assert(py_is_ack_tracker_factory(py_ack_tracker_factory_obj));
PyAckTrackerFactory *py_ack_tracker_factory = (PyAckTrackerFactory *) py_ack_tracker_factory_obj;
cr_assert_not_null(py_ack_tracker_factory->ack_tracker_factory);
cr_assert_eq(ack_tracker_factory_get_type(py_ack_tracker_factory->ack_tracker_factory),
ACK_CONSECUTIVE);
Py_XDECREF(py_ack_tracker_factory);
PyGILState_Release(gstate);
}
|