aboutsummaryrefslogtreecommitdiff
path: root/internal/service/config_test.go
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2024-04-08 15:29:11 -0500
committerSlack Coder <slackcoder@server.ky>2024-07-18 11:47:49 -0500
commitae748859be8d6d3ed3c0929770f0c287ab6d6460 (patch)
tree284d3bf3d7fa496a9d334391eac996affc5a01b9 /internal/service/config_test.go
parentc2267767ca8ed06018d26a45b483c44b7c4234cf (diff)
downloadmirror-0.0.1-dev.tar.xz (sig)
Port to Golangv0.0.1-dev
Diffstat (limited to 'internal/service/config_test.go')
-rw-r--r--internal/service/config_test.go54
1 files changed, 54 insertions, 0 deletions
diff --git a/internal/service/config_test.go b/internal/service/config_test.go
new file mode 100644
index 0000000..c9af1e7
--- /dev/null
+++ b/internal/service/config_test.go
@@ -0,0 +1,54 @@
+package service
+
+import (
+ "encoding/json"
+ "testing"
+ "time"
+
+ "github.com/stretchr/testify/require"
+)
+
+func TestDurationMarshal(t *testing.T) {
+ tests := []struct {
+ arg Duration
+ exp string
+ }{
+ {
+ Duration{time.Second},
+ "\"1s\"",
+ },
+ {
+ Duration{time.Minute},
+ "\"1m0s\"",
+ },
+ }
+
+ for _, test := range tests {
+ v, err := json.Marshal(test.arg)
+ require.NoError(t, err)
+ require.Equal(t, test.exp, string(v))
+ }
+}
+
+func TestDurationUnmarshal(t *testing.T) {
+ tests := []struct {
+ arg string
+ exp Duration
+ }{
+ {
+ "\"1s\"",
+ Duration{time.Second},
+ },
+ {
+ "\"1m0s\"",
+ Duration{time.Minute},
+ },
+ }
+
+ for _, test := range tests {
+ var v Duration
+ err := json.Unmarshal([]byte(test.arg), &v)
+ require.NoError(t, err)
+ require.Equal(t, test.exp.Duration, v.Duration)
+ }
+}