2021-12-09 14:19:40 +08:00
|
|
|
// Licensed to the LF AI & Data foundation 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 indexcoord
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-09-16 16:56:49 +08:00
|
|
|
"github.com/milvus-io/milvus/api/commonpb"
|
|
|
|
"github.com/milvus-io/milvus/api/schemapb"
|
2021-12-09 14:19:40 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_getDimension(t *testing.T) {
|
2022-08-25 15:48:54 +08:00
|
|
|
req := &indexpb.CreateIndexRequest{
|
2021-12-09 14:19:40 +08:00
|
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
|
|
{
|
|
|
|
Key: "dim",
|
|
|
|
Value: "128",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
dim, err := getDimension(req)
|
|
|
|
assert.Equal(t, int64(128), dim)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
|
2022-08-25 15:48:54 +08:00
|
|
|
req2 := &indexpb.CreateIndexRequest{
|
2021-12-09 14:19:40 +08:00
|
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
|
|
{
|
|
|
|
Key: "dim",
|
|
|
|
Value: "one",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
dim, err = getDimension(req2)
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Equal(t, int64(0), dim)
|
|
|
|
|
2022-08-25 15:48:54 +08:00
|
|
|
req3 := &indexpb.CreateIndexRequest{
|
2021-12-09 14:19:40 +08:00
|
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
|
|
{
|
|
|
|
Key: "TypeParam-Key-1",
|
|
|
|
Value: "TypeParam-Value-1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
dim, err = getDimension(req3)
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Equal(t, int64(0), dim)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_estimateIndexSize(t *testing.T) {
|
|
|
|
memorySize, err := estimateIndexSize(10, 100, schemapb.DataType_FloatVector)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, uint64(4000), memorySize)
|
|
|
|
|
|
|
|
memorySize, err = estimateIndexSize(16, 100, schemapb.DataType_BinaryVector)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, uint64(200), memorySize)
|
|
|
|
|
|
|
|
memorySize, err = estimateIndexSize(10, 100, schemapb.DataType_Float)
|
2022-03-21 14:23:24 +08:00
|
|
|
assert.Nil(t, err)
|
2021-12-09 14:19:40 +08:00
|
|
|
assert.Equal(t, uint64(0), memorySize)
|
2022-03-21 14:23:24 +08:00
|
|
|
// assert.Error(t, err)
|
|
|
|
// assert.Equal(t, uint64(0), memorySize)
|
2021-12-09 14:19:40 +08:00
|
|
|
}
|
2022-03-29 15:35:27 +08:00
|
|
|
|
2022-07-07 14:44:21 +08:00
|
|
|
func Test_parseKey(t *testing.T) {
|
|
|
|
key := "test-ListObjects/1/"
|
|
|
|
buildID, err := parseBuildIDFromFilePath(key)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, int64(1), buildID)
|
|
|
|
|
|
|
|
key2 := "test-ListObjects/key1/"
|
|
|
|
_, err2 := parseBuildIDFromFilePath(key2)
|
|
|
|
assert.Error(t, err2)
|
|
|
|
}
|