59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
|
/*
|
||
|
Copyright 2019 the Velero contributors.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package backup
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestRequest_BackupResourceList(t *testing.T) {
|
||
|
items := []itemKey{
|
||
|
{
|
||
|
resource: "apps/v1/Deployment",
|
||
|
name: "my-deploy",
|
||
|
namespace: "default",
|
||
|
},
|
||
|
{
|
||
|
resource: "v1/Pod",
|
||
|
name: "pod1",
|
||
|
namespace: "ns1",
|
||
|
},
|
||
|
{
|
||
|
resource: "v1/Pod",
|
||
|
name: "pod2",
|
||
|
namespace: "ns2",
|
||
|
},
|
||
|
{
|
||
|
resource: "v1/PersistentVolume",
|
||
|
name: "my-pv",
|
||
|
},
|
||
|
}
|
||
|
backedUpItems := map[itemKey]struct{}{}
|
||
|
for _, it := range items {
|
||
|
backedUpItems[it] = struct{}{}
|
||
|
}
|
||
|
|
||
|
req := Request{BackedUpItems: backedUpItems}
|
||
|
assert.Equal(t, req.BackupResourceList(), map[string][]string{
|
||
|
"apps/v1/Deployment": {"default/my-deploy"},
|
||
|
"v1/Pod": {"ns1/pod1", "ns2/pod2"},
|
||
|
"v1/PersistentVolume": {"my-pv"},
|
||
|
})
|
||
|
}
|