2013-07-29 19:42:35 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-02-02 23:16:23 -05:00
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2013-07-29 19:42:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func testAccessConfig() *AccessConfig {
|
|
|
|
return &AccessConfig{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccessConfigPrepare_Region(t *testing.T) {
|
|
|
|
c := testAccessConfig()
|
|
|
|
c.RawRegion = ""
|
2013-08-08 17:29:46 -04:00
|
|
|
if err := c.Prepare(nil); err != nil {
|
2013-07-29 19:42:35 -04:00
|
|
|
t.Fatalf("shouldn't have err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.RawRegion = "us-east-12"
|
2013-08-08 17:29:46 -04:00
|
|
|
if err := c.Prepare(nil); err == nil {
|
2013-07-29 19:42:35 -04:00
|
|
|
t.Fatal("should have error")
|
|
|
|
}
|
|
|
|
|
|
|
|
c.RawRegion = "us-east-1"
|
2013-08-08 17:29:46 -04:00
|
|
|
if err := c.Prepare(nil); err != nil {
|
2013-07-29 19:42:35 -04:00
|
|
|
t.Fatalf("shouldn't have err: %s", err)
|
|
|
|
}
|
2016-06-06 14:17:12 -04:00
|
|
|
|
|
|
|
c.RawRegion = "custom"
|
|
|
|
if err := c.Prepare(nil); err == nil {
|
|
|
|
t.Fatalf("should have err")
|
|
|
|
}
|
|
|
|
|
|
|
|
c.RawRegion = "custom"
|
|
|
|
c.SkipValidation = true
|
|
|
|
if err := c.Prepare(nil); err != nil {
|
|
|
|
t.Fatalf("shouldn't have err: %s", err)
|
|
|
|
}
|
|
|
|
c.SkipValidation = false
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
}
|
2018-02-02 23:16:23 -05:00
|
|
|
|
2018-03-13 23:20:51 -04:00
|
|
|
func TestAccessConfigPrepare_RegionRestricted(t *testing.T) {
|
2018-02-02 23:16:23 -05:00
|
|
|
c := testAccessConfig()
|
|
|
|
|
|
|
|
// Create a Session with a custom region
|
|
|
|
c.session = session.Must(session.NewSession(&aws.Config{
|
|
|
|
Region: aws.String("us-gov-west-1"),
|
|
|
|
}))
|
|
|
|
|
|
|
|
if err := c.Prepare(nil); err != nil {
|
|
|
|
t.Fatalf("shouldn't have err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !c.IsGovCloud() {
|
|
|
|
t.Fatal("We should be in gov region.")
|
|
|
|
}
|
|
|
|
}
|