-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti_zone_e2e_test.go
60 lines (49 loc) · 2.08 KB
/
multi_zone_e2e_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
Copyright 2018 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 tests
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/common"
testutils "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/test/e2e/utils"
remote "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/test/remote"
)
var _ = Describe("GCE PD CSI Driver Multi-Zone", func() {
BeforeEach(func() {
Expect(len(testInstances)).To(BeNumerically(">", 1))
// TODO: Check whether the instances are in different zones???
// I Think there should be a better way of guaranteeing this. Like a map from zone to instance for testInstances (?)
})
It("Should get reasonable topology from nodes with NodeGetInfo", func() {
for _, instance := range testInstances {
testContext, err := testutils.GCEClientAndDriverSetup(instance)
Expect(err).To(BeNil(), "Set up new Driver and Client failed with error")
defer func() {
err := remote.TeardownDriverAndClient(testContext)
Expect(err).To(BeNil(), "Teardown Driver and Client failed with error")
}()
resp, err := testContext.Client.NodeGetInfo()
Expect(err).To(BeNil())
// Get Cloud Instance
p, z, n := testContext.Instance.GetIdentity()
cloudInstance, err := computeService.Instances.Get(p, z, n).Do()
Expect(err).To(BeNil())
Expect(cloudInstance).ToNot(BeNil())
// Check topology matches
segments := resp.GetAccessibleTopology().GetSegments()
Expect(segments).ToNot(BeNil())
Expect(segments[common.TopologyKeyZone]).To(Equal(z))
Expect(len(segments)).To(Equal(1))
}
})
})