-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathec2pricing_test.go
146 lines (126 loc) · 4.96 KB
/
ec2pricing_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// 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 ec2pricing_test
import (
"context"
"encoding/json"
"fmt"
"os"
"testing"
"github.com/aws/aws-sdk-go-v2/service/ec2"
ec2types "github.com/aws/aws-sdk-go-v2/service/ec2/types"
"github.com/aws/aws-sdk-go-v2/service/pricing"
"github.com/samber/lo"
"github.com/aws/amazon-ec2-instance-selector/v3/pkg/ec2pricing"
h "github.com/aws/amazon-ec2-instance-selector/v3/pkg/test"
)
const (
getProducts = "GetProducts"
describeSpotPriceHistory = "DescribeSpotPriceHistory"
mockFilesPath = "../../test/static"
)
// Mocking helpers
type mockedPricing struct {
pricing.GetProductsAPIClient
GetProductsResp pricing.GetProductsOutput
GetProductsErr error
}
func (m mockedPricing) GetProducts(_ context.Context, input *pricing.GetProductsInput, optFns ...func(*pricing.Options)) (*pricing.GetProductsOutput, error) {
return &m.GetProductsResp, m.GetProductsErr
}
type mockedSpotEC2 struct {
ec2.DescribeSpotPriceHistoryAPIClient
DescribeSpotPriceHistoryPagesResp ec2.DescribeSpotPriceHistoryOutput
DescribeSpotPriceHistoryPagesErr error
}
func (m mockedSpotEC2) DescribeSpotPriceHistory(_ context.Context, input *ec2.DescribeSpotPriceHistoryInput, optFns ...func(*ec2.Options)) (*ec2.DescribeSpotPriceHistoryOutput, error) {
return &m.DescribeSpotPriceHistoryPagesResp, m.DescribeSpotPriceHistoryPagesErr
}
func setupOdMock(t *testing.T, api string, file string) mockedPricing {
mockFilename := fmt.Sprintf("%s/%s/%s", mockFilesPath, api, file)
mockFile, err := os.ReadFile(mockFilename)
h.Assert(t, err == nil, "Error reading mock file "+mockFilename)
switch api {
case getProducts:
priceList := []string{string(mockFile)}
productsOutput := pricing.GetProductsOutput{
PriceList: priceList,
}
return mockedPricing{
GetProductsResp: productsOutput,
}
default:
h.Assert(t, false, "Unable to mock the provided API type "+api)
}
return mockedPricing{}
}
func setupEc2Mock(t *testing.T, api string, file string) mockedSpotEC2 {
mockFilename := fmt.Sprintf("%s/%s/%s", mockFilesPath, api, file)
mockFile, err := os.ReadFile(mockFilename)
h.Assert(t, err == nil, "Error reading mock file "+mockFilename)
switch api {
case describeSpotPriceHistory:
dspho := ec2.DescribeSpotPriceHistoryOutput{}
err = json.Unmarshal(mockFile, &dspho)
h.Assert(t, err == nil, "Error parsing mock json file contents"+mockFilename)
return mockedSpotEC2{
DescribeSpotPriceHistoryPagesResp: dspho,
}
default:
h.Assert(t, false, "Unable to mock the provided API type "+api)
}
return mockedSpotEC2{}
}
func TestGetOndemandInstanceTypeCost_m5large(t *testing.T) {
pricingMock := setupOdMock(t, getProducts, "m5_large.json")
ctx := context.Background()
ec2pricingClient := ec2pricing.EC2Pricing{
ODPricing: lo.Must(ec2pricing.LoadODCacheOrNew(ctx, pricingMock, "us-east-1", 0, "")),
}
price, err := ec2pricingClient.GetOnDemandInstanceTypeCost(ctx, ec2types.InstanceTypeM5Large)
h.Ok(t, err)
h.Equals(t, float64(0.096), price)
}
func TestRefreshOnDemandCache(t *testing.T) {
pricingMock := setupOdMock(t, getProducts, "m5_large.json")
ctx := context.Background()
ec2pricingClient := ec2pricing.EC2Pricing{
ODPricing: lo.Must(ec2pricing.LoadODCacheOrNew(ctx, pricingMock, "us-east-1", 0, "")),
}
err := ec2pricingClient.RefreshOnDemandCache(ctx)
h.Ok(t, err)
price, err := ec2pricingClient.GetOnDemandInstanceTypeCost(ctx, ec2types.InstanceTypeM5Large)
h.Ok(t, err)
h.Equals(t, float64(0.096), price)
}
func TestGetSpotInstanceTypeNDayAvgCost(t *testing.T) {
ec2Mock := setupEc2Mock(t, describeSpotPriceHistory, "m5_large.json")
ctx := context.Background()
ec2pricingClient := ec2pricing.EC2Pricing{
SpotPricing: lo.Must(ec2pricing.LoadSpotCacheOrNew(ctx, ec2Mock, "us-east-1", 0, "", 30)),
}
price, err := ec2pricingClient.GetSpotInstanceTypeNDayAvgCost(ctx, ec2types.InstanceTypeM5Large, []string{"us-east-1a"}, 30)
h.Ok(t, err)
h.Equals(t, float64(0.041486231229302666), price)
}
func TestRefreshSpotCache(t *testing.T) {
ec2Mock := setupEc2Mock(t, describeSpotPriceHistory, "m5_large.json")
ctx := context.Background()
ec2pricingClient := ec2pricing.EC2Pricing{
SpotPricing: lo.Must(ec2pricing.LoadSpotCacheOrNew(ctx, ec2Mock, "us-east-1", 0, "", 30)),
}
err := ec2pricingClient.RefreshSpotCache(ctx, 30)
h.Ok(t, err)
price, err := ec2pricingClient.GetSpotInstanceTypeNDayAvgCost(ctx, ec2types.InstanceTypeM5Large, []string{"us-east-1a"}, 30)
h.Ok(t, err)
h.Equals(t, float64(0.041486231229302666), price)
}