diff --git a/tools/trace_analyzer_test.cc b/tools/trace_analyzer_test.cc index d98ea2e80..8a2aae6d2 100644 --- a/tools/trace_analyzer_test.cc +++ b/tools/trace_analyzer_test.cc @@ -188,7 +188,10 @@ TEST_F(TraceAnalyzerTest, Get) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/get"; std::string file_path; - std::vector paras = {"-analyze_get"}; + std::vector paras = { + "-analyze_get=true", "-analyze_put=false", + "-analyze_delete=false", "-analyze_single_delete=false", + "-analyze_range_delete=false", "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -254,7 +257,10 @@ TEST_F(TraceAnalyzerTest, Put) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/put"; std::string file_path; - std::vector paras = {"-analyze_put"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=true", + "-analyze_delete=false", "-analyze_single_delete=false", + "-analyze_range_delete=false", "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -298,7 +304,7 @@ TEST_F(TraceAnalyzerTest, Put) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 0 0 0 0 0 0 2"}; + std::vector all_qps = {"0 1 0 0 0 0 0 0 1"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true); @@ -325,7 +331,10 @@ TEST_F(TraceAnalyzerTest, Delete) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/delete"; std::string file_path; - std::vector paras = {"-analyze_delete"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=false", + "-analyze_delete=true", "-analyze_single_delete=false", + "-analyze_range_delete=false", "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -370,7 +379,7 @@ TEST_F(TraceAnalyzerTest, Delete) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 1 0 0 0 0 0 3"}; + std::vector all_qps = {"0 0 1 0 0 0 0 0 1"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true); @@ -391,7 +400,11 @@ TEST_F(TraceAnalyzerTest, Merge) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/merge"; std::string file_path; - std::vector paras = {"-analyze_merge"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=false", + "-analyze_delete=false", "-analyze_merge=true", + "-analyze_single_delete=false", "-analyze_range_delete=false", + "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -435,7 +448,7 @@ TEST_F(TraceAnalyzerTest, Merge) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 1 0 0 1 0 0 4"}; + std::vector all_qps = {"0 0 0 0 0 1 0 0 1"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true); @@ -463,7 +476,11 @@ TEST_F(TraceAnalyzerTest, SingleDelete) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/single_delete"; std::string file_path; - std::vector paras = {"-analyze_single_delete"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=false", + "-analyze_delete=false", "-analyze_merge=false", + "-analyze_single_delete=true", "-analyze_range_delete=false", + "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -508,7 +525,7 @@ TEST_F(TraceAnalyzerTest, SingleDelete) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 1 1 0 1 0 0 5"}; + std::vector all_qps = {"0 0 0 1 0 0 0 0 1"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true); @@ -530,7 +547,11 @@ TEST_F(TraceAnalyzerTest, DeleteRange) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/range_delete"; std::string file_path; - std::vector paras = {"-analyze_range_delete"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=false", + "-analyze_delete=false", "-analyze_merge=false", + "-analyze_single_delete=false", "-analyze_range_delete=true", + "-analyze_iterator=false"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -576,7 +597,7 @@ TEST_F(TraceAnalyzerTest, DeleteRange) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 1 1 2 1 0 0 7"}; + std::vector all_qps = {"0 0 0 0 2 0 0 0 2"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true); @@ -599,7 +620,11 @@ TEST_F(TraceAnalyzerTest, Iterator) { std::string trace_path = test_path_ + "/trace"; std::string output_path = test_path_ + "/iterator"; std::string file_path; - std::vector paras = {"-analyze_iterator"}; + std::vector paras = { + "-analyze_get=false", "-analyze_put=false", + "-analyze_delete=false", "-analyze_merge=false", + "-analyze_single_delete=false", "-analyze_range_delete=false", + "-analyze_iterator=true"}; paras.push_back("-output_dir=" + output_path); paras.push_back("-trace_path=" + trace_path); paras.push_back("-key_space_dir=" + test_path_); @@ -645,7 +670,7 @@ TEST_F(TraceAnalyzerTest, Iterator) { CheckFileContent(k_whole_prefix, file_path, true); // Check the overall qps - std::vector all_qps = {"1 1 1 1 2 1 1 1 9"}; + std::vector all_qps = {"0 0 0 0 0 0 1 1 2"}; file_path = output_path + "/test-qps_stats.txt"; CheckFileContent(all_qps, file_path, true);