2023-11-02 12:27:58 +00:00
|
|
|
package integration_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/internal/interface/swagger"
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/internal/models"
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/pkg/client"
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/tests/helpers"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHistoryReport(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
jwtUtil := helpers.InitializeJWT()
|
|
|
|
token, err := jwtUtil.Create("807f1f77bcf81cd799439077")
|
2023-12-01 17:49:50 +00:00
|
|
|
|
2023-11-02 12:27:58 +00:00
|
|
|
if ok := assert.NoError(t, err); !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response, err := client.Post[struct{}, models.ResponseErrorHTTP](ctx, &client.RequestSettings{
|
2024-02-01 19:46:20 +00:00
|
|
|
URL: "http://" + "localhost:8000" + "/sendReport",
|
2023-11-02 12:27:58 +00:00
|
|
|
Body: swagger.SendReportJSONBody{Id: "10002"},
|
|
|
|
Headers: map[string]string{"Authorization": fmt.Sprintf("Bearer %s", token)},
|
|
|
|
})
|
|
|
|
if ok := assert.NoError(t, err); !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ok := assert.Nil(t, response.Error); !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Equal(t, 200, response.StatusCode)
|
|
|
|
}
|