mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-05 13:05:17 +00:00
Some checks failed
Run the E2E test on kind / build (push) Failing after 5m43s
Run the E2E test on kind / setup-test-matrix (push) Successful in 2s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
build-image / Build (push) Failing after 8s
Main CI / Build (push) Failing after 33s
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
/*
|
|
Copyright 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 basic
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
. "github.com/vmware-tanzu/velero/test/e2e/test"
|
|
. "github.com/vmware-tanzu/velero/test/util/providers"
|
|
. "github.com/vmware-tanzu/velero/test/util/velero"
|
|
)
|
|
|
|
var CSISnapshotVolumeInfoTest func() = TestFunc(&CSISnapshotVolumeInfo{
|
|
BackupVolumeInfo{
|
|
SnapshotVolumes: true,
|
|
TestCase: TestCase{
|
|
CaseBaseName: "csi-snapshot-volumeinfo",
|
|
TestMsg: &TestMSG{
|
|
Desc: "Test backup's VolumeInfo metadata content for CSI snapshot case.",
|
|
Text: "The VolumeInfo should be generated, and the CSISnapshotInfo structure should not be nil.",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
type CSISnapshotVolumeInfo struct {
|
|
BackupVolumeInfo
|
|
}
|
|
|
|
func (c *CSISnapshotVolumeInfo) Verify() error {
|
|
volumeInfo, err := GetVolumeInfo(
|
|
c.VeleroCfg.ObjectStoreProvider,
|
|
c.VeleroCfg.CloudCredentialsFile,
|
|
c.VeleroCfg.BSLBucket,
|
|
c.VeleroCfg.BSLPrefix,
|
|
c.VeleroCfg.BSLConfig,
|
|
c.BackupName,
|
|
BackupObjectsPrefix+"/"+c.BackupName,
|
|
)
|
|
|
|
Expect(err).ShouldNot(HaveOccurred(), "Fail to get VolumeInfo metadata in the Backup Repository.")
|
|
|
|
fmt.Printf("The VolumeInfo metadata content: %+v\n", *volumeInfo[0])
|
|
Expect(volumeInfo).ToNot(BeEmpty())
|
|
Expect(volumeInfo[0].CSISnapshotInfo).NotTo(BeNil())
|
|
|
|
return nil
|
|
}
|