Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: components/copresence/handlers/audio/audio_directive_handler_unittest.cc

Issue 637223011: Redesign the copresence audio handlers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/copresence/handlers/audio/audio_directive_handler.h" 5 #include "components/copresence/handlers/audio/audio_directive_handler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/scoped_ptr.h"
8 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
9 #include "components/copresence/mediums/audio/audio_player.h" 10 #include "components/copresence/mediums/audio/audio_manager.h"
10 #include "components/copresence/mediums/audio/audio_recorder.h"
11 #include "components/copresence/test/audio_test_support.h" 11 #include "components/copresence/test/audio_test_support.h"
12 #include "media/base/audio_bus.h"
13 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
15 13
16 using ::testing::_;
17 using ::testing::Le;
18
19 namespace copresence { 14 namespace copresence {
20 15
21 class TestAudioPlayer : public AudioPlayer {
22 public:
23 TestAudioPlayer() {}
24 virtual ~TestAudioPlayer() {}
25
26 // AudioPlayer overrides:
27 virtual void Initialize() override {}
28 virtual void Play(
29 const scoped_refptr<media::AudioBusRefCounted>& /* samples */) override {
30 set_is_playing(true);
31 }
32 virtual void Stop() override { set_is_playing(false); }
33 virtual void Finalize() override { delete this; }
34
35 private:
36 DISALLOW_COPY_AND_ASSIGN(TestAudioPlayer);
37 };
38
39 class TestAudioRecorder : public AudioRecorder {
40 public:
41 TestAudioRecorder() : AudioRecorder(AudioRecorder::DecodeSamplesCallback()) {}
42 virtual ~TestAudioRecorder() {}
43
44 // AudioRecorder overrides:
45 virtual void Initialize() override {}
46 virtual void Record() override { set_is_recording(true); }
47 virtual void Stop() override { set_is_recording(false); }
48 virtual void Finalize() override { delete this; }
49
50 private:
51 DISALLOW_COPY_AND_ASSIGN(TestAudioRecorder);
52 };
53
54 class AudioDirectiveHandlerTest : public testing::Test { 16 class AudioDirectiveHandlerTest : public testing::Test {
55 public: 17 public:
56 AudioDirectiveHandlerTest() 18 AudioDirectiveHandlerTest()
57 : directive_handler_(new AudioDirectiveHandler( 19 : directive_handler_(new AudioDirectiveHandler()) {
58 AudioRecorder::DecodeSamplesCallback(), 20 scoped_ptr<AudioManager> manager(new AudioManager());
59 base::Bind(&AudioDirectiveHandlerTest::EncodeToken, 21 manager->set_player_for_testing(AUDIBLE, new TestAudioPlayer());
60 base::Unretained(this)))) { 22 manager->set_player_for_testing(INAUDIBLE, new TestAudioPlayer());
61 directive_handler_->set_player_audible_for_testing(new TestAudioPlayer()); 23 manager->set_recorder_for_testing(new TestAudioRecorder());
62 directive_handler_->set_player_inaudible_for_testing(new TestAudioPlayer()); 24
63 directive_handler_->set_recorder_for_testing(new TestAudioRecorder()); 25 directive_handler_->set_audio_manager_for_testing(manager.Pass());
26 directive_handler_->Initialize(
27 base::Bind(&AudioDirectiveHandlerTest::DecodeSamples,
28 base::Unretained(this)),
29 base::Bind(&AudioDirectiveHandlerTest::EncodeToken,
30 base::Unretained(this)));
64 } 31 }
65 virtual ~AudioDirectiveHandlerTest() {} 32 virtual ~AudioDirectiveHandlerTest() {}
66 33
67 void DirectiveAdded() {} 34 void DirectiveAdded() {}
68 35
69 protected: 36 protected:
70 void EncodeToken(const std::string& token, 37 // Callback stubs to pass into the directive handler.
71 bool audible, 38 void DecodeSamples(AudioType, const std::string&) {}
72 const AudioDirectiveHandler::SamplesCallback& callback) { 39 void EncodeToken(const std::string&,
73 callback.Run( 40 AudioType,
74 token, audible, CreateRandomAudioRefCounted(0x1337, 1, 0x7331)); 41 const AudioManager::SamplesCallback& callback) {}
75 }
76 42
77 copresence::TokenInstruction CreateTransmitInstruction( 43 copresence::TokenInstruction CreateTransmitInstruction(
78 const std::string& token, 44 const std::string& token,
79 bool audible) { 45 bool audible) {
80 copresence::TokenInstruction instruction; 46 copresence::TokenInstruction instruction;
81 instruction.set_token_instruction_type(copresence::TRANSMIT); 47 instruction.set_token_instruction_type(copresence::TRANSMIT);
82 instruction.set_token_id(token); 48 instruction.set_token_id(token);
83 instruction.set_medium(audible ? AUDIO_AUDIBLE_DTMF 49 instruction.set_medium(audible ? AUDIO_AUDIBLE_DTMF
84 : AUDIO_ULTRASOUND_PASSBAND); 50 : AUDIO_ULTRASOUND_PASSBAND);
85 return instruction; 51 return instruction;
86 } 52 }
87 53
88 copresence::TokenInstruction CreateReceiveInstruction() { 54 copresence::TokenInstruction CreateReceiveInstruction(bool audible) {
89 copresence::TokenInstruction instruction; 55 copresence::TokenInstruction instruction;
90 instruction.set_token_instruction_type(copresence::RECEIVE); 56 instruction.set_token_instruction_type(copresence::RECEIVE);
57 instruction.set_medium(audible ? AUDIO_AUDIBLE_DTMF
58 : AUDIO_ULTRASOUND_PASSBAND);
91 return instruction; 59 return instruction;
92 } 60 }
93 61
62 bool IsPlaying(AudioType type) {
63 return directive_handler_->audio_manager_->is_playing_for_testing(type);
64 }
65
66 bool IsRecording(AudioType type) {
67 return directive_handler_->audio_manager_->is_recording_for_testing(type);
68 }
69
94 // This order is important. We want the message loop to get created before 70 // This order is important. We want the message loop to get created before
95 // our the audio directive handler since the directive list ctor (invoked 71 // our the audio directive handler since the directive list ctor (invoked
96 // from the directive handler ctor) will post tasks. 72 // from the directive handler ctor) will post tasks.
97 base::MessageLoop message_loop_; 73 base::MessageLoop message_loop_;
98 scoped_ptr<AudioDirectiveHandler> directive_handler_; 74 scoped_ptr<AudioDirectiveHandler> directive_handler_;
99 75
100 private: 76 private:
101 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest); 77 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest);
102 }; 78 };
103 79
104 TEST_F(AudioDirectiveHandlerTest, Basic) { 80 TEST_F(AudioDirectiveHandlerTest, Basic) {
105 const base::TimeDelta kTtl = base::TimeDelta::FromMilliseconds(9999); 81 const base::TimeDelta kTtl = base::TimeDelta::FromMilliseconds(9999);
106 directive_handler_->AddInstruction( 82 directive_handler_->AddInstruction(
107 CreateTransmitInstruction("token", true), "op_id1", kTtl); 83 CreateTransmitInstruction("token", true), "op_id1", kTtl);
108 directive_handler_->AddInstruction( 84 directive_handler_->AddInstruction(
109 CreateTransmitInstruction("token", false), "op_id1", kTtl); 85 CreateTransmitInstruction("token", false), "op_id1", kTtl);
110 directive_handler_->AddInstruction( 86 directive_handler_->AddInstruction(
111 CreateTransmitInstruction("token", false), "op_id2", kTtl); 87 CreateTransmitInstruction("token", false), "op_id2", kTtl);
112 directive_handler_->AddInstruction( 88 directive_handler_->AddInstruction(
113 CreateReceiveInstruction(), "op_id1", kTtl); 89 CreateReceiveInstruction(false), "op_id1", kTtl);
114 directive_handler_->AddInstruction( 90 directive_handler_->AddInstruction(
115 CreateReceiveInstruction(), "op_id2", kTtl); 91 CreateReceiveInstruction(true), "op_id2", kTtl);
116 directive_handler_->AddInstruction( 92 directive_handler_->AddInstruction(
117 CreateReceiveInstruction(), "op_id3", kTtl); 93 CreateReceiveInstruction(false), "op_id3", kTtl);
118 94
119 EXPECT_EQ(true, directive_handler_->player_audible_->IsPlaying()); 95 EXPECT_TRUE(IsPlaying(AUDIBLE));
120 EXPECT_EQ(true, directive_handler_->player_inaudible_->IsPlaying()); 96 EXPECT_TRUE(IsPlaying(INAUDIBLE));
121 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 97 EXPECT_TRUE(IsRecording(AUDIBLE));
98 EXPECT_TRUE(IsRecording(INAUDIBLE));
122 99
123 directive_handler_->RemoveInstructions("op_id1"); 100 directive_handler_->RemoveInstructions("op_id1");
124 EXPECT_FALSE(directive_handler_->player_audible_->IsPlaying()); 101 EXPECT_FALSE(IsPlaying(AUDIBLE));
125 EXPECT_EQ(true, directive_handler_->player_inaudible_->IsPlaying()); 102 EXPECT_TRUE(IsPlaying(INAUDIBLE));
126 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 103 EXPECT_TRUE(IsRecording(AUDIBLE));
104 EXPECT_TRUE(IsRecording(INAUDIBLE));
127 105
128 directive_handler_->RemoveInstructions("op_id2"); 106 directive_handler_->RemoveInstructions("op_id2");
129 EXPECT_FALSE(directive_handler_->player_inaudible_->IsPlaying()); 107 EXPECT_FALSE(IsPlaying(INAUDIBLE));
130 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 108 EXPECT_FALSE(IsRecording(AUDIBLE));
109 EXPECT_TRUE(IsRecording(INAUDIBLE));
131 110
132 directive_handler_->RemoveInstructions("op_id3"); 111 directive_handler_->RemoveInstructions("op_id3");
133 EXPECT_FALSE(directive_handler_->recorder_->IsRecording()); 112 EXPECT_FALSE(IsRecording(INAUDIBLE));
134 } 113 }
135 114
136 // TODO(rkc): Write more tests that check more convoluted sequences of 115 // TODO(rkc): Write more tests that check more convoluted sequences of
137 // transmits/receives. 116 // transmits/receives.
117 // TODO(rkc): Write tests to move time forward and test functionality.
138 118
139 } // namespace copresence 119 } // namespace copresence
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698