List Policies With Given Bucket Test (#1765)
List Policies With Given Bucket Test Incrementing the coverage
This commit is contained in:
committed by
GitHub
parent
ffa9436276
commit
676420a2b3
2
.github/workflows/jobs.yaml
vendored
2
.github/workflows/jobs.yaml
vendored
@@ -988,7 +988,7 @@ jobs:
|
|||||||
result=${result%\%}
|
result=${result%\%}
|
||||||
echo "result:"
|
echo "result:"
|
||||||
echo $result
|
echo $result
|
||||||
threshold=52.1
|
threshold=52.7
|
||||||
if (( $(echo "$result >= $threshold" |bc -l) )); then
|
if (( $(echo "$result >= $threshold" |bc -l) )); then
|
||||||
echo "It is equal or greater than threshold, passed!"
|
echo "It is equal or greater than threshold, passed!"
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -169,3 +169,47 @@ func TestRestartService(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ListPoliciesWithBucket(bucketName string) (*http.Response, error) {
|
||||||
|
/*
|
||||||
|
Helper function to List Policies With Given Bucket
|
||||||
|
HTTP Verb: GET
|
||||||
|
URL: /bucket-policy/{bucket}
|
||||||
|
*/
|
||||||
|
request, err := http.NewRequest(
|
||||||
|
"GET", "http://localhost:9090/api/v1/bucket-policy/"+bucketName, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
}
|
||||||
|
request.Header.Add("Cookie", fmt.Sprintf("token=%s", token))
|
||||||
|
request.Header.Add("Content-Type", "application/json")
|
||||||
|
client := &http.Client{
|
||||||
|
Timeout: 2 * time.Second,
|
||||||
|
}
|
||||||
|
response, err := client.Do(request)
|
||||||
|
return response, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestListPoliciesWithBucket(t *testing.T) {
|
||||||
|
|
||||||
|
// Test Variables
|
||||||
|
bucketName := "testlistpolicieswithbucket"
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
// Test
|
||||||
|
response, err := ListPoliciesWithBucket(bucketName)
|
||||||
|
assert.Nil(err)
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
parsedResponse := inspectHTTPResponse(response)
|
||||||
|
if response != nil {
|
||||||
|
assert.Equal(
|
||||||
|
200,
|
||||||
|
response.StatusCode,
|
||||||
|
parsedResponse,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user