/** * * \section COPYRIGHT * * Copyright 2013-2020 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ #include "src/srslog/formatters/json_formatter.h" #include "srslte/srslog/detail/log_entry_metadata.h" #include "testing_helpers.h" #include using namespace srslog; /// Helper to build a log entry. static detail::log_entry_metadata build_log_entry_metadata() { // Create a time point 50000us from epoch. using tp_ty = std::chrono::time_point; tp_ty tp(std::chrono::microseconds(50000)); fmt::dynamic_format_arg_store store; store.push_back(88); return {tp, {10, true}, "Text %d", std::move(store), "ABC", 'Z', small_str_buffer()}; } static bool when_fully_filled_log_entry_then_everything_is_formatted() { fmt::memory_buffer buffer; json_formatter{}.format(build_log_entry_metadata(), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"log_entry\": \"Text 88\"\n" "}\n"; ASSERT_EQ(result, expected); return true; } static bool when_fully_filled_log_entry_with_hex_dump_then_everything_is_formatted() { auto entry = build_log_entry_metadata(); entry.hex_dump.resize(12); std::iota(entry.hex_dump.begin(), entry.hex_dump.end(), 0); fmt::memory_buffer buffer; json_formatter{}.format(std::move(entry), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"log_entry\": \"Text 88\",\n" " \"hex_dump\": \"00 01 02 03 04 05 06 07 08 09 0a 0b\"\n" "}\n"; ASSERT_EQ(result, expected); return true; } namespace { DECLARE_METRIC("SNR", snr_t, float, "dB"); DECLARE_METRIC("PWR", pwr_t, int, "dBm"); DECLARE_METRIC("CenterFreq", cfreq_t, unsigned, "MHz"); DECLARE_METRIC_SET("RF", myset1, snr_t, pwr_t, cfreq_t); DECLARE_METRIC("Throughput", thr_t, float, "MB/s"); DECLARE_METRIC("Address", ip_addr_t, std::string, ""); DECLARE_METRIC_SET("Network", myset2, thr_t, ip_addr_t); using basic_ctx_t = srslog::build_context_type; } // namespace static bool when_log_entry_with_only_basic_context_is_passed_then_context_is_formatted() { auto entry = build_log_entry_metadata(); entry.fmtstring = nullptr; basic_ctx_t ctx("UL Context"); ctx.get().write(-55.1); ctx.get().write(-10); ctx.get().write(1500); ctx.get().write(150.01); ctx.get().write("192.168.1.0"); fmt::memory_buffer buffer; json_formatter{}.format_ctx(ctx, std::move(entry), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"RF\": {\n" " \"SNR\": -55.1,\n" " \"PWR\": -10,\n" " \"CenterFreq\": 1500\n" " },\n" " \"Network\": {\n" " \"Throughput\": 150.01,\n" " \"Address\": \"192.168.1.0\"\n" " }\n" "}\n"; ASSERT_EQ(result, expected); return true; } static bool when_log_entry_with_message_and_basic_context_is_passed_then_context_is_formatted() { auto entry = build_log_entry_metadata(); basic_ctx_t ctx("UL Context"); ctx.get().write(-55.1); ctx.get().write(-10); ctx.get().write(1500); ctx.get().write(150.01); ctx.get().write("192.168.1.0"); fmt::memory_buffer buffer; json_formatter{}.format_ctx(ctx, std::move(entry), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"log_entry\": \"Text 88\",\n" " \"RF\": {\n" " \"SNR\": -55.1,\n" " \"PWR\": -10,\n" " \"CenterFreq\": 1500\n" " },\n" " \"Network\": {\n" " \"Throughput\": 150.01,\n" " \"Address\": \"192.168.1.0\"\n" " }\n" "}\n"; ASSERT_EQ(result, expected); return true; } namespace { DECLARE_METRIC("bearer_id", bearer_id_t, unsigned, ""); DECLARE_METRIC("qci", qci_t, unsigned, ""); DECLARE_METRIC_SET("bearer_container", bearer_set, bearer_id_t, qci_t); DECLARE_METRIC("ue_rnti", ue_rnti_t, unsigned, ""); DECLARE_METRIC("dl_cqi", dl_cqi_t, unsigned, ""); DECLARE_METRIC_LIST("bearer_list", bearer_list_t, std::vector); DECLARE_METRIC_SET("ue_container", ue_set, ue_rnti_t, dl_cqi_t, bearer_list_t); DECLARE_METRIC("type", entry_type_t, std::string, ""); DECLARE_METRIC("sector_id", sector_id_t, unsigned, ""); DECLARE_METRIC_LIST("ue_list", ue_list_t, std::vector); DECLARE_METRIC_SET("sector_metrics", sector_set, entry_type_t, sector_id_t, ue_list_t); DECLARE_METRIC_LIST("sector_list", sector_list_t, std::vector); using complex_ctx_t = srslog::build_context_type; } // namespace static bool when_log_entry_with_only_complex_context_is_passed_then_context_is_formatted() { complex_ctx_t ctx("UL Context"); auto entry = build_log_entry_metadata(); entry.fmtstring = nullptr; ctx.get().emplace_back(); ctx.at(0).get().emplace_back(); ctx.at(0).get().emplace_back(); ctx.at(0).at(0).get().emplace_back(); ctx.at(0).at(0).get().emplace_back(); ctx.at(0).at(1).get().emplace_back(); ctx.at(0).at(1).get().emplace_back(); fmt::memory_buffer buffer; json_formatter{}.format_ctx(ctx, std::move(entry), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"sector_list\": [\n" " {\n" " \"sector_metrics\": {\n" " \"type\": \"\",\n" " \"sector_id\": 0,\n" " \"ue_list\": [\n" " {\n" " \"ue_container\": {\n" " \"ue_rnti\": 0,\n" " \"dl_cqi\": 0,\n" " \"bearer_list\": [\n" " {\n" " \"bearer_container\": {\n" " \"bearer_id\": 0,\n" " \"qci\": 0\n" " }\n" " },\n" " {\n" " \"bearer_container\": {\n" " \"bearer_id\": 0,\n" " \"qci\": 0\n" " }\n" " }\n" " ]\n" " }\n" " },\n" " {\n" " \"ue_container\": {\n" " \"ue_rnti\": 0,\n" " \"dl_cqi\": 0,\n" " \"bearer_list\": [\n" " {\n" " \"bearer_container\": {\n" " \"bearer_id\": 0,\n" " \"qci\": 0\n" " }\n" " },\n" " {\n" " \"bearer_container\": {\n" " \"bearer_id\": 0,\n" " \"qci\": 0\n" " }\n" " }\n" " ]\n" " }\n" " }\n" " ]\n" " }\n" " }\n" " ]\n" "}\n"; ASSERT_EQ(result, expected); return true; } namespace { DECLARE_METRIC("list_metric2", list_metric2, unsigned, ""); DECLARE_METRIC_SET("metric_list_set", metric_list_set, list_metric2); DECLARE_METRIC_LIST("metrics_list", metrics_list, std::vector); DECLARE_METRIC("list_metric3", list_metric3, unsigned, ""); DECLARE_METRIC("list_metric4", list_metric4, unsigned, ""); using list_ctx_t = srslog::build_context_type; }; // namespace static bool when_context_with_empty_list_is_passed_then_list_object_is_empty() { list_ctx_t ctx("UL Context"); auto entry = build_log_entry_metadata(); entry.fmtstring = nullptr; fmt::memory_buffer buffer; json_formatter{}.format_ctx(ctx, std::move(entry), buffer); std::string result = fmt::to_string(buffer); std::string expected = "{\n" " \"list_metric3\": 0,\n" " \"list_metric4\": 0,\n" " \"metrics_list\": [\n" " ]\n" "}\n"; ASSERT_EQ(result, expected); return true; } int main() { TEST_FUNCTION(when_fully_filled_log_entry_then_everything_is_formatted); TEST_FUNCTION( when_fully_filled_log_entry_with_hex_dump_then_everything_is_formatted); TEST_FUNCTION( when_log_entry_with_only_basic_context_is_passed_then_context_is_formatted); TEST_FUNCTION( when_log_entry_with_message_and_basic_context_is_passed_then_context_is_formatted); TEST_FUNCTION( when_log_entry_with_only_complex_context_is_passed_then_context_is_formatted); TEST_FUNCTION( when_context_with_empty_list_is_passed_then_list_object_is_empty); return 0; }