DeleteBucketPolicy_test.go
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
This file is licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License. A copy of
the License is located at
http://aws.amazon.com/apache2.0/
This file 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 main
import (
"encoding/json"
"fmt"
"io/ioutil"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/google/uuid"
)
type Config struct {
Bucket string `json:"Bucket"`
}
var configFileName = "config.json"
var globalConfig Config
func populateConfiguration(t *testing.T) error {
content, err := ioutil.ReadFile(configFileName)
if err != nil {
return err
}
text := string(content)
err = json.Unmarshal([]byte(text), &globalConfig)
if err != nil {
return err
}
t.Log("Bucket: " + globalConfig.Bucket)
return nil
}
func createBucket(sess *session.Session, bucket *string) error {
svc := s3.New(sess)
_, err := svc.CreateBucket(&s3.CreateBucketInput{
Bucket: bucket,
})
if err != nil {
return err
}
err = svc.WaitUntilBucketExists(&s3.HeadBucketInput{
Bucket: bucket,
})
if err != nil {
return err
}
return nil
}
func addBucketPolity(sess *session.Session, bucket *string) error {
svc := s3.New(sess)
readOnlyAnonUserPolicy := map[string]interface{}{
"Version": "2012-10-17",
"Statement": []map[string]interface{}{
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": []string{
"s3:GetObject",
},
"Resource": []string{
"arn:aws:s3:::" + *bucket + "/*",
},
},
},
}
policy, err := json.Marshal(readOnlyAnonUserPolicy)
if err != nil {
return err
}
_, err = svc.PutBucketPolicy(&s3.PutBucketPolicyInput{
Bucket: bucket,
Policy: aws.String(string(policy)),
})
if err != nil {
return err
}
return nil
}
func deleteBucket(sess *session.Session, bucket *string) error {
svc := s3.New(sess)
_, err := svc.DeleteBucket(&s3.DeleteBucketInput{
Bucket: bucket,
})
if err != nil {
return err
}
err = svc.WaitUntilBucketNotExists(&s3.HeadBucketInput{
Bucket: bucket,
})
if err != nil {
return err
}
return nil
}
func TestGetBucketPolicy(t *testing.T) {
thisTime := time.Now()
nowString := thisTime.Format("2006-01-02 15:04:05 Monday")
t.Log("Starting unit test at " + nowString)
err := populateConfiguration(t)
if err != nil {
t.Fatal(err)
}
sess := session.Must(session.NewSessionWithOptions(session.Options{
SharedConfigState: session.SharedConfigEnable,
}))
bucketCreated := false
if globalConfig.Bucket == "" {
id := uuid.New()
globalConfig.Bucket = "test-bucket-" + id.String()
err := createBucket(sess, &globalConfig.Bucket)
if err != nil {
t.Fatal(err)
}
fmt.Println("Created bucket " + globalConfig.Bucket)
bucketCreated = true
err = addBucketPolity(sess, &globalConfig.Bucket)
if err != nil {
t.Log("You'll have to delete bucket " + globalConfig.Bucket + " yourself")
t.Fatal(err)
}
}
err = RemoveBucketPolicy(sess, &globalConfig.Bucket)
if err != nil {
t.Log("You'll have to delete bucket " + globalConfig.Bucket + " yourself")
t.Fatal(err)
}
t.Log("Removed bucket policy")
if bucketCreated {
err := deleteBucket(sess, &globalConfig.Bucket)
if err != nil {
t.Log("You'll have to delete bucket " + globalConfig.Bucket + " yourself")
t.Fatal(err)
}
t.Log("Deleted bucket " + globalConfig.Bucket)
}
}