AlexaClientSDK  3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
MockSystemSoundAudioFactory.h
Go to the documentation of this file.
1 /*
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License").
5  * You may not use this file except in compliance with the License.
6  * A copy of the License is located at
7  *
8  * http://aws.amazon.com/apache2.0/
9  *
10  * or in the "license" file accompanying this file. This file is distributed
11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12  * express or implied. See the License for the specific language governing
13  * permissions and limitations under the License.
14  */
15 
16 #ifndef ALEXA_CLIENT_SDK_AVSCOMMON_SDKINTERFACES_TEST_AVSCOMMON_SDKINTERFACES_AUDIO_MOCKSYSTEMSOUNDAUDIOFACTORY_H_
17 #define ALEXA_CLIENT_SDK_AVSCOMMON_SDKINTERFACES_TEST_AVSCOMMON_SDKINTERFACES_AUDIO_MOCKSYSTEMSOUNDAUDIOFACTORY_H_
18 
19 #include <gmock/gmock.h>
20 
22 
23 namespace alexaClientSDK {
24 namespace avsCommon {
25 namespace sdkInterfaces {
26 namespace audio {
27 namespace test {
28 
31 public:
32  static std::shared_ptr<testing::NiceMock<MockSystemSoundAudioFactory>> create();
35  std::function<std::pair<std::unique_ptr<std::istream>, const avsCommon::utils::MediaType>()>());
38  std::function<std::pair<std::unique_ptr<std::istream>, const avsCommon::utils::MediaType>()>());
39 
40 private:
41  static std::pair<std::unique_ptr<std::istream>, const avsCommon::utils::MediaType>
42  createWakeWordNotificationTone() {
43  return std::make_pair(
44  std::unique_ptr<std::stringstream>(new std::stringstream("testWakeTone")),
46  }
47  static std::pair<std::unique_ptr<std::istream>, const avsCommon::utils::MediaType> createEndSpeechTone() {
48  return std::make_pair(
49  std::unique_ptr<std::stringstream>(new std::stringstream("testEndSpeech")),
51  }
52 };
53 
54 std::shared_ptr<testing::NiceMock<MockSystemSoundAudioFactory>> MockSystemSoundAudioFactory::create() {
55  auto result = std::make_shared<testing::NiceMock<MockSystemSoundAudioFactory>>();
56 
57  ON_CALL(*result.get(), endSpeechTone()).WillByDefault(testing::Return(createEndSpeechTone));
58  ON_CALL(*result.get(), wakeWordNotificationTone()).WillByDefault(testing::Return(createWakeWordNotificationTone));
59 
60  return result;
61 }
62 
63 } // namespace test
64 } // namespace audio
65 } // namespace sdkInterfaces
66 } // namespace avsCommon
67 } // namespace alexaClientSDK
68 
69 #endif // ALEXA_CLIENT_SDK_AVSCOMMON_SDKINTERFACES_TEST_AVSCOMMON_SDKINTERFACES_AUDIO_MOCKSYSTEMSOUNDAUDIOFACTORY_H_
MOCK_CONST_METHOD0(endSpeechTone, std::function< std::pair< std::unique_ptr< std::istream >, const avsCommon::utils::MediaType >()>())
Mock class that implements SystemSoundAudioFactoryInterface.
Definition: MockSystemSoundAudioFactory.h:30
Definition: AmdMetricWrapperTest.cpp:24
#define ON_CALL(obj, call)
Definition: gmock-spec-builders.h:1841
MediaType
Definition: MediaType.h:29
virtual std::function< std::pair< std::unique_ptr< std::istream >, const avsCommon::utils::MediaType >)> endSpeechTone() const =0
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
internal::ReturnAction< R > Return(R value)
Definition: gmock-actions.h:1061
virtual std::function< std::pair< std::unique_ptr< std::istream >, const avsCommon::utils::MediaType >)> wakeWordNotificationTone() const =0
static std::shared_ptr< testing::NiceMock< MockSystemSoundAudioFactory > > create()
Definition: MockSystemSoundAudioFactory.h:54

AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0