Skip to content

Commit ade6c5f

Browse files
made boolean omitempty values references
1 parent 653acd3 commit ade6c5f

File tree

3 files changed

+143
-6
lines changed

3 files changed

+143
-6
lines changed

pkg/notifications/channels_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ func TestUpdateChannel(t *testing.T) {
229229
t.Parallel()
230230
respJSON := fmt.Sprintf(`{ "data":%s }`, testUpdateChannelResponseJSON)
231231
notifications := newMockResponse(t, respJSON, http.StatusCreated)
232+
var falseValue = false
232233

233234
updateChannelInput := AiNotificationsChannelUpdate{
234235
Name: "test-notification-channel-1-update",
@@ -239,7 +240,7 @@ func TestUpdateChannel(t *testing.T) {
239240
Value: "{\\n\\t\\\"id\\\": \\\"test-update\\\"\\n}",
240241
},
241242
},
242-
Active: false,
243+
Active: &falseValue,
243244
}
244245

245246
expected := &AiNotificationsChannelResponse{

pkg/notifications/types.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ type AiNotificationsChannel struct {
589589
// AiNotificationsChannelFilter - Filter channel object
590590
type AiNotificationsChannelFilter struct {
591591
// active
592-
Active bool `json:"active,omitempty"`
592+
Active *bool `json:"active,omitempty"`
593593
// destinationId
594594
DestinationId string `json:"destinationId,omitempty"`
595595
// id
@@ -639,7 +639,7 @@ type AiNotificationsChannelSorter struct {
639639
// AiNotificationsChannelUpdate - Channel update object
640640
type AiNotificationsChannelUpdate struct {
641641
// active
642-
Active bool `json:"active,omitempty"`
642+
Active *bool `json:"active,omitempty"`
643643
// name
644644
Name string `json:"name,omitempty"`
645645
// properties
@@ -715,7 +715,7 @@ type AiNotificationsDestination struct {
715715
// AiNotificationsDestinationFilter - Filter destination object
716716
type AiNotificationsDestinationFilter struct {
717717
// active
718-
Active bool `json:"active,omitempty"`
718+
Active *bool `json:"active,omitempty"`
719719
// authType
720720
AuthType AiNotificationsAuthType `json:"authType,omitempty"`
721721
// id
@@ -763,11 +763,11 @@ type AiNotificationsDestinationSorter struct {
763763
// AiNotificationsDestinationUpdate - Destination update object
764764
type AiNotificationsDestinationUpdate struct {
765765
// active
766-
Active bool `json:"active,omitempty"`
766+
Active *bool `json:"active,omitempty"`
767767
// auth
768768
Auth *AiNotificationsCredentialsInput `json:"auth,omitempty"`
769769
// disableAuth
770-
DisableAuth bool `json:"disableAuth,omitempty"`
770+
DisableAuth *bool `json:"disableAuth,omitempty"`
771771
// name
772772
Name string `json:"name,omitempty"`
773773
// properties

pkg/notifications/types_unit_test.go

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
//go:build unit
2+
// +build unit
3+
4+
package notifications
5+
6+
import (
7+
"encoding/json"
8+
"testing"
9+
10+
"github.com/stretchr/testify/assert"
11+
)
12+
13+
14+
// Verify that boolean values with "empty" values (== false) are not ignored by json marshaller
15+
// If `false` is not included into input, it would be impossible to change any boolean flag to `false` in an update
16+
func TestAiNotificationsChannelFilter_OptionalBooleans_JsonFormat(t *testing.T) {
17+
t.Parallel()
18+
var falseValue = false
19+
var input = AiNotificationsChannelFilter{
20+
Name: "test-notification-channel-1-update",
21+
Active: &falseValue,
22+
}
23+
var serialized, err = json.Marshal(input)
24+
25+
assert.NoError(t, err)
26+
assert.Equal(
27+
t,
28+
"{\"active\":false,\"name\":\"test-notification-channel-1-update\",\"property\":{\"key\":\"\",\"value\":\"\"}}",
29+
string(serialized),
30+
)
31+
}
32+
33+
// Verify that an empty update input is serialized into an empty json
34+
func TestAiNotificationsChannelFilter_EmptyInput_JsonFormat(t *testing.T) {
35+
t.Parallel()
36+
var input = AiNotificationsChannelFilter{
37+
}
38+
39+
var serialized, err = json.Marshal(input)
40+
41+
assert.NoError(t, err)
42+
assert.Equal(t, "{\"property\":{\"key\":\"\",\"value\":\"\"}}", string(serialized))
43+
}
44+
45+
// Verify that boolean values with "empty" values (== false) are not ignored by json marshaller
46+
// If `false` is not included into input, it would be impossible to change any boolean flag to `false` in an update
47+
func TestAiNotificationsChannelUpdate_OptionalBooleans_JsonFormat(t *testing.T) {
48+
t.Parallel()
49+
var falseValue = false
50+
var input = AiNotificationsChannelUpdate{
51+
Name: "test-notification-channel-1-update",
52+
Properties: []AiNotificationsPropertyInput{},
53+
Active: &falseValue,
54+
}
55+
var serialized, err = json.Marshal(input)
56+
57+
assert.NoError(t, err)
58+
assert.Equal(
59+
t,
60+
"{\"active\":false,\"name\":\"test-notification-channel-1-update\"}",
61+
string(serialized),
62+
)
63+
}
64+
65+
// Verify that an empty update input is serialized into an empty json
66+
func TestAiNotificationsChannelUpdate_EmptyInput_JsonFormat(t *testing.T) {
67+
t.Parallel()
68+
var input = AiNotificationsChannelUpdate{}
69+
70+
var serialized, err = json.Marshal(input)
71+
72+
assert.NoError(t, err)
73+
assert.Equal(t, "{}", string(serialized))
74+
}
75+
76+
// Verify that boolean values with "empty" values (== false) are not ignored by json marshaller
77+
// If `false` is not included into input, it would be impossible to change any boolean flag to `false` in an update
78+
func TestAiNotificationsDestinationFilter_OptionalBooleans_JsonFormat(t *testing.T) {
79+
t.Parallel()
80+
var falseValue = false
81+
var input = AiNotificationsDestinationFilter{
82+
Name: "test-notification-channel-1-update",
83+
Active: &falseValue,
84+
}
85+
var serialized, err = json.Marshal(input)
86+
87+
assert.NoError(t, err)
88+
assert.Equal(
89+
t,
90+
"{\"active\":false,\"name\":\"test-notification-channel-1-update\",\"property\":{\"key\":\"\",\"value\":\"\"}}",
91+
string(serialized),
92+
)
93+
}
94+
95+
// Verify that an empty update input is serialized into an empty json
96+
func TestAiNotificationsDestinationFilter_EmptyInput_JsonFormat(t *testing.T) {
97+
t.Parallel()
98+
var input = AiNotificationsDestinationFilter{}
99+
100+
var serialized, err = json.Marshal(input)
101+
102+
assert.NoError(t, err)
103+
assert.Equal(t, "{\"property\":{\"key\":\"\",\"value\":\"\"}}", string(serialized))
104+
}
105+
106+
// Verify that boolean values with "empty" values (== false) are not ignored by json marshaller
107+
// If `false` is not included into input, it would be impossible to change any boolean flag to `false` in an update
108+
func TestAiNotificationsDestinationUpdate_OptionalBooleans_JsonFormat(t *testing.T) {
109+
t.Parallel()
110+
var falseValue = false
111+
var input = AiNotificationsDestinationUpdate{
112+
Name: "test-notification-channel-1-update",
113+
Properties: []AiNotificationsPropertyInput{},
114+
Active: &falseValue,
115+
DisableAuth: &falseValue,
116+
}
117+
var serialized, err = json.Marshal(input)
118+
119+
assert.NoError(t, err)
120+
assert.Equal(
121+
t,
122+
"{\"active\":false,\"disableAuth\":false,\"name\":\"test-notification-channel-1-update\"}",
123+
string(serialized),
124+
)
125+
}
126+
127+
// Verify that an empty update input is serialized into an empty json
128+
func TestAiNotificationsDestinationUpdate_EmptyInput_JsonFormat(t *testing.T) {
129+
t.Parallel()
130+
var input = AiNotificationsDestinationUpdate{}
131+
132+
var serialized, err = json.Marshal(input)
133+
134+
assert.NoError(t, err)
135+
assert.Equal(t, "{}", string(serialized))
136+
}

0 commit comments

Comments
 (0)