2017-05-08 23:07:07 +02:00
|
|
|
package s3manager_test
|
2017-04-03 23:52:41 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2018-03-14 21:53:35 +01:00
|
|
|
"github.com/mastertinner/s3manager/internal/app/s3manager"
|
2018-04-24 22:35:21 +02:00
|
|
|
minio "github.com/minio/minio-go"
|
2017-04-03 23:52:41 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetObjectHandler(t *testing.T) {
|
2017-05-08 23:07:07 +02:00
|
|
|
cases := map[string]struct {
|
2018-04-24 22:35:21 +02:00
|
|
|
getObjectFunc func(string, string, minio.GetObjectOptions) (*minio.Object, error)
|
2017-04-18 15:43:13 +02:00
|
|
|
bucketName string
|
|
|
|
objectName string
|
|
|
|
expectedStatusCode int
|
|
|
|
expectedBodyContains string
|
2017-04-03 23:52:41 +02:00
|
|
|
}{
|
2017-12-21 07:50:59 +01:00
|
|
|
"returns error if there is an S3 error": {
|
2018-04-24 22:35:21 +02:00
|
|
|
getObjectFunc: func(bucketName string, objectName string, opts minio.GetObjectOptions) (*minio.Object, error) {
|
|
|
|
return nil, errors.New("mocked S3 error")
|
2017-04-03 23:52:41 +02:00
|
|
|
},
|
2017-04-18 15:43:13 +02:00
|
|
|
bucketName: "testBucket",
|
|
|
|
objectName: "testObject",
|
|
|
|
expectedStatusCode: http.StatusInternalServerError,
|
|
|
|
expectedBodyContains: http.StatusText(http.StatusInternalServerError),
|
2017-04-03 23:52:41 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-08 23:07:07 +02:00
|
|
|
for tcID, tc := range cases {
|
2017-07-31 10:57:22 +02:00
|
|
|
t.Run(tcID, func(t *testing.T) {
|
2017-12-21 07:50:59 +01:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
2018-04-24 22:35:21 +02:00
|
|
|
s3 := &S3Mock{
|
|
|
|
GetObjectFunc: tc.getObjectFunc,
|
|
|
|
}
|
|
|
|
|
2017-07-31 10:57:22 +02:00
|
|
|
r := mux.NewRouter()
|
|
|
|
r.
|
|
|
|
Methods(http.MethodGet).
|
|
|
|
Path("/buckets/{bucketName}/objects/{objectName}").
|
2018-04-24 22:35:21 +02:00
|
|
|
Handler(s3manager.GetObjectHandler(s3))
|
2017-07-31 10:57:22 +02:00
|
|
|
|
|
|
|
ts := httptest.NewServer(r)
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
url := fmt.Sprintf("%s/buckets/%s/objects/%s", ts.URL, tc.bucketName, tc.objectName)
|
|
|
|
resp, err := http.Get(url)
|
2017-04-19 14:18:58 +02:00
|
|
|
assert.NoError(err, tcID)
|
2018-04-14 01:24:20 +02:00
|
|
|
defer func() {
|
|
|
|
err = resp.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}()
|
2017-04-03 23:52:41 +02:00
|
|
|
|
2017-07-31 10:57:22 +02:00
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
assert.NoError(err, tcID)
|
2017-04-03 23:52:41 +02:00
|
|
|
|
2017-07-31 10:57:22 +02:00
|
|
|
assert.Equal(tc.expectedStatusCode, resp.StatusCode, tcID)
|
|
|
|
assert.Contains(string(body), tc.expectedBodyContains, tcID)
|
|
|
|
})
|
2017-04-03 23:52:41 +02:00
|
|
|
}
|
|
|
|
}
|