-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from mayankshah1607/e2e
Add E2E test cases for dynamic provisioning
- Loading branch information
Showing
15 changed files
with
1,841 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
test/e2e/testsuites/dynamically_provisioned_collocated_pod_tester.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
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 testsuites | ||
|
||
import ( | ||
"github.com/kubernetes-csi/csi-driver-nfs/test/e2e/driver" | ||
"github.com/onsi/ginkgo" | ||
v1 "k8s.io/api/core/v1" | ||
clientset "k8s.io/client-go/kubernetes" | ||
) | ||
|
||
// DynamicallyProvisionedCollocatedPodTest will provision required StorageClass(es), PVC(s) and Pod(s) | ||
// Waiting for the PV provisioner to create a new PV | ||
// Testing if multiple Pod(s) can write simultaneously | ||
type DynamicallyProvisionedCollocatedPodTest struct { | ||
CSIDriver driver.DynamicPVTestDriver | ||
Pods []PodDetails | ||
ColocatePods bool | ||
StorageClassParameters map[string]string | ||
} | ||
|
||
func (t *DynamicallyProvisionedCollocatedPodTest) Run(client clientset.Interface, namespace *v1.Namespace) { | ||
nodeName := "" | ||
for _, pod := range t.Pods { | ||
tpod, cleanup := pod.SetupWithDynamicVolumes(client, namespace, t.CSIDriver, t.StorageClassParameters) | ||
if t.ColocatePods && nodeName != "" { | ||
tpod.SetNodeSelector(map[string]string{"name": nodeName}) | ||
} | ||
// defer must be called here for resources not get removed before using them | ||
for i := range cleanup { | ||
defer cleanup[i]() | ||
} | ||
|
||
ginkgo.By("deploying the pod") | ||
tpod.Create() | ||
defer tpod.Cleanup() | ||
|
||
ginkgo.By("checking that the pod is running") | ||
tpod.WaitForRunning() | ||
nodeName = tpod.pod.Spec.NodeName | ||
} | ||
|
||
} |
70 changes: 70 additions & 0 deletions
70
test/e2e/testsuites/dynamically_provisioned_delete_pod_tester.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
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 testsuites | ||
|
||
import ( | ||
"github.com/kubernetes-csi/csi-driver-nfs/test/e2e/driver" | ||
"github.com/onsi/ginkgo" | ||
v1 "k8s.io/api/core/v1" | ||
clientset "k8s.io/client-go/kubernetes" | ||
) | ||
|
||
// DynamicallyProvisionedDeletePodTest will provision required StorageClass and Deployment | ||
// Testing if the Pod can write and read to mounted volumes | ||
// Deleting a pod, and again testing if the Pod can write and read to mounted volumes | ||
type DynamicallyProvisionedDeletePodTest struct { | ||
CSIDriver driver.DynamicPVTestDriver | ||
Pod PodDetails | ||
PodCheck *PodExecCheck | ||
StorageClassParameters map[string]string | ||
} | ||
|
||
type PodExecCheck struct { | ||
Cmd []string | ||
ExpectedString string | ||
} | ||
|
||
func (t *DynamicallyProvisionedDeletePodTest) Run(client clientset.Interface, namespace *v1.Namespace) { | ||
tDeployment, cleanup := t.Pod.SetupDeployment(client, namespace, t.CSIDriver, t.StorageClassParameters) | ||
// defer must be called here for resources not get removed before using them | ||
for i := range cleanup { | ||
defer cleanup[i]() | ||
} | ||
|
||
ginkgo.By("deploying the deployment") | ||
tDeployment.Create() | ||
|
||
ginkgo.By("checking that the pod is running") | ||
tDeployment.WaitForPodReady() | ||
|
||
if t.PodCheck != nil { | ||
ginkgo.By("checking pod exec") | ||
tDeployment.Exec(t.PodCheck.Cmd, t.PodCheck.ExpectedString) | ||
} | ||
|
||
ginkgo.By("deleting the pod for deployment") | ||
tDeployment.DeletePodAndWait() | ||
|
||
ginkgo.By("checking again that the pod is running") | ||
tDeployment.WaitForPodReady() | ||
|
||
if t.PodCheck != nil { | ||
ginkgo.By("checking pod exec") | ||
// pod will be restarted so expect to see 2 instances of string | ||
tDeployment.Exec(t.PodCheck.Cmd, t.PodCheck.ExpectedString+t.PodCheck.ExpectedString) | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
test/e2e/testsuites/dynamically_provisioned_pod_with_multiple_pv.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
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 testsuites | ||
|
||
import ( | ||
"github.com/kubernetes-csi/csi-driver-nfs/test/e2e/driver" | ||
|
||
"github.com/onsi/ginkgo" | ||
v1 "k8s.io/api/core/v1" | ||
clientset "k8s.io/client-go/kubernetes" | ||
) | ||
|
||
// DynamicallyProvisionedPodWithMultiplePVsTest will provision | ||
// one pod with multiple PVs | ||
// Waiting for the PV provisioner to create a new PV | ||
// Testing if the Pod(s) Cmd is run with a 0 exit code | ||
type DynamicallyProvisionedPodWithMultiplePVsTest struct { | ||
CSIDriver driver.DynamicPVTestDriver | ||
Pods []PodDetails | ||
StorageClassParameters map[string]string | ||
} | ||
|
||
func (t *DynamicallyProvisionedPodWithMultiplePVsTest) Run(client clientset.Interface, namespace *v1.Namespace) { | ||
for _, pod := range t.Pods { | ||
tpod, cleanup := pod.SetupWithDynamicMultipleVolumes(client, namespace, t.CSIDriver, t.StorageClassParameters) | ||
// defer must be called here for resources not get removed before using them | ||
for i := range cleanup { | ||
defer cleanup[i]() | ||
} | ||
|
||
ginkgo.By("deploying the pod") | ||
tpod.Create() | ||
defer tpod.Cleanup() | ||
ginkgo.By("checking that the pods command exits with no error") | ||
tpod.WaitForSuccess() | ||
} | ||
} |
Oops, something went wrong.