Index: webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc |
diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc b/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a0967f8764506d4c68cfdcd521df59395a82e7c6 |
--- /dev/null |
+++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc |
@@ -0,0 +1,53 @@ |
+/* |
+ * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+#include <utility> |
+ |
+#include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" |
+ |
+#include "webrtc/base/task_queue.h" |
+#include "webrtc/modules/include/module_common_types.h" |
+#include "webrtc/test/gtest.h" |
+ |
+TEST(AecDumper, APICallsDoNotCrash) { |
+ // Note order of initialization: factory first (has event pool), |
+ // then task queue (looks at event pool), then aec_dumper (posts |
+ // stuff to task queue). |
+ rtc::TaskQueue file_writer_queue("file_writer_queue"); |
+ auto aec_dump = |
+ webrtc::AecDumpFactory::Create("file1", -1, &file_writer_queue); |
+ EXPECT_TRUE(aec_dump); |
+ |
+ // TODO(aleloi): wait a while and check that file1 is |
+ // opened. Perhaps add a Flush/join method? Or call d-tor? |
+ aec_dump = webrtc::AecDumpFactory::Create("file2", -1, &file_writer_queue); |
+ |
+ aec_dump = webrtc::AecDumpFactory::Create("file3", 10, &file_writer_queue); |
+ |
+ // TODO(aleloi): open from handle. |
+ |
+ const webrtc::AudioFrame frame; |
+ aec_dump->WriteRenderStreamMessage(frame); |
+ |
+ auto capture_stream_info = aec_dump->GetCaptureStreamInfo(); |
+ |
+ capture_stream_info->AddInput(frame); |
+ capture_stream_info->AddOutput(frame); |
+ |
+ aec_dump->WriteCaptureStreamMessage(std::move(capture_stream_info)); |
+ |
+ webrtc::InternalAPMConfig apm_config; |
+ aec_dump->WriteConfig(apm_config, false); |
+ |
+ aec_dump->WriteConfig(apm_config, true); |
+ |
+ webrtc::ProcessingConfig processing_config; |
+ aec_dump->WriteInitMessage(processing_config); |
+} |