1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
package filter_test
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/lxc/incus/v6/internal/filter"
"github.com/lxc/incus/v6/shared/api"
)
func TestMatch_Instance(t *testing.T) {
instance := api.Instance{
InstancePut: api.InstancePut{
Architecture: "x86_64",
Config: map[string]string{
"image.os": "BusyBox",
},
Stateful: false,
},
CreatedAt: time.Date(2020, 1, 29, 11, 10, 32, 0, time.UTC),
Name: "c1",
ExpandedConfig: map[string]string{
"image.os": "BusyBox",
},
ExpandedDevices: map[string]map[string]string{
"root": {
"path": "/",
"pool": "default",
"type": "disk",
},
},
Status: "Running",
}
cases := map[string]any{
"architecture eq x86_64": true,
"architecture eq i686": false,
"name eq c1 and status eq Running": true,
"config.image.os eq BusyBox and expanded_devices.root.path eq /": true,
"name eq c2 or status eq Running": true,
"name eq c2 or name eq c3": false,
"status eq Running,Stopped": true,
"name eq c2,c3": false,
}
for s := range cases {
t.Run(s, func(t *testing.T) {
f, err := filter.Parse(s, filter.QueryOperatorSet())
require.NoError(t, err)
match, err := filter.Match(instance, *f)
require.NoError(t, err)
assert.Equal(t, cases[s], match)
})
}
}
func TestMatch_Image(t *testing.T) {
image := api.Image{
ImagePut: api.ImagePut{
Public: true,
Properties: map[string]string{
"os": "Ubuntu",
},
},
Architecture: "i686",
}
cases := map[string]any{
"properties.os eq Ubuntu": true,
"architecture eq x86_64": false,
}
for s := range cases {
t.Run(s, func(t *testing.T) {
f, err := filter.Parse(s, filter.QueryOperatorSet())
require.NoError(t, err)
match, err := filter.Match(image, *f)
require.NoError(t, err)
assert.Equal(t, cases[s], match)
})
}
}
|