-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathbound_set_literal_view_test.go
More file actions
106 lines (91 loc) · 3.15 KB
/
Copy pathbound_set_literal_view_test.go
File metadata and controls
106 lines (91 loc) · 3.15 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
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 iceberg_test
import (
"slices"
"testing"
iceberg "github.com/apache/iceberg-go"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestBoundSetPredicateLiteralsCloneMutableMembers(t *testing.T) {
t.Parallel()
geometry, err := iceberg.GeometryTypeOf("srid:4326")
require.NoError(t, err)
geography, err := iceberg.GeographyTypeOf("srid:4326", "spherical")
require.NoError(t, err)
tests := []struct {
name string
typ iceberg.Type
}{
{name: "binary", typ: iceberg.PrimitiveTypes.Binary},
{name: "fixed", typ: iceberg.FixedTypeOf(16)},
{name: "geometry", typ: geometry},
{name: "geography", typ: geography},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
inputs := [][]byte{
[]byte("0123456789abcdef"),
[]byte("fedcba9876543210"),
}
predicateLiterals := make([]iceberg.Literal, len(inputs))
expectedLiterals := make([]iceberg.Literal, len(inputs))
for i, input := range inputs {
expected, err := iceberg.LiteralFromBytes(tt.typ, slices.Clone(input))
require.NoError(t, err)
expectedLiterals[i] = expected
if tt.typ.Equals(geometry) || tt.typ.Equals(geography) {
predicateLiterals[i], err = iceberg.LiteralFromBytes(tt.typ, slices.Clone(input))
require.NoError(t, err)
} else {
predicateLiterals[i] = iceberg.NewLiteral(slices.Clone(input))
}
}
predicate := iceberg.SetPredicate(
iceberg.OpIn,
iceberg.Reference("value"),
predicateLiterals,
)
schema := iceberg.NewSchema(1, iceberg.NestedField{ID: 1, Name: "value", Type: tt.typ})
bound, err := predicate.(iceberg.UnboundPredicate).Bind(schema, true)
require.NoError(t, err)
literals := bound.(iceberg.BoundSetPredicate).Literals()
for _, literal := range literals.Members() {
value, ok := literal.Any().([]byte)
require.True(t, ok)
value[0] ^= 0xff
}
for _, expected := range expectedLiterals {
assert.True(t, bound.(iceberg.BoundSetPredicate).Literals().Contains(expected))
}
assert.True(t, literals.All(func(literal iceberg.Literal) bool {
value, ok := literal.Any().([]byte)
assert.True(t, ok)
if !ok {
return false
}
value[0] ^= 0xff
return true
}))
for _, expected := range expectedLiterals {
assert.True(t, bound.(iceberg.BoundSetPredicate).Literals().Contains(expected))
}
})
}
}