Refactor unit-testing of core/service_impl.cc
This just improves unit-testing of ServiceImpl by
introducing MockProducer/ MockConsumer classes.
Also this renames (without adding any new behavior)
the existing methods Producer::OnTracing{Start,StopTracing}
as follows:
- OnTracingStop -> removed as it's currently unsupported
(see b/77532839)
- OnTracingStart -> renamed to OnTracingSetup, because
this is what it does. Also this name conflicts with
Consumer::OnTracingStart, which has a different semantic
and happens at different times.
Also this CL renames Consumer::OnTracingStop to
OnTracingDisabled to match the {Enable,Disable}Tracing methods.
Change-Id: Ided455d3b37cfefdfbc3eda94e5feccaeeb15a5d
diff --git a/src/tracing/BUILD.gn b/src/tracing/BUILD.gn
index 69a0701..cc59dd2 100644
--- a/src/tracing/BUILD.gn
+++ b/src/tracing/BUILD.gn
@@ -141,6 +141,10 @@
"test/aligned_buffer_test.h",
"test/fake_packet.cc",
"test/fake_packet.h",
+ "test/mock_consumer.cc",
+ "test/mock_consumer.h",
+ "test/mock_producer.cc",
+ "test/mock_producer.h",
"test/test_shared_memory.cc",
"test/test_shared_memory.h",
"test/tracing_integration_test.cc",