File: value_test.go

package info (click to toggle)
golang-github-getsentry-sentry-go 0.40.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,900 kB
  • sloc: makefile: 85; sh: 21
file content (164 lines) | stat: -rw-r--r-- 3,739 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
// Adapted from https://github.com/open-telemetry/opentelemetry-go/blob/cc43e01c27892252aac9a8f20da28cdde957a289/attribute/value.go
//
// Copyright The OpenTelemetry Authors
//
// 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 attribute

import (
	"testing"

	"github.com/google/go-cmp/cmp"
)

func TestValue(t *testing.T) {
	for _, testcase := range []struct {
		name      string
		value     Value
		wantType  Type
		wantValue interface{}
	}{
		{
			name:      "BoolValue correctly returns a boolean",
			value:     BoolValue(true),
			wantType:  BOOL,
			wantValue: true,
		},
		{
			name:      "Int64Value() correctly returns an int64",
			value:     Int64Value(42),
			wantType:  INT64,
			wantValue: int64(42),
		},
		{
			name:      "IntValue() correctly returns an int64",
			value:     IntValue(42),
			wantType:  INT64,
			wantValue: int64(42),
		},
		{
			name:      "Float64Value() correctly returns a float64 value",
			value:     Float64Value(42.1),
			wantType:  FLOAT64,
			wantValue: 42.1,
		},
		{
			name:      "StringValue() correctly returns a string value",
			value:     StringValue("foo"),
			wantType:  STRING,
			wantValue: "foo",
		},
		{
			name:      "Invalid value type",
			value:     Value{},
			wantType:  INVALID,
			wantValue: unknownValueType{},
		},
	} {
		if testcase.value.Type() != testcase.wantType {
			t.Errorf("wrong value type, got %#v, expected %#v", testcase.value.Type(), testcase.wantType)
		}
		got := testcase.value.AsInterface()
		if diff := cmp.Diff(testcase.wantValue, got); diff != "" {
			t.Errorf("+got, -want: %s", diff)
		}
	}
}

func TestValue_toString(t *testing.T) {
	for _, tt := range []struct {
		name  string
		value Value
		want  string
	}{
		{
			name:  "StringValue",
			value: StringValue("foo"),
			want:  "foo",
		},
		{
			name:  "Int64Value",
			value: Int64Value(42),
			want:  "42",
		},
		{
			name:  "IntValue",
			value: IntValue(42),
			want:  "42",
		},
		{
			name:  "Float64Value",
			value: Float64Value(42.1),
			want:  "42.1",
		},
		{
			name:  "BoolValue",
			value: BoolValue(true),
			want:  "true",
		},
		{
			name:  "Invalid Value",
			value: Value{},
			want:  "unknown",
		},
	} {
		str := tt.value.String()
		if str != tt.want {
			t.Errorf("expected %v, got: %v", tt.want, str)
		}
	}
}

func TestType_String(t *testing.T) {
	for _, testcase := range []struct {
		name  string
		value Value
		want  string
	}{
		{
			name:  "BoolValue correctly returns a boolean",
			value: BoolValue(true),
			want:  "bool",
		},
		{
			name:  "Int64Value() correctly returns an int64",
			value: Int64Value(42),
			want:  "int64",
		},
		{
			name:  "IntValue() correctly returns an int64",
			value: IntValue(42),
			want:  "int64",
		},
		{
			name:  "Float64Value() correctly returns a float64 value",
			value: Float64Value(42.1),
			want:  "float64",
		},
		{
			name:  "StringValue() correctly returns a string value",
			value: StringValue("foo"),
			want:  "string",
		},
		{
			name:  "Invalid value returns INVALID",
			value: Value{},
			want:  "invalid",
		},
	} {
		if testcase.value.Type().String() != testcase.want {
			t.Errorf("wrong value type, got %#v, expected %#v", testcase.value.Type().String(), testcase.want)
		}
	}
}