mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
64f1b8c00b
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
183 lines
7.4 KiB
Python
183 lines
7.4 KiB
Python
import pytest
|
|
from time import sleep
|
|
|
|
from pymilvus import connections
|
|
from chaos.checker import (CreateChecker, InsertFlushChecker,
|
|
SearchChecker, QueryChecker, IndexChecker, Op)
|
|
from common.cus_resource_opts import CustomResourceOperations as CusResource
|
|
from utils.util_log import test_log as log
|
|
from chaos import chaos_commons as cc
|
|
from common.common_type import CaseLabel
|
|
from chaos import constants
|
|
from delayed_assert import expect, assert_expectations
|
|
|
|
|
|
def assert_statistic(checkers, expectations={}):
|
|
for k in checkers.keys():
|
|
# expect succ if no expectations
|
|
succ_rate = checkers[k].succ_rate()
|
|
total = checkers[k].total()
|
|
if expectations.get(k, '') == constants.FAIL:
|
|
log.info(f"Expect Fail: {str(k)} succ rate {succ_rate}, total: {total}")
|
|
expect(succ_rate < 0.49 or total < 2,
|
|
f"Expect Fail: {str(k)} succ rate {succ_rate}, total: {total}")
|
|
else:
|
|
log.info(f"Expect Succ: {str(k)} succ rate {succ_rate}, total: {total}")
|
|
expect(succ_rate > 0.90 or total > 2,
|
|
f"Expect Succ: {str(k)} succ rate {succ_rate}, total: {total}")
|
|
|
|
|
|
class TestChaosBase:
|
|
expect_create = constants.SUCC
|
|
expect_insert = constants.SUCC
|
|
expect_flush = constants.SUCC
|
|
expect_index = constants.SUCC
|
|
expect_search = constants.SUCC
|
|
expect_query = constants.SUCC
|
|
host = '127.0.0.1'
|
|
port = 19530
|
|
_chaos_config = None
|
|
health_checkers = {}
|
|
checker_threads = {}
|
|
|
|
def parser_testcase_config(self, chaos_yaml):
|
|
tests_yaml = constants.TESTS_CONFIG_LOCATION + 'testcases.yaml'
|
|
tests_config = cc.gen_experiment_config(tests_yaml)
|
|
test_collections = tests_config.get('Collections', None)
|
|
for t in test_collections:
|
|
test_chaos = t.get('testcase', {}).get('chaos', {})
|
|
if test_chaos in chaos_yaml:
|
|
expects = t.get('testcase', {}).get('expectation', {}).get('cluster_1_node', {})
|
|
log.info(f"yaml.expects: {expects}")
|
|
self.expect_create = expects.get(Op.create.value, constants.SUCC)
|
|
self.expect_insert = expects.get(Op.insert.value, constants.SUCC)
|
|
self.expect_flush = expects.get(Op.flush.value, constants.SUCC)
|
|
self.expect_index = expects.get(Op.index.value, constants.SUCC)
|
|
self.expect_search = expects.get(Op.search.value, constants.SUCC)
|
|
self.expect_query = expects.get(Op.query.value, constants.SUCC)
|
|
log.info(f"self.expects: create:{self.expect_create}, insert:{self.expect_insert}, "
|
|
f"flush:{self.expect_flush}, index:{self.expect_index}, "
|
|
f"search:{self.expect_search}, query:{self.expect_query}")
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
class TestChaos(TestChaosBase):
|
|
|
|
@pytest.fixture(scope="function", autouse=True)
|
|
def connection(self, host, port):
|
|
connections.add_connection(default={"host": host, "port": port})
|
|
conn = connections.connect(alias='default')
|
|
if conn is None:
|
|
raise Exception("no connections")
|
|
self.host = host
|
|
self.port = port
|
|
return conn
|
|
|
|
@pytest.fixture(scope="function", autouse=True)
|
|
def init_health_checkers(self, connection):
|
|
checkers = {
|
|
Op.create: CreateChecker(),
|
|
Op.insert: InsertFlushChecker(),
|
|
Op.flush: InsertFlushChecker(flush=True),
|
|
Op.index: IndexChecker(),
|
|
Op.search: SearchChecker(),
|
|
Op.query: QueryChecker()
|
|
}
|
|
self.health_checkers = checkers
|
|
|
|
def teardown(self):
|
|
chaos_res = CusResource(kind=self._chaos_config['kind'],
|
|
group=constants.CHAOS_GROUP,
|
|
version=constants.CHAOS_VERSION,
|
|
namespace=constants.CHAOS_NAMESPACE)
|
|
meta_name = self._chaos_config.get('metadata', None).get('name', None)
|
|
chaos_res.delete(meta_name, raise_ex=False)
|
|
for k, ch in self.health_checkers.items():
|
|
ch.terminate()
|
|
log.info(f"tear down: checker {k} terminated")
|
|
sleep(2)
|
|
for k, t in self.checker_threads.items():
|
|
log.info(f"Thread {k} is_alive(): {t.is_alive()}")
|
|
|
|
@pytest.mark.tags(CaseLabel.L3)
|
|
@pytest.mark.parametrize('chaos_yaml', cc.get_chaos_yamls())
|
|
def test_chaos(self, chaos_yaml):
|
|
# start the monitor threads to check the milvus ops
|
|
log.info("*********************Chaos Test Start**********************")
|
|
log.info(connections.get_connection_addr('default'))
|
|
self.checker_threads = cc.start_monitor_threads(self.health_checkers)
|
|
|
|
# parse chaos object
|
|
chaos_config = cc.gen_experiment_config(chaos_yaml)
|
|
self._chaos_config = chaos_config # cache the chaos config for tear down
|
|
log.info(chaos_config)
|
|
|
|
# parse the test expectations in testcases.yaml
|
|
if self.parser_testcase_config(chaos_yaml) is False:
|
|
log.error("Fail to get the testcase info in testcases.yaml")
|
|
assert False
|
|
|
|
# wait 20s
|
|
sleep(constants.WAIT_PER_OP * 2)
|
|
|
|
# assert statistic:all ops 100% succ
|
|
log.info("******1st assert before chaos: ")
|
|
assert_statistic(self.health_checkers)
|
|
|
|
# apply chaos object
|
|
chaos_res = CusResource(kind=chaos_config['kind'],
|
|
group=constants.CHAOS_GROUP,
|
|
version=constants.CHAOS_VERSION,
|
|
namespace=constants.CHAOS_NAMESPACE)
|
|
chaos_res.create(chaos_config)
|
|
log.info("chaos injected")
|
|
sleep(constants.WAIT_PER_OP * 2.1)
|
|
# reset counting
|
|
cc.reset_counting(self.health_checkers)
|
|
|
|
# wait 40s
|
|
sleep(constants.WAIT_PER_OP * 4)
|
|
|
|
for k, t in self.checker_threads.items():
|
|
log.info(f"10s later: Thread {k} is_alive(): {t.is_alive()}")
|
|
|
|
# # assert statistic
|
|
# log.info("******2nd assert after chaos injected: ")
|
|
# assert_statistic(self.health_checkers,
|
|
# expectations={Op.create: self.expect_create,
|
|
# Op.insert: self.expect_insert,
|
|
# Op.flush: self.expect_flush,
|
|
# Op.index: self.expect_index,
|
|
# Op.search: self.expect_search,
|
|
# Op.query: self.expect_query
|
|
# })
|
|
|
|
# delete chaos
|
|
meta_name = chaos_config.get('metadata', None).get('name', None)
|
|
chaos_res.delete(meta_name)
|
|
log.info("chaos deleted")
|
|
for k, t in self.checker_threads.items():
|
|
log.info(f"Thread {k} is_alive(): {t.is_alive()}")
|
|
sleep(2)
|
|
|
|
# reconnect if needed
|
|
sleep(constants.WAIT_PER_OP * 2)
|
|
cc.reconnect(connections, alias='default')
|
|
|
|
# reset counting again
|
|
cc.reset_counting(self.health_checkers)
|
|
|
|
# wait 50s (varies by feature)
|
|
sleep(constants.WAIT_PER_OP * 5)
|
|
|
|
# assert statistic: all ops success again
|
|
log.info("******3rd assert after chaos deleted: ")
|
|
assert_statistic(self.health_checkers)
|
|
|
|
# assert all expectations
|
|
assert_expectations()
|
|
|
|
log.info("*********************Chaos Test Completed**********************")
|