Skip to content

Commit

Permalink
Rebase on top off adding context to cloud provider interface and
Browse files Browse the repository at this point in the history
populate context for `DescribeAvailabilityZonesWithContext`
  • Loading branch information
Cheng Pan committed Oct 10, 2018
1 parent 760663c commit 3a498a8
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 47 deletions.
17 changes: 9 additions & 8 deletions pkg/cloud/cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,20 @@ type DiskOptions struct {
VolumeType string
IOPSPerGB int64
// the availability zone to create volume in
// if nil a random zone will be used
AvailabilityZone *string
// if empty a random zone will be used
AvailabilityZone string
}

// EC2 abstracts aws.EC2 to facilitate its mocking.
// See https://docs.aws.amazon.com/sdk-for-go/api/service/ec2/ for details
type EC2 interface {
DescribeVolumesWithContext(ctx aws.Context, input *ec2.DescribeVolumesInput, opts ...request.Option) (*ec2.DescribeVolumesOutput, error)
CreateVolumeWithContext(ctx aws.Context, input *ec2.CreateVolumeInput, opts ...request.Option) (*ec2.Volume, error)
DeleteVolumeWithContext(ctx aws.Context, input *ec2.DeleteVolumeInput, opts ...request.Option) (*ec2.DeleteVolumeOutput, error)
DetachVolumeWithContext(ctx aws.Context, input *ec2.DetachVolumeInput, opts ...request.Option) (*ec2.VolumeAttachment, error)
AttachVolumeWithContext(ctx aws.Context, input *ec2.AttachVolumeInput, opts ...request.Option) (*ec2.VolumeAttachment, error)
DescribeInstancesWithContext(ctx aws.Context, input *ec2.DescribeInstancesInput, opts ...request.Option) (*ec2.DescribeInstancesOutput, error)
DescribeAvailabilityZones(input *ec2.DescribeAvailabilityZonesInput) (*ec2.DescribeAvailabilityZonesOutput, error)
DescribeAvailabilityZonesWithContext(ctx aws.Context, input *ec2.DescribeAvailabilityZonesInput, opts ...request.Option) (*ec2.DescribeAvailabilityZonesOutput, error)
}

