-
Notifications
You must be signed in to change notification settings - Fork 8
/
sparsevec_test.go
76 lines (65 loc) · 1.77 KB
/
sparsevec_test.go
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
package pgvector_test
import (
"fmt"
"reflect"
"testing"
"github.com/pgvector/pgvector-go"
)
func TestNewSparseVector(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if !reflect.DeepEqual(vec.Slice(), []float32{1, 0, 2, 0, 3, 0}) {
t.Error()
}
}
func TestNewSparseVectorFromMap(t *testing.T) {
vec := pgvector.NewSparseVectorFromMap(map[int32]float32{2: 2, 4: 3, 0: 1, 3: 0}, 6)
if !reflect.DeepEqual(vec.Slice(), []float32{1, 0, 2, 0, 3, 0}) {
t.Error()
}
}
func TestSparseVectorDimensions(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if vec.Dimensions() != 6 {
t.Error()
}
}
func TestSparseVectorIndices(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if !reflect.DeepEqual(vec.Indices(), []int32{0, 2, 4}) {
t.Error()
}
}
func TestSparseVectorValues(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if !reflect.DeepEqual(vec.Values(), []float32{1, 2, 3}) {
t.Error()
}
}
func TestSparseVectorSlice(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if !reflect.DeepEqual(vec.Slice(), []float32{1, 0, 2, 0, 3, 0}) {
t.Error()
}
}
func TestSparseVectorString(t *testing.T) {
vec := pgvector.NewSparseVector([]float32{1, 0, 2, 0, 3, 0})
if fmt.Sprint(vec) != "{1:1,3:2,5:3}/6" {
t.Error()
}
}
func TestSparseVectorFromMapString(t *testing.T) {
vec := pgvector.NewSparseVectorFromMap(map[int32]float32{2: 2, 4: 3, 0: 1, 3: 0}, 6)
if fmt.Sprint(vec) != "{1:1,3:2,5:3}/6" {
t.Error()
}
}
func TestSparseVectorParse(t *testing.T) {
var vec pgvector.SparseVector
err := vec.Parse("{1:1,3:2,5:3}/6")
if err != nil {
panic(err)
}
if !reflect.DeepEqual(vec.Slice(), []float32{1, 0, 2, 0, 3, 0}) {
t.Error()
}
}