milvus/tests/integration
cai.zhang 3d78a452d7
Support escape string (#24848)
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
2023-07-25 10:29:01 +08:00
..
bulkinsert Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
crossclusterrouting fix invalid request in test which cause rootcoord segv (#25128) 2023-06-26 14:48:44 +08:00
getvector Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
hellomilvus Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
indexstat Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
insert Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
jsonexpr Support escape string (#24848) 2023-07-25 10:29:01 +08:00
rangesearch Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
refreshconfig Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
upsert Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
meta_watcher_test.go Remove calc_distance (#25663) 2023-07-18 14:23:20 +08:00
meta_watcher.go Fix integration tests logic (#24063) 2023-05-15 14:45:21 +08:00
minicluster_test.go Seperate integration test package to resolve interference between cases (#24331) 2023-05-23 17:51:25 +08:00
minicluster.go Migrate the ability to upload and download binlog to cpp (#22984) 2023-06-25 14:38:44 +08:00
OWNERS Trigger main workflow when integration test changed (#24020) 2023-05-11 09:51:19 +08:00
querynodev2_test.go Fix integration test not wait for index built (#24037) 2023-05-12 09:51:25 +08:00
README.md Add README for integration test (#24441) 2023-05-26 15:55:27 +08:00
suite.go Seperate integration test package to resolve interference between cases (#24331) 2023-05-23 17:51:25 +08:00
util_index.go Use go-api/v2 for milvus-proto (#24770) 2023-06-09 01:28:37 +08:00
util_insert.go Use go-api/v2 for milvus-proto (#24770) 2023-06-09 01:28:37 +08:00
util_query.go Use go-api/v2 for milvus-proto (#24770) 2023-06-09 01:28:37 +08:00
util_schema.go Use go-api/v2 for milvus-proto (#24770) 2023-06-09 01:28:37 +08:00

Integration test

This folder contains the integration test for Milvus components.

How to run integration test locally

Integration test still need some thirdparty components to start:

cd [milvus-folder]/deployments/docker/dev && docker-compose up -d

Run following script to start the full integration test:

cd [milvus-folder]
make milvus # milvus needs to be compiled to make cpp build ready
./scripts/run_intergration_test.sh

If you want to run single test case, you could execute command like this example

# mq, etcd, minio ready before
cd [milvus-folder]
source scripts/setenv.sh
cd tests/integration/[testcase-folder]/
go test -run "$testCaseName^" -testify.m "$subTestifyCaseName^" -race -v

Using suite

MiniClusterandMiniClusterSuite` provides lots of comment preset tool function to execute intergration test.

It is recommend to add a new test with testify/suite


import (
    // ...
    "github.com/milvus-io/milvus/tests/integration"
)

type NewSuite struct {
    integration.MiniClusterSuite
}


// Setups and teardowns, optional if no custom logic needed
// example to suite setup & teardown, same logic applies to test setup&teardown

func (s *NewSuite) SetupSuite() {
    s.MiniClusterSuite.SetupSuite()
    // customized setup
}

func (s *NewSuite) TearDownSuite() {
    s.MiniClusterSuite.TearDownSuite()
    // customized teardown
}

New folder for each new scenario

It's a known issue that integration test cases run in same process might affect due to some singleton component not fully cleaned.

As a temp solution, test cases are separated into different packages to run independently.