mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-09-02 19:51:36 +00:00
24 lines
749 B
Bash
Executable File
24 lines
749 B
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
@test "INS001: Check if all files were installed successfully in a full install" {
|
|
# Binaries
|
|
[ -x /usr/bin/swupd ]
|
|
[ -x /usr/bin/verifytime ]
|
|
|
|
# Manuals
|
|
[ -s /usr/share/man/man4/update-triggers.target.4 ]
|
|
[ -s /usr/share/man/man4/check-update.timer.4 ]
|
|
[ -s /usr/share/man/man4/check-update.service.4 ]
|
|
[ -s /usr/share/man/man4/swupd-update.timer.4 ]
|
|
[ -s /usr/share/man/man4/swupd-update.service.4 ]
|
|
[ -s /usr/share/man/man1/swupd.1 ]
|
|
|
|
# System d files
|
|
[ -s /usr/lib/systemd/system/swupd-update.timer ]
|
|
[ -s /usr/lib/systemd/system/swupd-update.service ]
|
|
[ -s /usr/lib/systemd/system/check-update.service ]
|
|
[ -s /usr/lib/systemd/system/check-update.timer ]
|
|
[ -s /usr/lib/systemd/system/verifytime.service ]
|
|
|
|
}
|