From c594988d6f288dd7d36bdfb7794114ff37159a5f Mon Sep 17 00:00:00 2001 From: Jay Patel Date: Wed, 8 Nov 2023 11:55:07 -0800 Subject: [PATCH] Disable proxy test --- test/test_verify.py | 48 ++++++++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/test/test_verify.py b/test/test_verify.py index a106f1487f..5ad513b795 100755 --- a/test/test_verify.py +++ b/test/test_verify.py @@ -495,30 +495,30 @@ def runTestSet(driver, testSet, nameSalt, enable_stress_test): ############################ Proxy End To End Test ############################ - from test_suit.test_string_json_proxy import TestStringJsonProxy - from test_suites import EndToEndTestSuite - - print(datetime.now().strftime("\n%H:%M:%S "), "=== Last Round: Proxy E2E Test ===") - print("Proxy Test should be the last test, since it modifies the JVM values") - - proxy_tests_suite = [EndToEndTestSuite( - test_instance=TestStringJsonProxy(driver, nameSalt), clean=True, run_in_confluent=True, run_in_apache=True - )] - - end_to_end_proxy_tests_suite = [single_end_to_end_test.test_instance for single_end_to_end_test in proxy_tests_suite] - - proxy_suite_clean_enable_list = [single_end_to_end_test.clean for single_end_to_end_test in proxy_tests_suite] - - proxy_suite_runner = [] - - if testSet == "confluent": - proxy_suite_runner = [single_end_to_end_test.run_in_confluent for single_end_to_end_test in proxy_tests_suite] - elif testSet == "apache": - proxy_suite_runner = [single_end_to_end_test.run_in_apache for single_end_to_end_test in proxy_tests_suite] - elif testSet != "clean": - errorExit("Unknown testSet option {}, please input confluent, apache or clean".format(testSet)) - - execution(testSet, end_to_end_proxy_tests_suite, proxy_suite_clean_enable_list, proxy_suite_runner, driver, nameSalt) + # from test_suit.test_string_json_proxy import TestStringJsonProxy + # from test_suites import EndToEndTestSuite + # + # print(datetime.now().strftime("\n%H:%M:%S "), "=== Last Round: Proxy E2E Test ===") + # print("Proxy Test should be the last test, since it modifies the JVM values") + # + # proxy_tests_suite = [EndToEndTestSuite( + # test_instance=TestStringJsonProxy(driver, nameSalt), clean=True, run_in_confluent=True, run_in_apache=True + # )] + # + # end_to_end_proxy_tests_suite = [single_end_to_end_test.test_instance for single_end_to_end_test in proxy_tests_suite] + # + # proxy_suite_clean_enable_list = [single_end_to_end_test.clean for single_end_to_end_test in proxy_tests_suite] + # + # proxy_suite_runner = [] + # + # if testSet == "confluent": + # proxy_suite_runner = [single_end_to_end_test.run_in_confluent for single_end_to_end_test in proxy_tests_suite] + # elif testSet == "apache": + # proxy_suite_runner = [single_end_to_end_test.run_in_apache for single_end_to_end_test in proxy_tests_suite] + # elif testSet != "clean": + # errorExit("Unknown testSet option {}, please input confluent, apache or clean".format(testSet)) + # + # execution(testSet, end_to_end_proxy_tests_suite, proxy_suite_clean_enable_list, proxy_suite_runner, driver, nameSalt) ############################ Proxy End To End Test End ############################