-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathutils_test.go
More file actions
59 lines (53 loc) · 1.62 KB
/
utils_test.go
File metadata and controls
59 lines (53 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2019 Yunion
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jsonutils
import (
"fmt"
"testing"
"time"
)
func TestGetQueryStringArray(t *testing.T) {
for _, queryString := range []string{"search=zone", "search=abc&search=123&search=b", "search.0=123&search.1=abc"} {
jsonQuery, err := ParseQueryString(queryString)
if err != nil {
t.Errorf("Fail to parse query string")
} else {
t.Logf("query string: %s", jsonQuery.String())
}
search := GetQueryStringArray(jsonQuery, "search")
t.Logf("%s", search)
}
}
func TestGetArrayOfPrefix(t *testing.T) {
json := NewDict()
for i := 0; i < 10; i += 1 {
json.Add(NewString(fmt.Sprintf("value.%d", i)), fmt.Sprintf("key.%d", i))
}
retArray := GetArrayOfPrefix(json, "key")
if len(retArray) != 10 {
t.Errorf("fail to getarrayofprefix")
}
}
func TestNewTimeString(t *testing.T) {
t1 := time.Now()
j1 := NewTimeString(t1)
v1, err := j1.GetTime()
if err != nil {
t.Errorf("failed get time form time string %s", err)
}
t2 := time.Now()
if !t2.After(v1) {
t.Errorf("unexpected result, time now (%s) should after time string (%s)", t2, v1)
}
}