20 lines
481 B
Python
20 lines
481 B
Python
from icingabeat import BaseTest
|
|
|
|
import os
|
|
|
|
|
|
class Test(BaseTest):
|
|
|
|
def test_base(self):
|
|
"""
|
|
Basic test with exiting Icingabeat normally
|
|
"""
|
|
self.render_config_template(
|
|
path=os.path.abspath(self.working_dir) + "/log/*"
|
|
)
|
|
|
|
icingabeat_proc = self.start_beat()
|
|
self.wait_until(lambda: self.log_contains("icingabeat is running"))
|
|
exit_code = icingabeat_proc.kill_and_wait()
|
|
assert exit_code == 0
|