498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
89 lines
3.8 KiB
Go
89 lines
3.8 KiB
Go
package dependency
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v3/util/paramtable"
|
|
)
|
|
|
|
func TestValidateMQType(t *testing.T) {
|
|
assert.Error(t, validateMQType(true, mqTypeDefault))
|
|
assert.Error(t, validateMQType(false, mqTypeDefault))
|
|
assert.Error(t, validateMQType(false, mqTypeRocksmq))
|
|
assert.NoError(t, validateMQType(true, mqTypeWoodpecker))
|
|
assert.NoError(t, validateMQType(false, mqTypeWoodpecker))
|
|
}
|
|
|
|
func TestSelectMQType(t *testing.T) {
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeDefault, mqEnable{true, true, true, true}), mqTypeRocksmq)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeDefault, mqEnable{false, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeDefault, mqEnable{false, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeDefault, mqEnable{false, false, true, true}), mqTypeKafka)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeDefault, mqEnable{false, false, false, true}), mqTypeWoodpecker)
|
|
assert.Panics(t, func() { mustSelectMQType(true, mqTypeDefault, mqEnable{false, false, false, false}) })
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeDefault, mqEnable{true, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeDefault, mqEnable{false, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeDefault, mqEnable{false, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeDefault, mqEnable{false, false, true, true}), mqTypeKafka)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeDefault, mqEnable{false, false, false, true}), mqTypeWoodpecker)
|
|
assert.Panics(t, func() { mustSelectMQType(false, mqTypeDefault, mqEnable{false, false, false, false}) })
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeRocksmq, mqEnable{true, true, true, true}), mqTypeRocksmq)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypePulsar, mqEnable{true, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeKafka, mqEnable{true, true, true, true}), mqTypeKafka)
|
|
assert.Equal(t, mustSelectMQType(true, mqTypeWoodpecker, mqEnable{true, true, true, true}), mqTypeWoodpecker)
|
|
assert.Panics(t, func() { mustSelectMQType(false, mqTypeRocksmq, mqEnable{true, true, true, true}) })
|
|
assert.Equal(t, mustSelectMQType(false, mqTypePulsar, mqEnable{true, true, true, true}), mqTypePulsar)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeKafka, mqEnable{true, true, true, true}), mqTypeKafka)
|
|
assert.Equal(t, mustSelectMQType(false, mqTypeWoodpecker, mqEnable{true, true, true, true}), mqTypeWoodpecker)
|
|
}
|
|
|
|
func TestTestRocksmqPath(t *testing.T) {
|
|
p1 := testRocksmqPath()
|
|
p2 := testRocksmqPath()
|
|
assert.NotEqual(t, p1, p2, "each call should return a unique path")
|
|
assert.Contains(t, p1, "rdb_data")
|
|
}
|
|
|
|
func TestNewDefaultFactory(t *testing.T) {
|
|
paramtable.Init()
|
|
f := NewDefaultFactory(true)
|
|
assert.NotNil(t, f)
|
|
assert.True(t, f.standAlone)
|
|
}
|
|
|
|
func TestMockDefaultFactory(t *testing.T) {
|
|
paramtable.Init()
|
|
f := MockDefaultFactory(false, paramtable.Get())
|
|
assert.NotNil(t, f)
|
|
assert.False(t, f.standAlone)
|
|
}
|
|
|
|
func TestHealthCheck(t *testing.T) {
|
|
paramtable.Init()
|
|
paramtable.Get().Save(paramtable.Get().PulsarCfg.WebAddress.Key, "")
|
|
paramtable.Get().Reset(paramtable.Get().PulsarCfg.WebAddress.Key)
|
|
paramtable.Get().Save(paramtable.Get().KafkaCfg.Address.Key, "")
|
|
paramtable.Get().Reset(paramtable.Get().KafkaCfg.Address.Key)
|
|
|
|
testCases := []struct {
|
|
mqType string
|
|
health bool
|
|
}{
|
|
{mqTypeRocksmq, true},
|
|
{mqTypePulsar, false},
|
|
{mqTypeKafka, false},
|
|
{mqTypeWoodpecker, true},
|
|
{"invalidType", false},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.mqType, func(t *testing.T) {
|
|
status := HealthCheck(tc.mqType)
|
|
assert.Equal(t, tc.mqType, status.MqType)
|
|
assert.Equal(t, tc.health, status.Health)
|
|
})
|
|
}
|
|
}
|