@@ -70,7 +70,7 @@ func TestStringProto(t *testing.T) {
70
70
}
71
71
}
72
72
73
- func TestAggregateProto (t * testing.T ) {
73
+ func TestSumAggregateProto (t * testing.T ) {
74
74
want := & btapb.Type {
75
75
Kind : & btapb.Type_AggregateType {
76
76
AggregateType : & btapb.Type_Aggregate {
@@ -114,6 +114,114 @@ func TestProtoBijection(t *testing.T) {
114
114
}
115
115
}
116
116
117
+ func TestMinAggregateProto (t * testing.T ) {
118
+ want := & btapb.Type {
119
+ Kind : & btapb.Type_AggregateType {
120
+ AggregateType : & btapb.Type_Aggregate {
121
+ InputType : & btapb.Type {
122
+ Kind : & btapb.Type_Int64Type {
123
+ Int64Type : & btapb.Type_Int64 {
124
+ Encoding : & btapb.Type_Int64_Encoding {
125
+ Encoding : & btapb.Type_Int64_Encoding_BigEndianBytes_ {
126
+ BigEndianBytes : & btapb.Type_Int64_Encoding_BigEndianBytes {
127
+ BytesType : & btapb.Type_Bytes {
128
+ Encoding : & btapb.Type_Bytes_Encoding {
129
+ Encoding : & btapb.Type_Bytes_Encoding_Raw_ {
130
+ Raw : & btapb.Type_Bytes_Encoding_Raw {},
131
+ },
132
+ },
133
+ },
134
+ },
135
+ },
136
+ },
137
+ },
138
+ },
139
+ },
140
+ Aggregator : & btapb.Type_Aggregate_Min_ {
141
+ Min : & btapb.Type_Aggregate_Min {},
142
+ },
143
+ },
144
+ },
145
+ }
146
+
147
+ got := AggregateType {Input : Int64Type {}, Aggregator : MinAggregator {}}.proto ()
148
+ if ! proto .Equal (got , want ) {
149
+ t .Errorf ("got type %v, want: %v" , got , want )
150
+ }
151
+ }
152
+
153
+ func TestMaxAggregateProto (t * testing.T ) {
154
+ want := & btapb.Type {
155
+ Kind : & btapb.Type_AggregateType {
156
+ AggregateType : & btapb.Type_Aggregate {
157
+ InputType : & btapb.Type {
158
+ Kind : & btapb.Type_Int64Type {
159
+ Int64Type : & btapb.Type_Int64 {
160
+ Encoding : & btapb.Type_Int64_Encoding {
161
+ Encoding : & btapb.Type_Int64_Encoding_BigEndianBytes_ {
162
+ BigEndianBytes : & btapb.Type_Int64_Encoding_BigEndianBytes {
163
+ BytesType : & btapb.Type_Bytes {
164
+ Encoding : & btapb.Type_Bytes_Encoding {
165
+ Encoding : & btapb.Type_Bytes_Encoding_Raw_ {
166
+ Raw : & btapb.Type_Bytes_Encoding_Raw {},
167
+ },
168
+ },
169
+ },
170
+ },
171
+ },
172
+ },
173
+ },
174
+ },
175
+ },
176
+ Aggregator : & btapb.Type_Aggregate_Max_ {
177
+ Max : & btapb.Type_Aggregate_Max {},
178
+ },
179
+ },
180
+ },
181
+ }
182
+
183
+ got := AggregateType {Input : Int64Type {}, Aggregator : MaxAggregator {}}.proto ()
184
+ if ! proto .Equal (got , want ) {
185
+ t .Errorf ("got type %v, want: %v" , got , want )
186
+ }
187
+ }
188
+
189
+ func TestHllAggregateProto (t * testing.T ) {
190
+ want := & btapb.Type {
191
+ Kind : & btapb.Type_AggregateType {
192
+ AggregateType : & btapb.Type_Aggregate {
193
+ InputType : & btapb.Type {
194
+ Kind : & btapb.Type_Int64Type {
195
+ Int64Type : & btapb.Type_Int64 {
196
+ Encoding : & btapb.Type_Int64_Encoding {
197
+ Encoding : & btapb.Type_Int64_Encoding_BigEndianBytes_ {
198
+ BigEndianBytes : & btapb.Type_Int64_Encoding_BigEndianBytes {
199
+ BytesType : & btapb.Type_Bytes {
200
+ Encoding : & btapb.Type_Bytes_Encoding {
201
+ Encoding : & btapb.Type_Bytes_Encoding_Raw_ {
202
+ Raw : & btapb.Type_Bytes_Encoding_Raw {},
203
+ },
204
+ },
205
+ },
206
+ },
207
+ },
208
+ },
209
+ },
210
+ },
211
+ },
212
+ Aggregator : & btapb.Type_Aggregate_HllppUniqueCount {
213
+ HllppUniqueCount : & btapb.Type_Aggregate_HyperLogLogPlusPlusUniqueCount {},
214
+ },
215
+ },
216
+ },
217
+ }
218
+
219
+ got := AggregateType {Input : Int64Type {}, Aggregator : HllppUniqueCountAggregator {}}.proto ()
220
+ if ! proto .Equal (got , want ) {
221
+ t .Errorf ("got type %v, want: %v" , got , want )
222
+ }
223
+ }
224
+
117
225
func TestNilChecks (t * testing.T ) {
118
226
// protoToType
119
227
if val , ok := protoToType (nil ).(unknown [btapb.Type ]); ! ok {
0 commit comments