mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-24 17:53:02 +02:00
Let's drop the leading IETF or Infix prefixes from tests. Initially the idea was to mimnic the YANG models, but it's difficult to navigate and does not provide any real benefit to developers or end-users. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
65 lines
2.3 KiB
Python
Executable File
65 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""Syslog Basic
|
|
|
|
Add syslog actions matching on different facility and severity levels to
|
|
log to local files, then verify new log files have been created. In one
|
|
case we use an absolute `file:/path/to/bar.log` and in another a relative
|
|
path `file:foo`.
|
|
|
|
"""
|
|
|
|
import infamy
|
|
import infamy.ssh as ssh
|
|
|
|
with infamy.Test() as test:
|
|
with test.step("Set up topology and attach to target DUT"):
|
|
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("Configure syslog on DUT to log to files '/log/bar.log' and 'foo'"):
|
|
target.put_config_dicts({
|
|
"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()
|