mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-06 13:26:26 +00:00
- Per discussion, there is no reason to deal with the complexity of backwards compatibility with the Namespace attribute on the Restore domain. - Also noticed there was an error on the validation of the BackupController where the message would actually just be the index of the error and not the contents of the message itself. Signed-off-by: Justin Nauman <justin.r.nauman@gmail.com>
85 lines
2.1 KiB
Go
85 lines
2.1 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(e api.RestoreResult) *TestRestore {
|
|
r.Status.Errors = e
|
|
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
|
|
}
|