convert_test.go (1658B)
1 // Copyright 2019 The Hugo Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 // http://www.apache.org/licenses/LICENSE-2.0
7 //
8 // Unless required by applicable law or agreed to in writing, software
9 // distributed under the License is distributed on an "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 // See the License for the specific language governing permissions and
12 // limitations under the License.
13
14 package types
15
16 import (
17 "encoding/json"
18 "testing"
19 "time"
20
21 qt "github.com/frankban/quicktest"
22 )
23
24 func TestToStringSlicePreserveString(t *testing.T) {
25 c := qt.New(t)
26
27 c.Assert(ToStringSlicePreserveString("Hugo"), qt.DeepEquals, []string{"Hugo"})
28 c.Assert(ToStringSlicePreserveString(qt.Commentf("Hugo")), qt.DeepEquals, []string{"Hugo"})
29 c.Assert(ToStringSlicePreserveString([]any{"A", "B"}), qt.DeepEquals, []string{"A", "B"})
30 c.Assert(ToStringSlicePreserveString([]int{1, 3}), qt.DeepEquals, []string{"1", "3"})
31 c.Assert(ToStringSlicePreserveString(nil), qt.IsNil)
32 }
33
34 func TestToString(t *testing.T) {
35 c := qt.New(t)
36
37 c.Assert(ToString([]byte("Hugo")), qt.Equals, "Hugo")
38 c.Assert(ToString(json.RawMessage("Hugo")), qt.Equals, "Hugo")
39 }
40
41 func TestToDuration(t *testing.T) {
42 c := qt.New(t)
43
44 c.Assert(ToDuration("200ms"), qt.Equals, 200*time.Millisecond)
45 c.Assert(ToDuration("200"), qt.Equals, 200*time.Millisecond)
46 c.Assert(ToDuration("4m"), qt.Equals, 4*time.Minute)
47 c.Assert(ToDuration("asdfadf"), qt.Equals, time.Duration(0))
48
49 }