mg-transport-core/core/utils_test.go

333 lines
8.4 KiB
Go
Raw Permalink Normal View History

2019-09-18 18:02:40 +03:00
package core
import (
"encoding/json"
2021-11-03 17:27:56 +03:00
"errors"
2019-09-18 18:02:40 +03:00
"net/http"
"strings"
2019-09-18 18:02:40 +03:00
"testing"
"time"
"github.com/h2non/gock"
"github.com/op/go-logging"
2021-11-03 17:27:56 +03:00
retailcrm "github.com/retailcrm/api-client-go/v2"
2019-09-18 18:02:40 +03:00
v1 "github.com/retailcrm/mg-transport-api-client-go/v1"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
)
var (
testCRMURL = "https://fake-uri.retailcrm.pro"
2019-09-18 18:02:40 +03:00
testMGURL = "https://mg-url.example.com"
)
type UtilsTest struct {
suite.Suite
utils *Utils
}
func mgClient() *v1.MgClient {
return v1.New(testMGURL, "token")
}
2019-10-18 13:18:36 +03:00
func (u *UtilsTest) SetupSuite() {
2019-09-18 18:02:40 +03:00
logger := NewLogger("code", logging.DEBUG, DefaultLogFormatter())
awsConfig := ConfigAWS{
AccessKeyID: "access key id (will be removed)",
SecretAccessKey: "secret access key",
Region: "region",
Bucket: "bucket",
FolderName: "folder",
ContentType: "image/jpeg",
}
u.utils = NewUtils(awsConfig, logger, false)
u.utils.TokenCounter = 12345
}
func (u *UtilsTest) Test_ResetUtils() {
assert.Equal(u.T(), "access key id (will be removed)", u.utils.ConfigAWS.AccessKeyID)
2019-10-18 15:18:00 +03:00
assert.Equal(u.T(), uint32(12346), u.utils.TokenCounter)
2019-09-18 18:02:40 +03:00
assert.False(u.T(), u.utils.IsDebug)
awsConfig := u.utils.ConfigAWS
awsConfig.AccessKeyID = "access key id"
u.utils.resetUtils(awsConfig, true, 0)
assert.Equal(u.T(), "access key id", u.utils.ConfigAWS.AccessKeyID)
assert.Equal(u.T(), uint32(0), u.utils.TokenCounter)
assert.True(u.T(), u.utils.IsDebug)
}
func (u *UtilsTest) Test_GenerateToken() {
u.utils.TokenCounter = 12345
token := u.utils.GenerateToken()
assert.NotEmpty(u.T(), token)
assert.Equal(u.T(), uint32(12346), u.utils.TokenCounter)
}
func (u *UtilsTest) Test_GetAPIClient_FailRuntime() {
defer gock.Off()
2021-11-03 17:27:56 +03:00
gock.New(testCRMURL).
Reply(http.StatusInternalServerError)
2019-09-18 18:02:40 +03:00
2021-11-03 17:27:56 +03:00
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", []string{})
2019-09-18 18:02:40 +03:00
assert.Equal(u.T(), http.StatusInternalServerError, status)
assert.NotNil(u.T(), err)
}
func (u *UtilsTest) Test_GetAPIClient_FailAPI() {
defer gock.Off()
gock.New(testCRMURL).
Get("/credentials").
Reply(http.StatusBadRequest).
2021-11-03 17:27:56 +03:00
BodyString(`{"success": false, "errorMsg": "invalid credentials"}`)
2019-09-18 18:02:40 +03:00
2021-11-03 17:27:56 +03:00
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", []string{})
2019-09-18 18:02:40 +03:00
assert.Equal(u.T(), http.StatusBadRequest, status)
if assert.NotNil(u.T(), err) {
assert.Equal(u.T(), "invalid credentials", err.Error())
}
}
2021-12-13 16:46:41 +03:00
func (u *UtilsTest) Test_GetAPIClient_FailAPIScopes() {
2021-11-03 17:27:56 +03:00
resp := retailcrm.CredentialResponse{
2019-09-18 18:02:40 +03:00
Success: true,
2021-11-03 17:27:56 +03:00
Scopes: []string{},
2019-09-18 18:02:40 +03:00
SiteAccess: "all",
SitesAvailable: []string{},
}
data, _ := json.Marshal(resp)
defer gock.Off()
gock.New(testCRMURL).
Get("/credentials").
Reply(http.StatusOK).
BodyString(string(data))
2021-11-03 17:27:56 +03:00
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", DefaultScopes)
2019-09-18 18:02:40 +03:00
assert.Equal(u.T(), http.StatusBadRequest, status)
if assert.NotNil(u.T(), err) {
2021-11-03 17:27:56 +03:00
assert.True(u.T(), errors.Is(err, ErrInsufficientScopes))
2019-09-18 18:02:40 +03:00
}
}
2021-12-13 16:46:41 +03:00
func (u *UtilsTest) Test_GetAPIClient_FailAPICredentials() {
resp := retailcrm.CredentialResponse{
Success: true,
Credentials: []string{DefaultCredentials[0]},
SiteAccess: "all",
SitesAvailable: []string{},
}
data, _ := json.Marshal(resp)
defer gock.Off()
gock.New(testCRMURL).
Get("/credentials").
Reply(http.StatusOK).
BodyString(string(data))
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", DefaultScopes, DefaultCredentials)
assert.Equal(u.T(), http.StatusBadRequest, status)
if assert.NotNil(u.T(), err) {
assert.True(u.T(), errors.Is(err, ErrInsufficientScopes))
}
}
2019-09-18 18:02:40 +03:00
func (u *UtilsTest) Test_GetAPIClient_Success() {
2021-11-03 17:27:56 +03:00
resp := retailcrm.CredentialResponse{
Success: true,
Scopes: DefaultScopes,
2019-09-18 18:02:40 +03:00
SiteAccess: "all",
SitesAvailable: []string{"site"},
}
data, _ := json.Marshal(resp)
defer gock.Off()
gock.New(testCRMURL).
Get("/credentials").
Reply(http.StatusOK).
BodyString(string(data))
2021-11-03 17:27:56 +03:00
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", DefaultScopes)
2019-09-18 18:02:40 +03:00
require.NoError(u.T(), err)
assert.Equal(u.T(), 0, status)
}
2021-12-13 16:46:41 +03:00
func (u *UtilsTest) Test_GetAPIClient_SuccessCredentials() {
resp := retailcrm.CredentialResponse{
Success: true,
Credentials: DefaultCredentials,
SiteAccess: "all",
SitesAvailable: []string{"site"},
}
data, _ := json.Marshal(resp)
defer gock.Off()
gock.New(testCRMURL).
Get("/credentials").
Reply(http.StatusOK).
BodyString(string(data))
_, status, err := u.utils.GetAPIClient(testCRMURL, "key", DefaultScopes, DefaultCredentials)
require.NoError(u.T(), err)
assert.Equal(u.T(), 0, status)
}
2019-09-18 18:02:40 +03:00
func (u *UtilsTest) Test_UploadUserAvatar_FailGet() {
defer gock.Off()
gock.New("https://example.com")
uri, err := u.utils.UploadUserAvatar("https://example.com/image.jpg")
assert.Empty(u.T(), uri)
assert.Error(u.T(), err)
}
func (u *UtilsTest) Test_UploadUserAvatar_FailBadRequest() {
defer gock.Off()
gock.New("https://example.com").
Get("/image.jpg").
Reply(200).
BodyString(`no image here`)
uri, err := u.utils.UploadUserAvatar("https://example.com/image.jpg")
assert.Empty(u.T(), uri)
assert.Error(u.T(), err)
}
func (u *UtilsTest) Test_RemoveTrailingSlash() {
assert.Equal(u.T(), testCRMURL, u.utils.RemoveTrailingSlash(testCRMURL+"/"))
assert.Equal(u.T(), testCRMURL, u.utils.RemoveTrailingSlash(testCRMURL))
}
2021-11-03 17:27:56 +03:00
func (u *UtilsTest) TestUtils_CheckScopes() {
required := []string{"one", "two"}
scopes := []string{"one", "two"}
diff := u.utils.checkScopes(scopes, required)
assert.Equal(u.T(), 0, len(diff))
scopes = []string{"three", "four"}
diff = u.utils.checkScopes(scopes, required)
assert.Equal(u.T(), 2, len(diff))
assert.Equal(u.T(), []string{"one", "two"}, diff)
}
2019-09-18 18:02:40 +03:00
func TestUtils_GetMGItemData_FailRuntime_GetImage(t *testing.T) {
defer gock.Off()
gock.New(testMGURL)
gock.New("https://example.com/")
_, status, err := GetMGItemData(mgClient(), "https://example.com/item.jpg", "")
assert.Error(t, err)
assert.Equal(t, 0, status)
}
func TestUtils_GetMGItemData_FailAPI(t *testing.T) {
defer gock.Off()
gock.New("https://example.com/").
Get("/item.jpg").
Reply(200).
BodyString(`fake data`)
gock.New(testMGURL).
Post("/files/upload_by_url").
Reply(400).
BodyString(`{"errors": ["error text"]}`)
_, status, err := GetMGItemData(mgClient(), "https://example.com/item.jpg", "")
assert.Error(t, err)
assert.Equal(t, http.StatusBadRequest, status)
assert.Equal(t, "error text", err.Error())
}
func TestUtils_GetMGItemData_Success(t *testing.T) {
fileID := "file id"
size := 40
uri := "file uri"
resp := v1.UploadFileResponse{
ID: fileID,
Hash: "file hash",
Type: "image/jpeg",
Meta: v1.FileMeta{
Width: &size,
Height: &size,
},
MimeType: "image/jpeg",
Size: 250,
Url: &uri,
CreatedAt: time.Now(),
}
data, _ := json.Marshal(resp)
defer gock.Off()
gock.New("https://example.com/").
Get("/item.jpg").
Reply(200).
BodyString(`fake data`)
gock.New(testMGURL).
Post("/files/upload_by_url").
Reply(200).
BodyString(string(data))
response, status, err := GetMGItemData(mgClient(), "https://example.com/item.jpg", "caption")
require.NoError(t, err)
assert.Equal(t, http.StatusOK, status)
assert.Equal(t, fileID, response.ID)
assert.Equal(t, "caption", response.Caption)
}
func TestUtils_GetEntitySHA1(t *testing.T) {
entity := struct {
Field string
}{
Field: "value",
}
hash, err := GetEntitySHA1(entity)
require.NoError(t, err)
assert.Equal(t, "751b56fb98c9fd803140e8287b4236675554a668", hash)
}
func TestUtils_GetCurrencySymbol(t *testing.T) {
for code := range DefaultCurrencies() {
if strings.ToUpper(code) == defaultCurrencies[code] {
continue
}
assert.NotEqual(t, strings.ToUpper(code), GetCurrencySymbol(code))
}
assert.Equal(t, "XAG", GetCurrencySymbol("xag"))
2021-03-25 17:20:41 +03:00
assert.Equal(t, "MXN", GetCurrencySymbol("mxn"))
}
2019-09-18 18:02:40 +03:00
func TestUtils_ReplaceMarkdownSymbols(t *testing.T) {
test := "this *is* _test_ `string` [markdown"
expected := "this \\*is\\* \\_test\\_ \\`string\\` \\[markdown"
assert.Equal(t, expected, ReplaceMarkdownSymbols(test))
}
func TestUtils_FormatCurrencyValue(t *testing.T) {
assert.Equal(t, "-1.00", FormatCurrencyValue(-1))
assert.Equal(t, "100.00", FormatCurrencyValue(100))
assert.Equal(t, "111.11", FormatCurrencyValue(111.11))
assert.Equal(t, "123.46", FormatCurrencyValue(123.456789))
assert.Equal(t, "1000500.00", FormatCurrencyValue(1000500))
}
2019-09-18 18:02:40 +03:00
func TestUtils_Suite(t *testing.T) {
suite.Run(t, new(UtilsTest))
}