Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tests/cloner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2243,9 +2243,9 @@ var _ = Describe("all clone tests", func() {
err = utils.WaitForDataVolumePhase(f, targetDV.Namespace, cdiv1.Succeeded, targetDV.Name)
Expect(err).ToNot(HaveOccurred())
},
Entry("[test_id:XXXX] large enough", "1Gi", true),
Entry("[test_id:XXXX] too small", "256Mi", false),
Entry("[test_id:XXXX] empty", "", false),
Entry("[test_id:12420] large enough", "1Gi", true),
Entry("[test_id:12421] too small", "256Mi", false),
Entry("[test_id:12424] empty", "", false),
)

DescribeTable("Filesystem volumeMode clone with target smaller than the source, using storgeProfile with minPvcSize annotation", func(minSize string, shouldSucceed bool) {
Expand Down Expand Up @@ -2273,9 +2273,9 @@ var _ = Describe("all clone tests", func() {
err = utils.WaitForDataVolumePhase(f, targetDV.Namespace, cdiv1.Succeeded, targetDV.Name)
Expect(err).ToNot(HaveOccurred())
},
Entry("[test_id:XXXX] large enough", "1Gi", true),
Entry("[test_id:XXXX] too small", "256Mi", false),
Entry("[test_id:XXXX] empty", "", false),
Entry("[test_id:12425] large enough", "1Gi", true),
Entry("[test_id:12422] too small", "256Mi", false),
Entry("[test_id:12423] empty", "", false),
)

It("[test_id:4276] Clone datavolume with short name", Serial, func() {
Expand Down