blob: 3e774a39e9d01fc0cc5b988af6631afda54c9014 [file] [log] [blame]
ossu20a4b3f2017-04-27 02:08:52 -07001/*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef TEST_MOCK_AUDIO_ENCODER_FACTORY_H_
12#define TEST_MOCK_AUDIO_ENCODER_FACTORY_H_
ossu20a4b3f2017-04-27 02:08:52 -070013
14#include <memory>
15#include <vector>
16
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020017#include "api/audio_codecs/audio_encoder_factory.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010018#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 09:11:00 -080019#include "rtc_base/ref_counted_object.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "test/gmock.h"
ossu20a4b3f2017-04-27 02:08:52 -070021
22namespace webrtc {
23
Mirko Bonadei6a489f22019-04-09 15:11:12 +020024class MockAudioEncoderFactory
25 : public ::testing::NiceMock<AudioEncoderFactory> {
ossu20a4b3f2017-04-27 02:08:52 -070026 public:
27 MOCK_METHOD0(GetSupportedEncoders, std::vector<AudioCodecSpec>());
28 MOCK_METHOD1(QueryAudioEncoder,
Danil Chapovalov431abd92018-06-18 12:54:17 +020029 absl::optional<AudioCodecInfo>(const SdpAudioFormat& format));
ossu20a4b3f2017-04-27 02:08:52 -070030
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010031 std::unique_ptr<AudioEncoder> MakeAudioEncoder(
32 int payload_type,
33 const SdpAudioFormat& format,
Danil Chapovalov431abd92018-06-18 12:54:17 +020034 absl::optional<AudioCodecPairId> codec_pair_id) {
ossu20a4b3f2017-04-27 02:08:52 -070035 std::unique_ptr<AudioEncoder> return_value;
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010036 MakeAudioEncoderMock(payload_type, format, codec_pair_id, &return_value);
ossu20a4b3f2017-04-27 02:08:52 -070037 return return_value;
38 }
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010039 MOCK_METHOD4(MakeAudioEncoderMock,
ossu20a4b3f2017-04-27 02:08:52 -070040 void(int payload_type,
41 const SdpAudioFormat& format,
Danil Chapovalov431abd92018-06-18 12:54:17 +020042 absl::optional<AudioCodecPairId> codec_pair_id,
ossu20a4b3f2017-04-27 02:08:52 -070043 std::unique_ptr<AudioEncoder>* return_value));
44
45 // Creates a MockAudioEncoderFactory with no formats and that may not be
46 // invoked to create a codec - useful for initializing a voice engine, for
47 // example.
48 static rtc::scoped_refptr<webrtc::MockAudioEncoderFactory>
49 CreateUnusedFactory() {
Mirko Bonadei6a489f22019-04-09 15:11:12 +020050 using ::testing::_;
51 using ::testing::AnyNumber;
52 using ::testing::Return;
ossu20a4b3f2017-04-27 02:08:52 -070053
54 rtc::scoped_refptr<webrtc::MockAudioEncoderFactory> factory =
55 new rtc::RefCountedObject<webrtc::MockAudioEncoderFactory>;
56 ON_CALL(*factory.get(), GetSupportedEncoders())
57 .WillByDefault(Return(std::vector<webrtc::AudioCodecSpec>()));
58 ON_CALL(*factory.get(), QueryAudioEncoder(_))
Danil Chapovalov431abd92018-06-18 12:54:17 +020059 .WillByDefault(Return(absl::nullopt));
ossu20a4b3f2017-04-27 02:08:52 -070060
61 EXPECT_CALL(*factory.get(), GetSupportedEncoders()).Times(AnyNumber());
62 EXPECT_CALL(*factory.get(), QueryAudioEncoder(_)).Times(AnyNumber());
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010063 EXPECT_CALL(*factory.get(), MakeAudioEncoderMock(_, _, _, _)).Times(0);
ossu20a4b3f2017-04-27 02:08:52 -070064 return factory;
65 }
66
67 // Creates a MockAudioEncoderFactory with no formats that may be invoked to
68 // create a codec any number of times. It will, though, return nullptr on each
69 // call, since it supports no codecs.
70 static rtc::scoped_refptr<webrtc::MockAudioEncoderFactory>
71 CreateEmptyFactory() {
Mirko Bonadei6a489f22019-04-09 15:11:12 +020072 using ::testing::_;
73 using ::testing::AnyNumber;
74 using ::testing::Return;
75 using ::testing::SetArgPointee;
ossu20a4b3f2017-04-27 02:08:52 -070076
77 rtc::scoped_refptr<webrtc::MockAudioEncoderFactory> factory =
78 new rtc::RefCountedObject<webrtc::MockAudioEncoderFactory>;
79 ON_CALL(*factory.get(), GetSupportedEncoders())
80 .WillByDefault(Return(std::vector<webrtc::AudioCodecSpec>()));
81 ON_CALL(*factory.get(), QueryAudioEncoder(_))
Danil Chapovalov431abd92018-06-18 12:54:17 +020082 .WillByDefault(Return(absl::nullopt));
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010083 ON_CALL(*factory.get(), MakeAudioEncoderMock(_, _, _, _))
84 .WillByDefault(SetArgPointee<3>(nullptr));
ossu20a4b3f2017-04-27 02:08:52 -070085
86 EXPECT_CALL(*factory.get(), GetSupportedEncoders()).Times(AnyNumber());
87 EXPECT_CALL(*factory.get(), QueryAudioEncoder(_)).Times(AnyNumber());
Karl Wibergd6fbf2a2018-02-27 13:37:31 +010088 EXPECT_CALL(*factory.get(), MakeAudioEncoderMock(_, _, _, _))
ossu20a4b3f2017-04-27 02:08:52 -070089 .Times(AnyNumber());
90 return factory;
91 }
92};
93
94} // namespace webrtc
95
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020096#endif // TEST_MOCK_AUDIO_ENCODER_FACTORY_H_