#!/usr/bin/env python3 # Copyright (C) 2023 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License a # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from python.generators.diff_tests.testing import Path, DataPath, Metric from python.generators.diff_tests.testing import Csv, Json, TextProto from python.generators.diff_tests.testing import DiffTestBlueprint from python.generators.diff_tests.testing import TestSuite class ChromeParser(TestSuite): # Log messages. def test_chrome_log_message(self): return DiffTestBlueprint( trace=TextProto(r""" packet { timestamp: 0 incremental_state_cleared: true trusted_packet_sequence_id: 1 track_descriptor { uuid: 12345 thread { pid: 123 tid: 345 } parent_uuid: 0 chrome_thread { thread_type: THREAD_POOL_FG_WORKER } } } packet { trusted_packet_sequence_id: 1 timestamp: 10 track_event { track_uuid: 12345 categories: "cat1" type: TYPE_INSTANT name: "slice1" log_message { body_iid: 1 source_location_iid: 3 } } interned_data { log_message_body { iid: 1 body: "log message" } source_locations { iid: 3 function_name: "func" file_name: "foo.cc" line_number: 123 } } } """), query=""" SELECT utid, tag, msg, prio FROM android_logs; """, # If the log_message_body doesn't have any priority, a default 4 (i.e. # INFO) is assumed (otherwise the UI will not show the message). out=Csv(""" "utid","tag","msg","prio" 1,"foo.cc:123","log message",4 """)) def test_chrome_log_message_priority(self): return DiffTestBlueprint( trace=TextProto(r""" packet { timestamp: 0 incremental_state_cleared: true trusted_packet_sequence_id: 1 track_descriptor { uuid: 12345 thread { pid: 123 tid: 345 } parent_uuid: 0 chrome_thread { thread_type: THREAD_POOL_FG_WORKER } } } packet { trusted_packet_sequence_id: 1 timestamp: 10 track_event { track_uuid: 12345 categories: "cat1" type: TYPE_INSTANT name: "slice1" log_message { body_iid: 1 source_location_iid: 3 prio: PRIO_WARN } } interned_data { log_message_body { iid: 1 body: "log message" } source_locations { iid: 3 function_name: "func" file_name: "foo.cc" line_number: 123 } } } """), query=""" SELECT utid, tag, msg, prio FROM android_logs; """, out=Csv(""" "utid","tag","msg","prio" 1,"foo.cc:123","log message",5 """)) def test_chrome_log_message_args(self): return DiffTestBlueprint( trace=TextProto(r""" packet { timestamp: 0 incremental_state_cleared: true trusted_packet_sequence_id: 1 track_descriptor { uuid: 12345 thread { pid: 123 tid: 345 } parent_uuid: 0 chrome_thread { thread_type: THREAD_POOL_FG_WORKER } } } packet { trusted_packet_sequence_id: 1 timestamp: 10 track_event { track_uuid: 12345 categories: "cat1" type: TYPE_INSTANT name: "slice1" log_message { body_iid: 1 source_location_iid: 3 } } interned_data { log_message_body { iid: 1 body: "log message" } source_locations { iid: 3 function_name: "func" file_name: "foo.cc" line_number: 123 } } } """), query=Path('chrome_log_message_args_test.sql'), out=Csv(""" "log_message","function_name","file_name","line_number" "log message","func","foo.cc",123 """))