mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-14 23:43:56 +01:00
59ac54e2fc
- ABI4 by default, fallback to abi 3. - aa-prebuild cli that can be used by other project shipping profiles. - --file option to cli to only build one dev profile. - add abi version filter to only & exclude directives.
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package prebuild
|
|
|
|
import (
|
|
"slices"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestBase_Helpers(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
b Base
|
|
want string
|
|
}{
|
|
{
|
|
name: "base",
|
|
b: Base{Keyword: "test", Help: []string{"test"}, Msg: "test"},
|
|
want: "test",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := tt.b.Name(); got != tt.want {
|
|
t.Errorf("Base.Name() = %v, want %v", got, tt.want)
|
|
}
|
|
if got := tt.b.Usage(); !slices.Equal(got, []string{tt.want}) {
|
|
t.Errorf("Base.Usage() = %v, want %v", got, tt.want)
|
|
}
|
|
if got := tt.b.Message(); got != tt.want {
|
|
t.Errorf("Base.Message() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestHelp(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
tasks map[string]Base
|
|
want string
|
|
}{
|
|
{
|
|
name: "one",
|
|
tasks: map[string]Base{
|
|
"one": {Keyword: "one", Help: []string{"one"}, Msg: "one"},
|
|
"two": {Keyword: "two", Help: []string{"two"}, Msg: "two"},
|
|
},
|
|
want: `one`,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := Help(tt.name, tt.tasks); !strings.Contains(got, tt.want) {
|
|
t.Errorf("Help() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|