zrepl/pruning/pruning_test.go
2020-09-02 22:45:44 +02:00

128 lines
2.6 KiB
Go

package pruning
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type stubSnap struct {
name string
replicated bool
date time.Time
}
func (s stubSnap) Name() string { return s.name }
func (s stubSnap) Replicated() bool { return s.replicated }
func (s stubSnap) Date() time.Time { return s.date }
type testCase struct {
inputs []Snapshot
rules []KeepRule
expDestroy map[string]bool
}
type snapshotList []Snapshot
func (l snapshotList) ContainsName(n string) bool {
for _, s := range l {
if s.Name() == n {
return true
}
}
return false
}
func (l snapshotList) NameList() []string {
res := make([]string, len(l))
for i, s := range l {
res[i] = s.Name()
}
return res
}
func testTable(tcs map[string]testCase, t *testing.T) {
for name := range tcs {
t.Run(name, func(t *testing.T) {
tc := tcs[name]
destroyList := PruneSnapshots(tc.inputs, tc.rules)
destroySet := make(map[string]bool, len(destroyList))
for _, s := range destroyList {
destroySet[s.Name()] = true
}
t.Logf("destroySet:\n%#v", destroySet)
t.Logf("expected:\n%#v", tc.expDestroy)
require.Equal(t, len(tc.expDestroy), len(destroySet))
for name := range destroySet {
assert.True(t, tc.expDestroy[name], "%q", name)
}
})
}
}
func TestPruneSnapshots(t *testing.T) {
inputs := map[string][]Snapshot{
"s1": []Snapshot{
stubSnap{name: "foo_123"},
stubSnap{name: "foo_456"},
stubSnap{name: "bar_123"},
},
}
tcs := map[string]testCase{
"simple": {
inputs: inputs["s1"],
rules: []KeepRule{
MustKeepRegex("foo_", false),
},
expDestroy: map[string]bool{
"bar_123": true,
},
},
"multipleRules": {
inputs: inputs["s1"],
rules: []KeepRule{
MustKeepRegex("foo_", false),
MustKeepRegex("bar_", false),
},
expDestroy: map[string]bool{},
},
"onlyThoseRemovedByAllAreRemoved": {
inputs: inputs["s1"],
rules: []KeepRule{
MustKeepRegex("notInS1", false), // would remove all
MustKeepRegex("bar_", false), // would remove all but bar_, i.e. foo_.*
},
expDestroy: map[string]bool{
"foo_123": true,
"foo_456": true,
},
},
"noRulesKeepsAll": {
inputs: inputs["s1"],
rules: []KeepRule{},
expDestroy: map[string]bool{},
},
"nilRulesKeepsAll": {
inputs: inputs["s1"],
rules: nil,
expDestroy: map[string]bool{},
},
"noSnaps": {
inputs: []Snapshot{},
rules: []KeepRule{
MustKeepRegex("foo_", false),
},
expDestroy: map[string]bool{},
},
}
testTable(tcs, t)
}