Files
infix/test/case/ietf_syslog/basic/test.py
T
Mattias Walström e4e7dbd714 tests: Add test specification
Add minor changes in all testscripts, to add name and description
Add generated test specification
Add generated topology image
2024-09-06 10:18:16 +02:00

70 lines
2.4 KiB
Python
Executable File

#!/usr/bin/env python3
"""
Syslog Basic
- Add syslog actions to log to local files
- Verify new log files have been created
"""
import infamy
import infamy.ssh as ssh
with infamy.Test() as test:
with test.step("Initializing ..."):
env = infamy.Env()
target = env.attach("target", "mgmt")
tgtssh = env.attach("target", "mgmt", "ssh")
factory = env.get_password("target")
address = target.get_mgmt_ip()
with test.step("Add new syslog file action"):
target.put_config_dict("ietf-syslog", {
"syslog": {
"actions": {
"file": {
"log-file": [
{
"name": "file:foo",
"facility-filter": {
"facility-list": [
{
"facility": "auth",
"severity": "info"
},
{
"facility": "authpriv",
"severity": "debug"
}
]
}
},
{
"name": "file:/log/bar.log",
"facility-filter": {
"facility-list": [
{
"facility": "all",
"severity": "critical"
},
{
"facility": "mail",
"severity": "warning"
}
]
}
}
]
}
}
}
})
with test.step("Verify log files have been created ..."):
user = tgtssh.runsh("ls /var/log/{foo,bar.log}").stdout
if "/var/log/foo" not in user:
test.fail()
if "/var/log/bar.log" not in user:
test.fail()
test.succeed()