95 lines
2.4 KiB
Go
95 lines
2.4 KiB
Go
/*
|
|
Copyright 2017 Heptio Inc.
|
|
|
|
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 test
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
api "github.com/heptio/ark/pkg/apis/ark/v1"
|
|
)
|
|
|
|
type TestRestore struct {
|
|
*api.Restore
|
|
}
|
|
|
|
func NewTestRestore(ns, name string, phase api.RestorePhase) *TestRestore {
|
|
return &TestRestore{
|
|
Restore: &api.Restore{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: ns,
|
|
Name: name,
|
|
},
|
|
Spec: api.RestoreSpec{},
|
|
Status: api.RestoreStatus{
|
|
Phase: phase,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func NewDefaultTestRestore() *TestRestore {
|
|
return NewTestRestore(api.DefaultNamespace, "", api.RestorePhase(""))
|
|
}
|
|
|
|
func (r *TestRestore) WithIncludedNamespace(name string) *TestRestore {
|
|
r.Spec.IncludedNamespaces = append(r.Spec.IncludedNamespaces, name)
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithExcludedNamespace(name string) *TestRestore {
|
|
r.Spec.ExcludedNamespaces = append(r.Spec.ExcludedNamespaces, name)
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithValidationError(err string) *TestRestore {
|
|
r.Status.ValidationErrors = append(r.Status.ValidationErrors, err)
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithBackup(name string) *TestRestore {
|
|
r.Spec.BackupName = name
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithErrors(i int) *TestRestore {
|
|
r.Status.Errors = i
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithRestorePVs(value bool) *TestRestore {
|
|
r.Spec.RestorePVs = &value
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithMappedNamespace(from string, to string) *TestRestore {
|
|
if r.Spec.NamespaceMapping == nil {
|
|
r.Spec.NamespaceMapping = make(map[string]string)
|
|
}
|
|
r.Spec.NamespaceMapping[from] = to
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithIncludedResource(resource string) *TestRestore {
|
|
r.Spec.IncludedResources = append(r.Spec.IncludedResources, resource)
|
|
return r
|
|
}
|
|
|
|
func (r *TestRestore) WithExcludedResource(resource string) *TestRestore {
|
|
r.Spec.ExcludedResources = append(r.Spec.ExcludedResources, resource)
|
|
return r
|
|
}
|