-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder_test.go
53 lines (41 loc) · 1008 Bytes
/
encoder_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
//
// Copyright (C) 2024 Dmitry Kolesnikov
//
// This file may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
// https://github.com/kshard/fvecs
//
package fvecs_test
import (
"bytes"
"testing"
"github.com/fogfish/it/v2"
"github.com/kshard/fvecs"
)
func TestEncodeBVecs(t *testing.T) {
b := &bytes.Buffer{}
e := fvecs.NewEncoder[byte](b)
err := e.Write([]byte{1, 2, 3, 4, 5, 6, 7, 8, 9})
it.Then(t).Should(
it.Nil(err),
it.Seq(b.Bytes()).Equal(tbvecs...),
)
}
func TestEncodeIVecs(t *testing.T) {
b := &bytes.Buffer{}
e := fvecs.NewEncoder[uint32](b)
err := e.Write([]uint32{1, 2, 3, 4, 5, 6, 7, 8, 9})
it.Then(t).Should(
it.Nil(err),
it.Seq(b.Bytes()).Equal(tivecs...),
)
}
func TestEncodeFVecs(t *testing.T) {
b := &bytes.Buffer{}
e := fvecs.NewEncoder[float32](b)
err := e.Write([]float32{1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9})
it.Then(t).Should(
it.Nil(err),
it.Seq(b.Bytes()).Equal(tfvecs...),
)
}