mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-22 04:46:03 +03:00
remove omitempty
for active
field in json tag for IntegrationModule
This commit is contained in:
commit
573cbb9679
@ -5118,7 +5118,7 @@ func TestClient_IntegrationModule(t *testing.T) {
|
|||||||
integrationModule := IntegrationModule{
|
integrationModule := IntegrationModule{
|
||||||
Code: code,
|
Code: code,
|
||||||
IntegrationCode: code,
|
IntegrationCode: code,
|
||||||
Active: false,
|
Active: new(bool),
|
||||||
Name: fmt.Sprintf("Integration module %s", name),
|
Name: fmt.Sprintf("Integration module %s", name),
|
||||||
AccountURL: fmt.Sprintf("http://example.com/%s/account", name),
|
AccountURL: fmt.Sprintf("http://example.com/%s/account", name),
|
||||||
BaseURL: fmt.Sprintf("http://example.com/%s", name),
|
BaseURL: fmt.Sprintf("http://example.com/%s", name),
|
||||||
@ -5126,10 +5126,13 @@ func TestClient_IntegrationModule(t *testing.T) {
|
|||||||
Logo: "https://cdn.worldvectorlogo.com/logos/github-icon.svg",
|
Logo: "https://cdn.worldvectorlogo.com/logos/github-icon.svg",
|
||||||
}
|
}
|
||||||
|
|
||||||
jr, _ := json.Marshal(&integrationModule)
|
jsonData := fmt.Sprintf(
|
||||||
|
`{"code":"%s","integrationCode":"%s","active":false,"name":"%s","logo":"%s","clientId":"%s","baseUrl":"%s","accountUrl":"%s"}`,
|
||||||
|
code, code, integrationModule.Name, integrationModule.Logo, integrationModule.ClientID, integrationModule.BaseURL, integrationModule.AccountURL,
|
||||||
|
)
|
||||||
|
|
||||||
pr := url.Values{
|
pr := url.Values{
|
||||||
"integrationModule": {string(jr[:])},
|
"integrationModule": {jsonData},
|
||||||
}
|
}
|
||||||
|
|
||||||
gock.New(crmURL).
|
gock.New(crmURL).
|
||||||
@ -5179,9 +5182,12 @@ func TestClient_IntegrationModule_Fail(t *testing.T) {
|
|||||||
|
|
||||||
defer gock.Off()
|
defer gock.Off()
|
||||||
|
|
||||||
|
active := new(bool)
|
||||||
|
*active = true
|
||||||
|
|
||||||
integrationModule := IntegrationModule{
|
integrationModule := IntegrationModule{
|
||||||
IntegrationCode: code,
|
IntegrationCode: code,
|
||||||
Active: false,
|
Active: active,
|
||||||
Name: fmt.Sprintf("Integration module %s", name),
|
Name: fmt.Sprintf("Integration module %s", name),
|
||||||
AccountURL: fmt.Sprintf("http://example.com/%s/account", name),
|
AccountURL: fmt.Sprintf("http://example.com/%s/account", name),
|
||||||
BaseURL: fmt.Sprintf("http://example.com/%s", name),
|
BaseURL: fmt.Sprintf("http://example.com/%s", name),
|
||||||
@ -5189,10 +5195,13 @@ func TestClient_IntegrationModule_Fail(t *testing.T) {
|
|||||||
Logo: "https://cdn.worldvectorlogo.com/logos/github-icon.svg",
|
Logo: "https://cdn.worldvectorlogo.com/logos/github-icon.svg",
|
||||||
}
|
}
|
||||||
|
|
||||||
jr, _ := json.Marshal(&integrationModule)
|
jsonData := fmt.Sprintf(
|
||||||
|
`{"integrationCode":"%s","active":true,"name":"%s","logo":"%s","clientId":"%s","baseUrl":"%s","accountUrl":"%s"}`,
|
||||||
|
code, integrationModule.Name, integrationModule.Logo, integrationModule.ClientID, integrationModule.BaseURL, integrationModule.AccountURL,
|
||||||
|
)
|
||||||
|
|
||||||
pr := url.Values{
|
pr := url.Values{
|
||||||
"integrationModule": {string(jr[:])},
|
"integrationModule": {jsonData},
|
||||||
}
|
}
|
||||||
|
|
||||||
gock.New(crmURL).
|
gock.New(crmURL).
|
||||||
|
2
types.go
2
types.go
@ -975,7 +975,7 @@ type DeliveryShipment struct {
|
|||||||
type IntegrationModule struct {
|
type IntegrationModule struct {
|
||||||
Code string `json:"code,omitempty"`
|
Code string `json:"code,omitempty"`
|
||||||
IntegrationCode string `json:"integrationCode,omitempty"`
|
IntegrationCode string `json:"integrationCode,omitempty"`
|
||||||
Active bool `json:"active,omitempty"`
|
Active *bool `json:"active,omitempty"`
|
||||||
Freeze bool `json:"freeze,omitempty"`
|
Freeze bool `json:"freeze,omitempty"`
|
||||||
Native bool `json:"native,omitempty"`
|
Native bool `json:"native,omitempty"`
|
||||||
Name string `json:"name,omitempty"`
|
Name string `json:"name,omitempty"`
|
||||||
|
Loading…
Reference in New Issue
Block a user