File: assert_test.go

package info (click to toggle)
golang-github-viant-assertly 0.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 240 kB
  • sloc: makefile: 2
file content (200 lines) | stat: -rw-r--r-- 4,497 bytes parent folder | download
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package assertly

import (
	"fmt"
	"github.com/viant/toolbox"
	"strings"
	"testing"
)

func Test_AssertValues(t *testing.T) {
	var actual = `[
	{
		"id": 1,
		"name": "user 1",
		"perf_rank": 100,
		"perf_score": "6.50",
		"quiz": "{\n\t\"1\": {\n\t\t\"id\": 1,\n\t\t\"score\": 10,\n\t\t\"taken\": \"2018-01-10 16:02:01 UTC\"\n\t},\n\t\"2\": {\n\t\t\"id\": 2,\n\t\t\"score\": 3,\n\t\t\"taken\": \"2018-01-15 08:02:23 UTC\"\n\t}\n}",
		"visited": "2018-01-15 08:02:23Z"
	},
	{
	"id": 2,
	"name": "user 2",
	"perf_rank": 101,
	"perf_score": "7.00",
	"quiz": "{\n\t\"1\": {\n\t\t\"id\": 1,\n\t\t\"score\": 10,\n\t\t\"taken\": \"2018-01-11 13:01:48 UTC\"\n\t},\n\t\"2\": {\n\t\t\"id\": 2,\n\t\t\"score\": 4,\n\t\t\"taken\": \"2018-01-12 09:00:26 UTC\"\n\t}\n}",
	"visited": "2018-01-12 09:00:26Z"
	},
	{
	"id": 3,
	"name": "user 3",
	"perf_rank": 99,
	"perf_score": "5.00",
	"quiz": "{\n\t\"1\": {\n\t\t\"id\": 1,\n\t\t\"score\": 5,\n\t\t\"taken\": \"2018-01-10 05:01:33 UTC\"\n\t},\n\t\"2\": {\n\t\t\"id\": 2,\n\t\t\"score\": 5,\n\t\t\"taken\": \"2018-01-12 07:30:52 UTC\"\n\t}\n}",
	"visited": "2018-01-12 07:30:52Z"
	}
]`

	var expected = `[
	{
		"@indexBy@": [
			"id"
		],
		"@timeFormat@": "yyyy-MM-dd HH:mm:ss"
	},
	{
		"id": 1,
		"name": "user 1",
		"perf_rank": 100,
		"perf_score": 6.5,
		"quiz": {
			"1": {
				"id": 1,
				"score": 10,
				"taken": "2018-01-10 16:02:01 UTC"
			},
			"2": {
				"id": 2,
				"score": 3,
				"taken": "2018-01-15 08:02:23 UTC"
			}
		},
		"visited": "2018-01-15 08:02:23 UTC"
	},
	{
		"id": 2,
		"name": "user 2",
		"perf_rank": 101,
		"perf_score": 7,
		"quiz": {
			"1": {
				"id": 1,
				"score": 10,
				"taken": "2018-01-11 13:01:48 UTC"
			},
			"2": {
				"id": 2,
				"score": 4,
				"taken": "2018-01-12 09:00:26 UTC"
			}
		},
		"visited": "2018-01-12 09:00:26 UTC"
	},
	{
		"id": 3,
		"name": "user 3",
		"perf_rank": 99,
		"perf_score": 5,
		"quiz": {
			"1": {
				"id": 1,
				"score": 5,
				"taken": "2018-01-10 05:01:33 UTC"
			},
			"2": {
				"id": 2,
				"score": 5,
				"taken": "2018-01-12 07:30:52 UTC"
			}
		},
		"visited": "2018-01-12 07:30:52 UTC"
	}
]
`
	AssertValues(t, expected, actual)
}

type fooProvider struct{}

func (*fooProvider) Get(context toolbox.Context, arguments ...interface{}) (interface{}, error) {
	var args = []string{}
	for _, arg := range arguments {
		args = append(args, toolbox.AsString(arg))
	}
	return fmt.Sprintf("foo{%v}", strings.Join(args, ",")), nil
}

func Test_AssertValuesWithContext(t *testing.T) {
	ctx := NewDefaultContext()
	var provider toolbox.ValueProvider = &fooProvider{}
	ctx.Evaluator.ValueProviderRegistry.Register("foo", provider)

	var expected = map[string]string{
		"k1": "v1",
		"k2": "Macro test: <ds:foo[1,\"abc\"]>",
	}
	var actual = map[string]string{
		"k1": "v1",
		"k2": "Macro test: foo{1,abc}",
	}

	AssertValuesWithContext(ctx, t, expected, actual)
}

type rangePredicate struct {
	min    int
	max    int
	actual int
	err    error
}

func (p *rangePredicate) String() string {
	return fmt.Sprintf("min: %v, max: %v, actual: %v, err: %v", p.min, p.max, p.actual, p.err)
}

func (p *rangePredicate) Apply(value interface{}) bool {
	p.actual, p.err = toolbox.ToInt(value)
	return p.actual >= p.min && p.actual <= p.max
}

type inRangePredicateProvider struct{}

func (*inRangePredicateProvider) Get(context toolbox.Context, arguments ...interface{}) (interface{}, error) {
	if len(arguments) != 2 {
		return nil, fmt.Errorf("expected 2 arguments (min, max) but had: %v", len(arguments))
	}
	min, err := toolbox.ToInt(arguments[0])
	if err != nil {
		return nil, fmt.Errorf("invalid min %v", err)
	}
	max, err := toolbox.ToInt(arguments[1])
	if err != nil {
		return nil, fmt.Errorf("invalid min %v", err)
	}
	var predicate toolbox.Predicate = &rangePredicate{min: min, max: max}
	return &predicate, nil
}

func Test_AssertValuesWithContextPredicate(t *testing.T) {
	ctx := NewDefaultContext()
	var provider toolbox.ValueProvider = &inRangePredicateProvider{}
	ctx.Evaluator.ValueProviderRegistry.Register("inRange", provider)

	var actual = map[string]int{
		"k1": 1,
		"k2": 3,
	}

	var expected = map[string]string{
		"k1": "1",
		"k2": "<ds:inRange[2,10]>",
	}

	AssertValuesWithContext(ctx, t, expected, actual)
}

func Test_AssertValues_ConcreteValues(t *testing.T) {
	{
		var i = 0
		AssertValues(t, 0, &i, "int with *int")
	}
	{
		var i = 0
		AssertValues(t, 0.0, &i, "float with *int")
	}
	{
		var i = 0.0
		AssertValues(t, 0.0, &i, "float with *float")
	}

}