-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in DNS/adguard-home from websvc-patch to master Squashed commit of the following: commit b2a10fa Merge: 38f7491 8f53f65 Author: Ainar Garipov <[email protected]> Date: Wed Dec 11 17:33:15 2024 +0300 Merge branch 'master' into websvc-patch commit 38f7491 Author: Ainar Garipov <[email protected]> Date: Tue Dec 10 19:57:54 2024 +0300 next: add json merge patch utils
- Loading branch information
Showing
7 changed files
with
121 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Package jsonpatch contains utilities for JSON Merge Patch APIs. | ||
// | ||
// See https://www.rfc-editor.org/rfc/rfc7396. | ||
package jsonpatch | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
|
||
"github.com/AdguardTeam/golibs/errors" | ||
) | ||
|
||
// NonRemovable is a type that prevents JSON null from being used to try and | ||
// remove a value. | ||
type NonRemovable[T any] struct { | ||
Value T | ||
IsSet bool | ||
} | ||
|
||
// type check | ||
var _ json.Unmarshaler = (*NonRemovable[struct{}])(nil) | ||
|
||
// UnmarshalJSON implements the [json.Unmarshaler] interface for *NonRemovable. | ||
func (v *NonRemovable[T]) UnmarshalJSON(b []byte) (err error) { | ||
if v == nil { | ||
return errors.Error("jsonpatch.NonRemovable is nil") | ||
} | ||
|
||
if bytes.Equal(b, []byte("null")) { | ||
return errors.Error("property cannot be removed") | ||
} | ||
|
||
v.IsSet = true | ||
|
||
return json.Unmarshal(b, &v.Value) | ||
} | ||
|
||
// Set sets ptr if the value has been provided. | ||
func (v NonRemovable[T]) Set(ptr *T) { | ||
if v.IsSet { | ||
*ptr = v.Value | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package jsonpatch_test | ||
|
||
import ( | ||
"encoding/json" | ||
"testing" | ||
|
||
"github.com/AdguardTeam/AdGuardHome/internal/next/jsonpatch" | ||
"github.com/AdguardTeam/golibs/testutil" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestNonRemovable(t *testing.T) { | ||
type T struct { | ||
Value jsonpatch.NonRemovable[int] `json:"value"` | ||
} | ||
|
||
var v T | ||
|
||
err := json.Unmarshal([]byte(`{"value":null}`), &v) | ||
testutil.AssertErrorMsg(t, "property cannot be removed", err) | ||
|
||
err = json.Unmarshal([]byte(`{"value":42}`), &v) | ||
assert.NoError(t, err) | ||
|
||
var got int | ||
v.Value.Set(&got) | ||
|
||
assert.Equal(t, 42, got) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters