utils_test.go 13.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
//
// 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 storage

import (
	"bytes"
	"crypto/rand"
	"encoding/binary"
18 19 20
	"encoding/json"
	"errors"
	"fmt"
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
	"testing"

	"github.com/milvus-io/milvus/internal/util/funcutil"
	"github.com/milvus-io/milvus/internal/util/uniquegenerator"

	"github.com/milvus-io/milvus/internal/kv"

	"github.com/stretchr/testify/assert"

	memkv "github.com/milvus-io/milvus/internal/kv/mem"
)

type mockLessHeaderDataKV struct {
}

func (kv *mockLessHeaderDataKV) Load(key string) (string, error) {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) MultiLoad(keys []string) ([]string, error) {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) LoadWithPrefix(key string) ([]string, []string, error) {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) Save(key, value string) error {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) MultiSave(kvs map[string]string) error {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) Remove(key string) error {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) MultiRemove(keys []string) error {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) RemoveWithPrefix(key string) error {
	panic("implement me")
}

func (kv *mockLessHeaderDataKV) Close() {
}

func (kv *mockLessHeaderDataKV) LoadPartial(key string, start, end int64) ([]byte, error) {
	header := &baseEventHeader{}

	headerSize := binary.Size(header)
	mockSize := headerSize - 1

	ret := make([]byte, mockSize)
	_, _ = rand.Read(ret)
	return ret, nil
}

func newMockLessHeaderDataKV() *mockLessHeaderDataKV {
	return &mockLessHeaderDataKV{}
}

type mockWrongHeaderDataKV struct {
}

func (kv *mockWrongHeaderDataKV) Load(key string) (string, error) {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) MultiLoad(keys []string) ([]string, error) {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) LoadWithPrefix(key string) ([]string, []string, error) {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) Save(key, value string) error {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) MultiSave(kvs map[string]string) error {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) Remove(key string) error {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) MultiRemove(keys []string) error {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) RemoveWithPrefix(key string) error {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) Close() {
	panic("implement me")
}

func (kv *mockWrongHeaderDataKV) LoadPartial(key string, start, end int64) ([]byte, error) {
	header := &baseEventHeader{}

	header.EventLength = -1
	header.NextPosition = -1

	buffer := bytes.Buffer{}
	_ = binary.Write(&buffer, binary.LittleEndian, header)

	return buffer.Bytes(), nil
}

func newMockWrongHeaderDataKV() kv.DataKV {
	return &mockWrongHeaderDataKV{}
}

