aa-log: add missing unit test.

This commit is contained in:
Alexandre Pujol 2021-12-12 12:35:08 +00:00
parent 73d59da67c
commit bcd1b0958d
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 46 additions and 8 deletions

View file

@ -127,3 +127,32 @@ func TestAppArmorLogs_String(t *testing.T) {
})
}
}
func Test_app(t *testing.T) {
tests := []struct {
name string
args []string
path string
wantErr bool
}{
{
name: "OK",
args: []string{"aa-log", ""},
path: "../../tests/audit.log",
wantErr: false,
},
{
name: "No logfile",
args: []string{"aa-log", ""},
path: "../../tests/log",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := aaLog(tt.args, tt.path); (err != nil) != tt.wantErr {
t.Errorf("aaLog() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}