Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions tests/e2e/csi_static_provisioning_basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ var _ = ginkgo.Describe("Basic Static Provisioning", func() {
// 9. Verify PV is deleted automatically.
// 10. Verify Volume id deleted automatically.
// 11. Verify CRD deleted automatically.
ginkgo.It("[ef-wcp][csi-supervisor] Verify static provisioning workflow on SVC - import "+
ginkgo.It("[cf-wcp][csi-supervisor] Verify static provisioning workflow on SVC - import "+
"CNS volume", ginkgo.Label(p0, block, wcp, vc70), func() {
var err error
ctx, cancel := context.WithCancel(context.Background())
Expand All @@ -781,8 +781,8 @@ var _ = ginkgo.Describe("Basic Static Provisioning", func() {
gomega.Expect(err).NotTo(gomega.HaveOccurred())
deleteFCDRequired = false
ginkgo.By(fmt.Sprintf("Sleeping for %v seconds to allow newly created FCD:%s to sync with pandora",
pandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(pandoraSyncWaitTime) * time.Second)
defaultPandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(defaultPandoraSyncWaitTime) * time.Second)

ginkgo.By("Create CNS register volume with above created FCD ")
cnsRegisterVolume := getCNSRegisterVolumeSpec(ctx, namespace, fcdID, "", pvcName, v1.ReadWriteOnce)
Expand Down Expand Up @@ -846,7 +846,7 @@ var _ = ginkgo.Describe("Basic Static Provisioning", func() {
// 9. Verify PV is deleted automatically.
// 10. Verify Volume id deleted automatically.
// 11. Verify CRD deleted automatically.
ginkgo.It("[cf-wcp-f][ef-stretched-svc][csi-supervisor] [stretched-svc] Verify static provisioning workflow on "+
ginkgo.It("[ef-wcp][ef-stretched-svc][csi-supervisor] [stretched-svc] Verify static provisioning workflow on "+
"SVC import FCD", ginkgo.Label(p0, block, wcp, vc70), func() {
var err error
var totalQuotaUsedBefore, storagePolicyQuotaBefore, storagePolicyUsageBefore *resource.Quantity
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e/vmservice_vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ var _ bool = ginkgo.Describe("[vmsvc] vm service with csi vol tests", func() {
8 delete pvcs
9 Remove spbm policy attached to test namespace
*/
ginkgo.It("[cf-wcp-f] verify vmservice vm creation with a pvc in its spec", ginkgo.Label(p0,
ginkgo.It("[cf-wcp] verify vmservice vm creation with a pvc in its spec", ginkgo.Label(p0,
vmServiceVm, block, wcp, vc80), func() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
Expand All @@ -227,8 +227,8 @@ var _ bool = ginkgo.Describe("[vmsvc] vm service with csi vol tests", func() {
"staticfcd"+curtimestring, storageProfileId, diskSizeInMb, defaultDatastore.Reference())
gomega.Expect(err).NotTo(gomega.HaveOccurred())
ginkgo.By(fmt.Sprintf("Sleeping for %v seconds to allow newly created FCD:%s to sync with pandora",
pandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(pandoraSyncWaitTime) * time.Second)
defaultPandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(defaultPandoraSyncWaitTime) * time.Second)

ginkgo.By("Create CNS register volume with above created FCD ")
cnsRegisterVolume := getCNSRegisterVolumeSpec(ctx, namespace, fcdID, "", pvcName, v1.ReadWriteOnce)
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e/vsphere_volume_expansion.go
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ var _ = ginkgo.Describe("Volume Expansion Test", func() {
13. Verify File system has increased
14. Delete POD, PVC, PV, CNSregisterVolume and SC
*/
ginkgo.It("[cf-wcp-f] [csi-supervisor] Offline and Online volume resize on statically "+
ginkgo.It("[cf-wcp] [csi-supervisor] Offline and Online volume resize on statically "+
"created volume", ginkgo.Label(p0, block, wcp, vc70), func() {
var err error
var fsSize int64
Expand All @@ -1332,8 +1332,8 @@ var _ = ginkgo.Describe("Volume Expansion Test", func() {
"staticfcd"+curtimestring, profileID, diskSizeInMb, defaultDatastore.Reference())
gomega.Expect(err).NotTo(gomega.HaveOccurred())
ginkgo.By(fmt.Sprintf("Sleeping for %v seconds to allow newly created FCD:%s to sync with pandora",
pandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(pandoraSyncWaitTime) * time.Second)
defaultPandoraSyncWaitTime, fcdID))
time.Sleep(time.Duration(defaultPandoraSyncWaitTime) * time.Second)

ginkgo.By("Create CNS register volume with above created FCD ")
cnsRegisterVolume := getCNSRegisterVolumeSpec(ctx, namespace, fcdID, "", pvcName, v1.ReadWriteOnce)
Expand Down