mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
244d2c04f6
Related to #31293 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
137 lines
3.0 KiB
Go
137 lines
3.0 KiB
Go
// 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 entity
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type CollectionTTLSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *CollectionTTLSuite) TestValid() {
|
|
type testCase struct {
|
|
input string
|
|
expectErr bool
|
|
}
|
|
|
|
cases := []testCase{
|
|
{input: "a", expectErr: true},
|
|
{input: "1000", expectErr: false},
|
|
{input: "0", expectErr: false},
|
|
{input: "-10", expectErr: true},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
s.Run(tc.input, func() {
|
|
ca := ttlCollAttr{}
|
|
ca.value = tc.input
|
|
err := ca.Valid()
|
|
if tc.expectErr {
|
|
s.Error(err)
|
|
} else {
|
|
s.NoError(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *CollectionTTLSuite) TestCollectionTTL() {
|
|
type testCase struct {
|
|
input int64
|
|
expectErr bool
|
|
}
|
|
|
|
cases := []testCase{
|
|
{input: 1000, expectErr: false},
|
|
{input: 0, expectErr: false},
|
|
{input: -10, expectErr: true},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
s.Run(fmt.Sprintf("%d", tc.input), func() {
|
|
ca := CollectionTTL(tc.input)
|
|
key, value := ca.KeyValue()
|
|
s.Equal(cakTTL, key)
|
|
s.Equal(strconv.FormatInt(tc.input, 10), value)
|
|
err := ca.Valid()
|
|
if tc.expectErr {
|
|
s.Error(err)
|
|
} else {
|
|
s.NoError(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCollectionTTL(t *testing.T) {
|
|
suite.Run(t, new(CollectionTTLSuite))
|
|
}
|
|
|
|
type CollectionAutoCompactionSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *CollectionAutoCompactionSuite) TestValid() {
|
|
type testCase struct {
|
|
input string
|
|
expectErr bool
|
|
}
|
|
|
|
cases := []testCase{
|
|
{input: "a", expectErr: true},
|
|
{input: "true", expectErr: false},
|
|
{input: "false", expectErr: false},
|
|
{input: "", expectErr: true},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
s.Run(tc.input, func() {
|
|
ca := autoCompactionCollAttr{}
|
|
ca.value = tc.input
|
|
err := ca.Valid()
|
|
if tc.expectErr {
|
|
s.Error(err)
|
|
} else {
|
|
s.NoError(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *CollectionAutoCompactionSuite) TestCollectionAutoCompactionEnabled() {
|
|
cases := []bool{true, false}
|
|
|
|
for _, tc := range cases {
|
|
s.Run(fmt.Sprintf("%v", tc), func() {
|
|
ca := CollectionAutoCompactionEnabled(tc)
|
|
key, value := ca.KeyValue()
|
|
s.Equal(cakAutoCompaction, key)
|
|
s.Equal(strconv.FormatBool(tc), value)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCollectionAutoCompaction(t *testing.T) {
|
|
suite.Run(t, new(CollectionAutoCompactionSuite))
|
|
}
|