141
func TestGetBinlogSize(t *testing.T) {
142 143 144
	memoryKV := memkv.NewMemoryKV()
	defer memoryKV.Close()

145
	key := "TestGetBinlogSize"
146 147 148 149 150

	var size int64
	var err error

	// key not in memoryKV
151
	size, err = GetBinlogSize(memoryKV, key)
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
	assert.NoError(t, err)
	assert.Zero(t, size)

	// normal binlog key, for example, index binlog
	indexBuildID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	version := int64(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	collectionID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	partitionID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	segmentID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	fieldID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	indexName := funcutil.GenRandomStr()
	indexID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	indexParams := make(map[string]string)
	indexParams["index_type"] = "IVF_FLAT"
	datas := []*Blob{
		{
			Key:   "ivf1",
			Value: []byte{1, 2, 3},
		},
		{
			Key:   "ivf2",
			Value: []byte{4, 5, 6},
		},
		{
			Key:   "large",
			Value: []byte(funcutil.RandomString(maxLengthPerRowOfIndexFile + 1)),
		},
	}

	codec := NewIndexFileBinlogCodec()
	defer codec.Close()

	serializedBlobs, err := codec.Serialize(indexBuildID, version, collectionID, partitionID, segmentID, fieldID, indexParams, indexName, indexID, datas)
	assert.Nil(t, err)

	for _, blob := range serializedBlobs {
		err = memoryKV.Save(blob.Key, string(blob.Value))
		assert.Nil(t, err)

191
		size, err = GetBinlogSize(memoryKV, blob.Key)
192 193 194 195 196 197
		assert.Nil(t, err)
		assert.Equal(t, size+int64(binary.Size(MagicNumber)), int64(len(blob.Value)))
	}
}

// cover case that failed to read event header
198
func TestGetBinlogSize_less_header(t *testing.T) {
199 200
	mockKV := newMockLessHeaderDataKV()

201
	key := "TestGetBinlogSize_less_header"
202

203
	_, err := GetBinlogSize(mockKV, key)
204 205 206 207
	assert.Error(t, err)
}

// cover case that file not in binlog format
208
func TestGetBinlogSize_not_in_binlog_format(t *testing.T) {
209 210
	mockKV := newMockWrongHeaderDataKV()

211
	key := "TestGetBinlogSize_not_in_binlog_format"
212

213
	_, err := GetBinlogSize(mockKV, key)
214 215
	assert.Error(t, err)
}
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533

func TestEstimateMemorySize(t *testing.T) {
	memoryKV := memkv.NewMemoryKV()
	defer memoryKV.Close()

	key := "TestEstimateMemorySize"

	var size int64
	var err error

	// key not in memoryKV
	_, err = EstimateMemorySize(memoryKV, key)
	assert.Error(t, err)

	// normal binlog key, for example, index binlog
	indexBuildID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	version := int64(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	collectionID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	partitionID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	segmentID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	fieldID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	indexName := funcutil.GenRandomStr()
	indexID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
	indexParams := make(map[string]string)
	indexParams["index_type"] = "IVF_FLAT"
	datas := []*Blob{
		{
			Key:   "ivf1",
			Value: []byte{1, 2, 3},
		},
		{
			Key:   "ivf2",
			Value: []byte{4, 5, 6},
		},
		{
			Key:   "large",
			Value: []byte(funcutil.RandomString(maxLengthPerRowOfIndexFile + 1)),
		},
	}

	codec := NewIndexFileBinlogCodec()
	defer codec.Close()

	serializedBlobs, err := codec.Serialize(indexBuildID, version, collectionID, partitionID, segmentID, fieldID, indexParams, indexName, indexID, datas)
	assert.Nil(t, err)

	for _, blob := range serializedBlobs {
		err = memoryKV.Save(blob.Key, string(blob.Value))
		assert.Nil(t, err)

		buf := bytes.NewBuffer(blob.Value)
		desc := &descriptorEvent{}

		_, _ = readMagicNumber(buf)
		desc, _ = ReadDescriptorEvent(buf)

		size, err = EstimateMemorySize(memoryKV, blob.Key)
		assert.Nil(t, err)
		assert.Equal(t, fmt.Sprintf("%v", desc.Extras[originalSizeKey]), fmt.Sprintf("%v", size))
	}
}

// cover case that failed to read event header
func TestEstimateMemorySize_less_header(t *testing.T) {
	mockKV := newMockLessHeaderDataKV()

	key := "TestEstimateMemorySize_less_header"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}

// cover case that file not in binlog format
func TestEstimateMemorySize_not_in_binlog_format(t *testing.T) {
	mockKV := newMockWrongHeaderDataKV()

	key := "TestEstimateMemorySize_not_in_binlog_format"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}

type mockFailedToGetDescDataKV struct {
}

func (kv *mockFailedToGetDescDataKV) Load(key string) (string, error) {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) MultiLoad(keys []string) ([]string, error) {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) LoadWithPrefix(key string) ([]string, []string, error) {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) Save(key, value string) error {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) MultiSave(kvs map[string]string) error {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) Remove(key string) error {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) MultiRemove(keys []string) error {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) RemoveWithPrefix(key string) error {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) Close() {
	panic("implement me")
}

func (kv *mockFailedToGetDescDataKV) LoadPartial(key string, start, end int64) ([]byte, error) {
	header := &eventHeader{}
	header.EventLength = 20
	headerSize := binary.Size(header)

	if end-start > int64(headerSize) {
		return nil, errors.New("mock failed to get desc data")
	}

	buf := bytes.Buffer{}
	_ = binary.Write(&buf, binary.LittleEndian, header)
	return buf.Bytes(), nil
}

func newMockFailedToGetDescDataKV() *mockFailedToGetDescDataKV {
	return &mockFailedToGetDescDataKV{}
}

// cover case that failed to get descriptor event content
func TestEstimateMemorySize_failed_to_load_desc(t *testing.T) {
	mockKV := newMockFailedToGetDescDataKV()

	key := "TestEstimateMemorySize_failed_to_load_desc"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}

type mockLessDescDataKV struct {
}

func (kv *mockLessDescDataKV) Load(key string) (string, error) {
	panic("implement me")
}

func (kv *mockLessDescDataKV) MultiLoad(keys []string) ([]string, error) {
	panic("implement me")
}

func (kv *mockLessDescDataKV) LoadWithPrefix(key string) ([]string, []string, error) {
	panic("implement me")
}

func (kv *mockLessDescDataKV) Save(key, value string) error {
	panic("implement me")
}

func (kv *mockLessDescDataKV) MultiSave(kvs map[string]string) error {
	panic("implement me")
}

func (kv *mockLessDescDataKV) Remove(key string) error {
	panic("implement me")
}

func (kv *mockLessDescDataKV) MultiRemove(keys []string) error {
	panic("implement me")
}

func (kv *mockLessDescDataKV) RemoveWithPrefix(key string) error {
	panic("implement me")
}

func (kv *mockLessDescDataKV) Close() {
	panic("implement me")
}

func (kv *mockLessDescDataKV) LoadPartial(key string, start, end int64) ([]byte, error) {
	header := &baseEventHeader{}
	header.EventLength = 20

	buffer := bytes.Buffer{}
	_ = binary.Write(&buffer, binary.LittleEndian, header)

	// no event data
	return buffer.Bytes(), nil

	/*
		desc := &descriptorEvent{}
		desc.ExtraLength = 2
		desc.ExtraBytes = []byte{1, 2}
		buffer := bytes.Buffer{}
		_ = binary.Write(&buffer, binary.LittleEndian, desc)
		// extra not in json format
		return buffer.Bytes(), nil
	*/
}

func newMockLessDescDataKV() *mockLessDescDataKV {
	return &mockLessDescDataKV{}
}

func TestEstimateMemorySize_less_desc_data(t *testing.T) {
	mockKV := newMockLessDescDataKV()

	key := "TestEstimateMemorySize_less_desc_data"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}

type mockOriginalSizeDataKV struct {
	impl func(key string, start, end int64) ([]byte, error)
}

func (kv *mockOriginalSizeDataKV) Load(key string) (string, error) {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) MultiLoad(keys []string) ([]string, error) {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) LoadWithPrefix(key string) ([]string, []string, error) {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) Save(key, value string) error {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) MultiSave(kvs map[string]string) error {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) Remove(key string) error {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) MultiRemove(keys []string) error {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) RemoveWithPrefix(key string) error {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) Close() {
	panic("implement me")
}

func (kv *mockOriginalSizeDataKV) LoadPartial(key string, start, end int64) ([]byte, error) {
	if kv.impl != nil {
		return kv.impl(key, start, end)
	}
	return nil, nil
}

func newMockOriginalSizeDataKV() *mockOriginalSizeDataKV {
	return &mockOriginalSizeDataKV{}
}

func TestEstimateMemorySize_no_original_size(t *testing.T) {
	mockKV := newMockOriginalSizeDataKV()
	mockKV.impl = func(key string, start, end int64) ([]byte, error) {
		desc := &descriptorEvent{}
		desc.descriptorEventHeader.EventLength = 20
		desc.descriptorEventData = *newDescriptorEventData()
		extra := make(map[string]interface{})
		extra["key"] = "value"
		extraBytes, _ := json.Marshal(extra)
		desc.ExtraBytes = extraBytes
		desc.ExtraLength = int32(len(extraBytes))
		buf := bytes.Buffer{}
		_ = desc.descriptorEventHeader.Write(&buf)
		_ = desc.descriptorEventData.Write(&buf)
		return buf.Bytes(), nil
	}

	key := "TestEstimateMemorySize_no_original_size"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}

func TestEstimateMemorySize_cannot_convert_original_size_to_int(t *testing.T) {
	mockKV := newMockOriginalSizeDataKV()
	mockKV.impl = func(key string, start, end int64) ([]byte, error) {
		desc := &descriptorEvent{}
		desc.descriptorEventHeader.EventLength = 20
		desc.descriptorEventData = *newDescriptorEventData()
		extra := make(map[string]interface{})
		extra[originalSizeKey] = "value"
		extraBytes, _ := json.Marshal(extra)
		desc.ExtraBytes = extraBytes
		desc.ExtraLength = int32(len(extraBytes))
		buf := bytes.Buffer{}
		_ = desc.descriptorEventHeader.Write(&buf)
		_ = desc.descriptorEventData.Write(&buf)
		return buf.Bytes(), nil
	}

	key := "TestEstimateMemorySize_cannot_convert_original_size_to_int"

	_, err := EstimateMemorySize(mockKV, key)
	assert.Error(t, err)
}