|
| 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