type Cloud interface {
Expand Down Expand Up @@ -208,13 +209,13 @@ func (c *cloud) CreateDisk(ctx context.Context, volumeName string, diskOptions *
zone string
err error
)
if diskOptions.AvailabilityZone == nil {
zone, err = c.pickRandomAvailabilityZone()
if diskOptions.AvailabilityZone == "" {
zone, err = c.pickRandomAvailabilityZone(ctx)
if err != nil {
return nil, err
}
} else {
zone = *diskOptions.AvailabilityZone
zone = diskOptions.AvailabilityZone
}

request := &ec2.CreateVolumeInput{
Expand Down Expand Up @@ -463,8 +464,8 @@ func (c *cloud) getInstance(ctx context.Context, nodeID string) (*ec2.Instance,
return instances[0], nil
}

func (c *cloud) pickRandomAvailabilityZone() (string, error) {
output, err := c.ec2.DescribeAvailabilityZones(&ec2.DescribeAvailabilityZonesInput{})
func (c *cloud) pickRandomAvailabilityZone(ctx context.Context) (string, error) {
output, err := c.ec2.DescribeAvailabilityZonesWithContext(ctx, &ec2.DescribeAvailabilityZonesInput{})
if err != nil {
return "", err
}
Expand Down
14 changes: 5 additions & 9 deletions pkg/cloud/cloud_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestCreateDisk(t *testing.T) {
diskOptions: &DiskOptions{
CapacityBytes: util.GiBToBytes(1),
Tags: map[string]string{VolumeNameTagKey: "vol-test"},
AvailabilityZone: nil,
AvailabilityZone: "",
},
expDisk: &Disk{
VolumeID: "vol-test",
Expand All @@ -59,7 +59,7 @@ func TestCreateDisk(t *testing.T) {
diskOptions: &DiskOptions{
CapacityBytes: util.GiBToBytes(1),
Tags: map[string]string{VolumeNameTagKey: "vol-test"},
AvailabilityZone: stringPtr("us-west-2"),
AvailabilityZone: "us-west-2",
},
expDisk: &Disk{
VolumeID: "vol-test",
Expand All @@ -73,7 +73,7 @@ func TestCreateDisk(t *testing.T) {
diskOptions: &DiskOptions{
CapacityBytes: util.GiBToBytes(1),
Tags: map[string]string{VolumeNameTagKey: "vol-test"},
AvailabilityZone: nil,
AvailabilityZone: "",
},
expErr: fmt.Errorf("CreateVolume generic error"),
},
Expand All @@ -96,7 +96,7 @@ func TestCreateDisk(t *testing.T) {
ctx := context.Background()
mockEC2.EXPECT().CreateVolumeWithContext(gomock.Eq(ctx), gomock.Any()).Return(vol, tc.expErr)

if tc.diskOptions.AvailabilityZone == nil {
if tc.diskOptions.AvailabilityZone == "" {
describeAvailabilityZonesResp := &ec2.DescribeAvailabilityZonesOutput{
AvailabilityZones: []*ec2.AvailabilityZone{
&ec2.AvailabilityZone{
Expand All @@ -111,7 +111,7 @@ func TestCreateDisk(t *testing.T) {
},
}

mockEC2.EXPECT().DescribeAvailabilityZones(gomock.Any()).Return(describeAvailabilityZonesResp, nil)
mockEC2.EXPECT().DescribeAvailabilityZonesWithContext(gomock.Eq(ctx), gomock.Any()).Return(describeAvailabilityZonesResp, nil)
}

disk, err := c.CreateDisk(ctx, tc.volumeName, tc.diskOptions)
Expand Down Expand Up @@ -411,7 +411,3 @@ func newDescribeInstancesOutput(nodeID string) *ec2.DescribeInstancesOutput {
}},
}
}

func stringPtr(str string) *string {
return &str
}
17 changes: 11 additions & 6 deletions pkg/cloud/mocks/mock_ec2.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions pkg/driver/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,23 +254,24 @@ func (d *Driver) ListSnapshots(ctx context.Context, req *csi.ListSnapshotsReques
}

// pickAvailabilityZone selects 1 zone given topology requirement.
func pickAvailabilityZone(requirement *csi.TopologyRequirement) *string {
// if not found, empty string is returned.
func pickAvailabilityZone(requirement *csi.TopologyRequirement) string {
if requirement == nil {
return nil
return ""
}
for _, topology := range requirement.GetPreferred() {
zone, exists := topology.GetSegments()[topologyKey]
if exists {
return &zone
return zone
}
}
for _, topology := range requirement.GetRequisite() {
zone, exists := topology.GetSegments()[topologyKey]
if exists {
return &zone
return zone
}
}
return nil
return ""
}

func newCreateVolumeResponse(disk *cloud.Disk) *csi.CreateVolumeResponse {
Expand Down
26 changes: 7 additions & 19 deletions pkg/driver/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func TestPickAvailabilityZone(t *testing.T) {
testCases := []struct {
name string
requirement *csi.TopologyRequirement
expZone *string
expZone string
}{
{
name: "Pick from preferred",
Expand All @@ -257,7 +257,7 @@ func TestPickAvailabilityZone(t *testing.T) {
},
},
},
expZone: stringPtr(expZone),
expZone: expZone,
},
{
name: "Pick from requisite",
Expand All @@ -268,42 +268,30 @@ func TestPickAvailabilityZone(t *testing.T) {
},
},
},
expZone: stringPtr(expZone),
expZone: expZone,
},
{
name: "Pick from empty topology",
requirement: &csi.TopologyRequirement{
Preferred: []*csi.Topology{&csi.Topology{}},
Requisite: []*csi.Topology{&csi.Topology{}},
},
expZone: nil,
expZone: "",
},

{
name: "Topology Requirement is nil",
requirement: nil,
expZone: nil,
expZone: "",
},
}

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
actual := pickAvailabilityZone(tc.requirement)
if tc.expZone == nil {
if actual != nil {
t.Fatalf("Expected zone to be nil, got %v", actual)
}
} else {
if *actual != *tc.expZone {
t.Fatalf("Expected zone %v, got zone: %v", tc.expZone, actual)

}
if actual != tc.expZone {
t.Fatalf("Expected zone %v, got zone: %v", tc.expZone, actual)
}
})
}

}

func stringPtr(str string) *string {
return &str
}

0 comments on commit 3a498a8

Please sign in to comment.