1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-30 02:40:33 +00:00
strimertul/utils/json_test.go

39 lines
718 B
Go
Raw Normal View History

package utils
import (
2024-03-15 22:48:34 +00:00
"encoding/json"
"testing"
2023-11-10 20:36:15 +00:00
"git.sr.ht/~ashkeel/containers/sync"
)
func TestLoadJSONToWrapped(t *testing.T) {
// Create test struct and object
type test struct {
TestValue string
}
testObj := test{
TestValue: "test",
}
// Encode test object to JSON
2024-03-15 22:48:34 +00:00
testByt, err := json.Marshal(testObj)
if err != nil {
t.Fatal(err)
}
// Create a wrapped instance of the test object
wrapped := sync.NewSync[test](test{})
// Load JSON to wrapped
2024-03-15 22:48:34 +00:00
err = LoadJSONToWrapped[test](string(testByt), wrapped)
if err != nil {
t.Fatal(err)
}
// Get the wrapped value and compare to original
if wrapped.Get().TestValue != testObj.TestValue {
t.Fatal("JSON was not loaded correctly")
}
}