/* * Copyright (C) 2018 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 at * * 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. */ #include #include #include #include #include #include #include #include #include "perfetto/base/build_config.h" #include "perfetto/base/logging.h" #include "perfetto/base/status.h" #include "perfetto/ext/base/scoped_file.h" #include "perfetto/ext/base/string_utils.h" #include "perfetto/trace_processor/basic_types.h" #include "perfetto/trace_processor/iterator.h" #include "perfetto/trace_processor/status.h" #include "perfetto/trace_processor/trace_processor.h" #include "protos/perfetto/common/descriptor.pbzero.h" #include "protos/perfetto/trace_processor/trace_processor.pbzero.h" #include "src/base/test/utils.h" #include "test/gtest_and_gmock.h" namespace perfetto::trace_processor { namespace { using testing::HasSubstr; constexpr size_t kMaxChunkSize = 4ul * 1024 * 1024; TEST(TraceProcessorCustomConfigTest, SkipInternalMetricsMatchingMountPath) { auto config = Config(); config.skip_builtin_metric_paths = {"android/"}; auto processor = TraceProcessor::CreateInstance(config); processor->NotifyEndOfFile(); // Check that andorid metrics have not been loaded. auto it = processor->ExecuteQuery( "select count(*) from trace_metrics " "where name = 'android_cpu';"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 0); // Check that other metrics have been loaded. it = processor->ExecuteQuery( "select count(*) from trace_metrics " "where name = 'trace_metadata';"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 1); } TEST(TraceProcessorCustomConfigTest, EmptyStringSkipsAllMetrics) { auto config = Config(); config.skip_builtin_metric_paths = {""}; auto processor = TraceProcessor::CreateInstance(config); processor->NotifyEndOfFile(); // Check that other metrics have been loaded. auto it = processor->ExecuteQuery( "select count(*) from trace_metrics " "where name = 'trace_metadata';"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 0); } TEST(TraceProcessorCustomConfigTest, HandlesMalformedMountPath) { auto config = Config(); config.skip_builtin_metric_paths = {"androi"}; auto processor = TraceProcessor::CreateInstance(config); processor->NotifyEndOfFile(); // Check that andorid metrics have been loaded. auto it = processor->ExecuteQuery( "select count(*) from trace_metrics " "where name = 'android_cpu';"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 1); } class TraceProcessorIntegrationTest : public ::testing::Test { public: TraceProcessorIntegrationTest() : processor_(TraceProcessor::CreateInstance(Config())) {} protected: base::Status LoadTrace(const char* name, size_t min_chunk_size = 512, size_t max_chunk_size = kMaxChunkSize) { EXPECT_LE(min_chunk_size, max_chunk_size); base::ScopedFstream f( fopen(base::GetTestDataPath(std::string("test/data/") + name).c_str(), "rbe")); std::minstd_rand0 rnd_engine(0); std::uniform_int_distribution dist(min_chunk_size, max_chunk_size); while (!feof(*f)) { size_t chunk_size = dist(rnd_engine); std::unique_ptr buf(new uint8_t[chunk_size]); auto rsize = fread(reinterpret_cast(buf.get()), 1, chunk_size, *f); auto status = processor_->Parse(std::move(buf), rsize); if (!status.ok()) return status; } processor_->NotifyEndOfFile(); return util::OkStatus(); } Iterator Query(const std::string& query) { return processor_->ExecuteQuery(query); } TraceProcessor* Processor() { return processor_.get(); } size_t RestoreInitialTables() { return processor_->RestoreInitialTables(); } private: std::unique_ptr processor_; }; TEST_F(TraceProcessorIntegrationTest, AndroidSchedAndPs) { ASSERT_TRUE(LoadTrace("android_sched_and_ps.pb").ok()); auto it = Query( "select count(*), max(ts) - min(ts) from sched " "where dur != 0 and utid != 0"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 139793); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 19684308497); ASSERT_FALSE(it.Next()); } TEST_F(TraceProcessorIntegrationTest, TraceBounds) { ASSERT_TRUE(LoadTrace("android_sched_and_ps.pb").ok()); auto it = Query("select start_ts, end_ts from trace_bounds"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 81473009948313); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 81492700784311); ASSERT_FALSE(it.Next()); } // Tests that the duration of the last slice is accounted in the computation // of the trace boundaries. Linux ftraces tend to hide this problem because // after the last sched_switch there's always a "wake" event which causes the // raw table to fix the bounds. TEST_F(TraceProcessorIntegrationTest, TraceBoundsUserspaceOnly) { ASSERT_TRUE(LoadTrace("sfgate.json").ok()); auto it = Query("select start_ts, end_ts from trace_bounds"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 2213649212614000); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 2213689745140000); ASSERT_FALSE(it.Next()); } TEST_F(TraceProcessorIntegrationTest, Hash) { auto it = Query("select HASH()"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, static_cast(0xcbf29ce484222325)); it = Query("select HASH('test')"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, static_cast(0xf9e6e6ef197c2b25)); it = Query("select HASH('test', 1)"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, static_cast(0xa9cb070fdc15f7a4)); } #if !PERFETTO_BUILDFLAG(PERFETTO_LLVM_DEMANGLE) && \ !PERFETTO_BUILDFLAG(PERFETTO_OS_WIN) #define MAYBE_Demangle DISABLED_Demangle #else #define MAYBE_Demangle Demangle #endif TEST_F(TraceProcessorIntegrationTest, MAYBE_Demangle) { auto it = Query("select DEMANGLE('_Znwm')"); ASSERT_TRUE(it.Next()); EXPECT_STRCASEEQ(it.Get(0).string_value, "operator new(unsigned long)"); it = Query("select DEMANGLE('_ZN3art6Thread14CreateCallbackEPv')"); ASSERT_TRUE(it.Next()); EXPECT_STRCASEEQ(it.Get(0).string_value, "art::Thread::CreateCallback(void*)"); it = Query("select DEMANGLE('test')"); ASSERT_TRUE(it.Next()); EXPECT_TRUE(it.Get(0).is_null()); } #if !PERFETTO_BUILDFLAG(PERFETTO_LLVM_DEMANGLE) #define MAYBE_DemangleRust DISABLED_DemangleRust #else #define MAYBE_DemangleRust DemangleRust #endif TEST_F(TraceProcessorIntegrationTest, MAYBE_DemangleRust) { auto it = Query( "select DEMANGLE(" "'_RNvNvMs0_NtNtNtCsg1Z12QU66Yk_3std3sys4unix6threadNtB7_" "6Thread3new12thread_start')"); ASSERT_TRUE(it.Next()); EXPECT_STRCASEEQ(it.Get(0).string_value, "::new::thread_start"); it = Query("select DEMANGLE('_RNvCsdV139EorvfX_14keystore2_main4main')"); ASSERT_TRUE(it.Next()); ASSERT_STRCASEEQ(it.Get(0).string_value, "keystore2_main::main"); it = Query("select DEMANGLE('_R')"); ASSERT_TRUE(it.Next()); ASSERT_TRUE(it.Get(0).is_null()); } #if PERFETTO_BUILDFLAG(PERFETTO_TP_JSON) TEST_F(TraceProcessorIntegrationTest, Sfgate) { ASSERT_TRUE(LoadTrace("sfgate.json", strlen("{\"traceEvents\":[")).ok()); auto it = Query( "select count(*), max(ts) - min(ts) " "from slice s inner join thread_track t " "on s.track_id = t.id where utid != 0"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 43357); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 40532506000); ASSERT_FALSE(it.Next()); } TEST_F(TraceProcessorIntegrationTest, UnsortedTrace) { ASSERT_TRUE( LoadTrace("unsorted_trace.json", strlen("{\"traceEvents\":[")).ok()); auto it = Query("select ts, depth from slice order by ts"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 50000); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 0); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).type, SqlValue::kLong); ASSERT_EQ(it.Get(0).long_value, 100000); ASSERT_EQ(it.Get(1).type, SqlValue::kLong); ASSERT_EQ(it.Get(1).long_value, 1); ASSERT_FALSE(it.Next()); } TEST_F(TraceProcessorIntegrationTest, SerializeMetricDescriptors) { std::vector desc_set_bytes = Processor()->GetMetricDescriptors(); protos::pbzero::DescriptorSet::Decoder desc_set(desc_set_bytes.data(), desc_set_bytes.size()); ASSERT_TRUE(desc_set.has_descriptors()); int trace_metrics_count = 0; for (auto desc = desc_set.descriptors(); desc; ++desc) { protos::pbzero::DescriptorProto::Decoder proto_desc(*desc); if (proto_desc.name().ToStdString() == ".perfetto.protos.TraceMetrics") { ASSERT_TRUE(proto_desc.has_field()); trace_metrics_count++; } } // There should be exactly one definition of TraceMetrics. This can be not // true if we're not deduping descriptors properly. ASSERT_EQ(trace_metrics_count, 1); } TEST_F(TraceProcessorIntegrationTest, ComputeMetricsFormattedExtension) { std::string metric_output; base::Status status = Processor()->ComputeMetricText( std::vector{"test_chrome_metric"}, TraceProcessor::MetricResultFormat::kProtoText, &metric_output); ASSERT_TRUE(status.ok()); // Extension fields are output as [fully.qualified.name]. ASSERT_EQ(metric_output, "[perfetto.protos.test_chrome_metric] {\n" " test_value: 1\n" "}"); } TEST_F(TraceProcessorIntegrationTest, ComputeMetricsFormattedNoExtension) { std::string metric_output; base::Status status = Processor()->ComputeMetricText( std::vector{"trace_metadata"}, TraceProcessor::MetricResultFormat::kProtoText, &metric_output); ASSERT_TRUE(status.ok()); // Check that metric result starts with trace_metadata field. Since this is // not an extension field, the field name is not fully qualified. ASSERT_TRUE(metric_output.rfind("trace_metadata {") == 0); } // TODO(hjd): Add trace to test_data. TEST_F(TraceProcessorIntegrationTest, DISABLED_AndroidBuildTrace) { ASSERT_TRUE(LoadTrace("android_build_trace.json", strlen("[\n{")).ok()); } TEST_F(TraceProcessorIntegrationTest, DISABLED_Clusterfuzz14357) { ASSERT_FALSE(LoadTrace("clusterfuzz_14357", 4096).ok()); } #endif // PERFETTO_BUILDFLAG(PERFETTO_TP_JSON) TEST_F(TraceProcessorIntegrationTest, Clusterfuzz14730) { ASSERT_TRUE(LoadTrace("clusterfuzz_14730", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz14753) { ASSERT_TRUE(LoadTrace("clusterfuzz_14753", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz14762) { ASSERT_TRUE(LoadTrace("clusterfuzz_14762", 4096ul * 1024).ok()); auto it = Query("select sum(value) from stats where severity = 'error';"); ASSERT_TRUE(it.Next()); ASSERT_GT(it.Get(0).long_value, 0); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz14767) { ASSERT_TRUE(LoadTrace("clusterfuzz_14767", 4096ul * 1024).ok()); auto it = Query("select sum(value) from stats where severity = 'error';"); ASSERT_TRUE(it.Next()); ASSERT_GT(it.Get(0).long_value, 0); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz14799) { ASSERT_TRUE(LoadTrace("clusterfuzz_14799", 4096ul * 1024).ok()); auto it = Query("select sum(value) from stats where severity = 'error';"); ASSERT_TRUE(it.Next()); ASSERT_GT(it.Get(0).long_value, 0); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz15252) { ASSERT_TRUE(LoadTrace("clusterfuzz_15252", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, Clusterfuzz17805) { // This trace is garbage but is detected as a systrace. However, it should // still parse successfully as we try to be graceful with encountering random // data in systrace as they can have arbitrary print events from the kernel. ASSERT_TRUE(LoadTrace("clusterfuzz_17805", 4096).ok()); } // Failing on DCHECKs during import because the traces aren't really valid. #if PERFETTO_DCHECK_IS_ON() #define MAYBE_Clusterfuzz20215 DISABLED_Clusterfuzz20215 #define MAYBE_Clusterfuzz20292 DISABLED_Clusterfuzz20292 #define MAYBE_Clusterfuzz21178 DISABLED_Clusterfuzz21178 #define MAYBE_Clusterfuzz21890 DISABLED_Clusterfuzz21890 #define MAYBE_Clusterfuzz23053 DISABLED_Clusterfuzz23053 #define MAYBE_Clusterfuzz28338 DISABLED_Clusterfuzz28338 #define MAYBE_Clusterfuzz28766 DISABLED_Clusterfuzz28766 #else // PERFETTO_DCHECK_IS_ON() #define MAYBE_Clusterfuzz20215 Clusterfuzz20215 #define MAYBE_Clusterfuzz20292 Clusterfuzz20292 #define MAYBE_Clusterfuzz21178 Clusterfuzz21178 #define MAYBE_Clusterfuzz21890 Clusterfuzz21890 #define MAYBE_Clusterfuzz23053 Clusterfuzz23053 #define MAYBE_Clusterfuzz28338 Clusterfuzz28338 #define MAYBE_Clusterfuzz28766 Clusterfuzz28766 #endif // PERFETTO_DCHECK_IS_ON() TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz20215) { ASSERT_TRUE(LoadTrace("clusterfuzz_20215", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz20292) { ASSERT_FALSE(LoadTrace("clusterfuzz_20292", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz21178) { ASSERT_TRUE(LoadTrace("clusterfuzz_21178", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz21890) { ASSERT_FALSE(LoadTrace("clusterfuzz_21890", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz23053) { ASSERT_FALSE(LoadTrace("clusterfuzz_23053", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz28338) { ASSERT_TRUE(LoadTrace("clusterfuzz_28338", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, MAYBE_Clusterfuzz28766) { ASSERT_TRUE(LoadTrace("clusterfuzz_28766", 4096).ok()); } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesInvariant) { Processor()->NotifyEndOfFile(); uint64_t first_restore = RestoreInitialTables(); ASSERT_EQ(RestoreInitialTables(), first_restore); } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesPerfettoSql) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); // 1. Perfetto table { auto it = Query("CREATE PERFETTO TABLE obj1 AS SELECT 1 AS col;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } // 2. Perfetto view { auto it = Query("CREATE PERFETTO VIEW obj2 AS SELECT * FROM stats;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } // 3. Runtime function { auto it = Query("CREATE PERFETTO FUNCTION obj3() RETURNS INT AS SELECT 1;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } // 4. Runtime table function { auto it = Query( "CREATE PERFETTO FUNCTION obj4() RETURNS TABLE(col INT) AS SELECT 1 " "AS col;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } // 5. Macro { auto it = Query("CREATE PERFETTO MACRO obj5(a Expr) returns Expr AS $a;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("obj5!(SELECT 1);"); it.Next(); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 5u); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesStandardSqlite) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query("CREATE TABLE obj1(unused text);"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("CREATE TEMPORARY TABLE obj2(unused text);"); it.Next(); ASSERT_TRUE(it.Status().ok()); } // Add a view { auto it = Query("CREATE VIEW obj3 AS SELECT * FROM stats;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 3u); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesModules) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query("INCLUDE PERFETTO MODULE common.timestamps;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("SELECT trace_start();"); it.Next(); ASSERT_TRUE(it.Status().ok()); } RestoreInitialTables(); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesSpanJoin) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query( "CREATE TABLE t1(ts BIGINT, dur BIGINT, PRIMARY KEY (ts, dur)) " "WITHOUT ROWID;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query( "CREATE TABLE t2(ts BIGINT, dur BIGINT, PRIMARY KEY (ts, dur)) " "WITHOUT ROWID;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("INSERT INTO t2(ts, dur) VALUES(1, 2), (5, 0), (1, 1);"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("CREATE VIRTUAL TABLE sp USING span_join(t1, t2);;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("SELECT ts, dur FROM sp;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 3u); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesWithClause) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query( "CREATE PERFETTO TABLE foo AS WITH bar AS (SELECT * FROM slice) " "SELECT ts FROM bar;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 1u); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesIndex) { Processor()->NotifyEndOfFile(); RestoreInitialTables(); for (int repeat = 0; repeat < 3; repeat++) { ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query("CREATE TABLE foo AS SELECT * FROM slice;"); it.Next(); ASSERT_TRUE(it.Status().ok()); } { auto it = Query("CREATE INDEX ind ON foo (ts, track_id);"); it.Next(); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 2u); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesTraceBounds) { ASSERT_TRUE(LoadTrace("android_sched_and_ps.pb").ok()); { auto it = Query("SELECT * from trace_bounds;"); it.Next(); ASSERT_TRUE(it.Status().ok()); ASSERT_EQ(it.Get(0).AsLong(), 81473009948313l); } ASSERT_EQ(RestoreInitialTables(), 0u); { auto it = Query("SELECT * from trace_bounds;"); it.Next(); ASSERT_TRUE(it.Status().ok()); ASSERT_EQ(it.Get(0).AsLong(), 81473009948313l); } } TEST_F(TraceProcessorIntegrationTest, RestoreInitialTablesDependents) { Processor()->NotifyEndOfFile(); { auto it = Query("create perfetto table foo as select 1 as x"); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); it = Query("create perfetto function f() returns INT as select * from foo"); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); it = Query("SELECT f()"); ASSERT_TRUE(it.Next()); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); } ASSERT_EQ(RestoreInitialTables(), 2u); } TEST_F(TraceProcessorIntegrationTest, RestoreDependentFunction) { Processor()->NotifyEndOfFile(); { auto it = Query("create perfetto function foo0() returns INT as select 1 as x"); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); } for (int i = 1; i < 100; ++i) { base::StackString<1024> sql( "create perfetto function foo%d() returns INT as select foo%d()", i, i - 1); auto it = Query(sql.c_str()); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()) << it.Status().c_message(); } ASSERT_EQ(RestoreInitialTables(), 100u); } TEST_F(TraceProcessorIntegrationTest, RestoreDependentTableFunction) { Processor()->NotifyEndOfFile(); { auto it = Query( "create perfetto function foo0() returns TABLE(x INT) " " as select 1 as x"); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); } for (int i = 1; i < 100; ++i) { base::StackString<1024> sql( "create perfetto function foo%d() returns TABLE(x INT) " " as select * from foo%d()", i, i - 1); auto it = Query(sql.c_str()); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()) << it.Status().c_message(); } ASSERT_EQ(RestoreInitialTables(), 100u); } // This test checks that a ninja trace is tokenized properly even if read in // small chunks of 1KB each. The values used in the test have been cross-checked // with opening the same trace with ninjatracing + chrome://tracing. TEST_F(TraceProcessorIntegrationTest, NinjaLog) { ASSERT_TRUE(LoadTrace("ninja_log", 1024).ok()); auto it = Query("select count(*) from process where name glob 'Build';"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, 1); it = Query( "select count(*) from thread left join process using(upid) where " "thread.name like 'Worker%' and process.pid=1"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, 28); it = Query( "create view slices_1st_build as select slices.* from slices left " "join thread_track on(slices.track_id == thread_track.id) left join " "thread using(utid) left join process using(upid) where pid=1"); it.Next(); ASSERT_TRUE(it.Status().ok()); it = Query("select (max(ts) - min(ts)) / 1000000 from slices_1st_build"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, 44697); it = Query("select name from slices_1st_build order by ts desc limit 1"); ASSERT_TRUE(it.Next()); ASSERT_STREQ(it.Get(0).string_value, "trace_processor_shell"); it = Query("select sum(dur) / 1000000 from slices_1st_build"); ASSERT_TRUE(it.Next()); ASSERT_EQ(it.Get(0).long_value, 837192); } /* * This trace does not have a uuid. The uuid will be generated from the first * 4096 bytes, which will be read in one chunk. */ TEST_F(TraceProcessorIntegrationTest, TraceWithoutUuidReadInOneChunk) { ASSERT_TRUE(LoadTrace("example_android_trace_30s.pb", kMaxChunkSize).ok()); auto it = Query("select str_value from metadata where name = 'trace_uuid'"); ASSERT_TRUE(it.Next()); EXPECT_STREQ(it.Get(0).string_value, "00000000-0000-0000-8906-ebb53e1d0738"); } /* * This trace does not have a uuid. The uuid will be generated from the first * 4096 bytes, which will be read in multiple chunks. */ TEST_F(TraceProcessorIntegrationTest, TraceWithoutUuidReadInMultipleChuncks) { ASSERT_TRUE(LoadTrace("example_android_trace_30s.pb", 512, 2048).ok()); auto it = Query("select str_value from metadata where name = 'trace_uuid'"); ASSERT_TRUE(it.Next()); EXPECT_STREQ(it.Get(0).string_value, "00000000-0000-0000-8906-ebb53e1d0738"); } /* * This trace has a uuid. It will not be overriden by the hash of the first 4096 * bytes. */ TEST_F(TraceProcessorIntegrationTest, TraceWithUuidReadInParts) { ASSERT_TRUE(LoadTrace("trace_with_uuid.pftrace", 512, 2048).ok()); auto it = Query("select str_value from metadata where name = 'trace_uuid'"); ASSERT_TRUE(it.Next()); EXPECT_STREQ(it.Get(0).string_value, "123e4567-e89b-12d3-a456-426655443322"); } TEST_F(TraceProcessorIntegrationTest, ErrorMessageExecuteQuery) { auto it = Query("select t from slice"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); ASSERT_THAT(it.Status().message(), testing::Eq(R"(Traceback (most recent call last): File "stdin" line 1 col 8 select t from slice ^ no such column: t)")); } TEST_F(TraceProcessorIntegrationTest, ErrorMessageMetricFile) { ASSERT_TRUE( Processor()->RegisterMetric("foo/bar.sql", "select t from slice").ok()); auto it = Query("select RUN_METRIC('foo/bar.sql');"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); ASSERT_EQ(it.Status().message(), R"(Traceback (most recent call last): File "stdin" line 1 col 1 select RUN_METRIC('foo/bar.sql') ^ Metric file "foo/bar.sql" line 1 col 8 select t from slice ^ no such column: t)"); } TEST_F(TraceProcessorIntegrationTest, ErrorMessageModule) { SqlModule module; module.name = "foo"; module.files.push_back(std::make_pair("foo.bar", "select t from slice")); ASSERT_TRUE(Processor()->RegisterSqlModule(module).ok()); auto it = Query("include perfetto module foo.bar;"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); ASSERT_EQ(it.Status().message(), R"(Traceback (most recent call last): File "stdin" line 1 col 1 include perfetto module foo.bar ^ Module include "foo.bar" line 1 col 8 select t from slice ^ no such column: t)"); } TEST_F(TraceProcessorIntegrationTest, FunctionRegistrationError) { auto it = Query("create perfetto function f() returns INT as select * from foo"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); it = Query("SELECT foo()"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); it = Query("create perfetto function f() returns INT as select 1"); ASSERT_FALSE(it.Next()); ASSERT_TRUE(it.Status().ok()); } TEST_F(TraceProcessorIntegrationTest, CreateTableDuplicateNames) { auto it = Query( "create perfetto table foo select 1 as duplicate_a, 2 as duplicate_a, 3 " "as duplicate_b, 4 as duplicate_b"); ASSERT_FALSE(it.Next()); ASSERT_FALSE(it.Status().ok()); ASSERT_THAT(it.Status().message(), HasSubstr("duplicate_a")); ASSERT_THAT(it.Status().message(), HasSubstr("duplicate_b")); } } // namespace } // namespace perfetto::trace_processor