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

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_stub.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 { 16 namespace {
22 public:
23 TestAudioPlayer() {}
24 virtual ~TestAudioPlayer() {}
25 17
26 // AudioPlayer overrides: 18 // Callback stubs to pass into the directive handler.
27 virtual void Initialize() override {} 19 void DecodeSamples(AudioType, const std::string&) {
28 virtual void Play( 20 }
29 const scoped_refptr<media::AudioBusRefCounted>& /* samples */) override { 21 void EncodeToken(const std::string&,
30 set_is_playing(true); 22 AudioType,
31 } 23 const AudioManager::SamplesCallback& callback) {
Daniel Erat 2014/10/22 16:34:35 nit: omit the argument name for the callback too
rkc 2014/10/22 18:21:47 Done.
32 virtual void Stop() override { set_is_playing(false); } 24 }
33 virtual void Finalize() override { delete this; }
34 25
35 private: 26 } // namespace
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 27
54 class AudioDirectiveHandlerTest : public testing::Test { 28 class AudioDirectiveHandlerTest : public testing::Test {
55 public: 29 public:
56 AudioDirectiveHandlerTest() 30 AudioDirectiveHandlerTest()
57 : directive_handler_(new AudioDirectiveHandler( 31 : directive_handler_(new AudioDirectiveHandler()) {
58 AudioRecorder::DecodeSamplesCallback(), 32 scoped_ptr<AudioManagerStub> manager(new AudioManagerStub);
59 base::Bind(&AudioDirectiveHandlerTest::EncodeToken, 33 manager_ptr_ = manager.get();
60 base::Unretained(this)))) { 34 directive_handler_->set_audio_manager_for_testing(manager.Pass());
61 directive_handler_->set_player_audible_for_testing(new TestAudioPlayer()); 35 directive_handler_->Initialize(base::Bind(&DecodeSamples),
62 directive_handler_->set_player_inaudible_for_testing(new TestAudioPlayer()); 36 base::Bind(&EncodeToken));
63 directive_handler_->set_recorder_for_testing(new TestAudioRecorder());
64 } 37 }
65 virtual ~AudioDirectiveHandlerTest() {} 38 virtual ~AudioDirectiveHandlerTest() {}
66 39
67 void DirectiveAdded() {} 40 void DirectiveAdded() {}
68 41
69 protected: 42 protected:
70 void EncodeToken(const std::string& token,
71 bool audible,
72 const AudioDirectiveHandler::SamplesCallback& callback) {
73 callback.Run(
74 token, audible, CreateRandomAudioRefCounted(0x1337, 1, 0x7331));
75 }
76
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) { return manager_ptr_->IsPlaying(type); }
63
64 bool IsRecording(AudioType type) { return manager_ptr_->IsRecording(type); }
65
94 // This order is important. We want the message loop to get created before 66 // 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 67 // our the audio directive handler since the directive list ctor (invoked
96 // from the directive handler ctor) will post tasks. 68 // from the directive handler ctor) will post tasks.
97 base::MessageLoop message_loop_; 69 base::MessageLoop message_loop_;
98 scoped_ptr<AudioDirectiveHandler> directive_handler_; 70 scoped_ptr<AudioDirectiveHandler> directive_handler_;
71 // Unowned.
72 AudioManagerStub* manager_ptr_;
99 73
100 private: 74 private:
101 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest); 75 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest);
102 }; 76 };
103 77
104 TEST_F(AudioDirectiveHandlerTest, Basic) { 78 TEST_F(AudioDirectiveHandlerTest, Basic) {
105 const base::TimeDelta kTtl = base::TimeDelta::FromMilliseconds(9999); 79 const base::TimeDelta kTtl = base::TimeDelta::FromMilliseconds(9999);
106 directive_handler_->AddInstruction( 80 directive_handler_->AddInstruction(
107 CreateTransmitInstruction("token", true), "op_id1", kTtl); 81 CreateTransmitInstruction("token", true), "op_id1", kTtl);
108 directive_handler_->AddInstruction( 82 directive_handler_->AddInstruction(
109 CreateTransmitInstruction("token", false), "op_id1", kTtl); 83 CreateTransmitInstruction("token", false), "op_id1", kTtl);
110 directive_handler_->AddInstruction( 84 directive_handler_->AddInstruction(
111 CreateTransmitInstruction("token", false), "op_id2", kTtl); 85 CreateTransmitInstruction("token", false), "op_id2", kTtl);
112 directive_handler_->AddInstruction( 86 directive_handler_->AddInstruction(
113 CreateReceiveInstruction(), "op_id1", kTtl); 87 CreateReceiveInstruction(false), "op_id1", kTtl);
114 directive_handler_->AddInstruction( 88 directive_handler_->AddInstruction(
115 CreateReceiveInstruction(), "op_id2", kTtl); 89 CreateReceiveInstruction(true), "op_id2", kTtl);
116 directive_handler_->AddInstruction( 90 directive_handler_->AddInstruction(
117 CreateReceiveInstruction(), "op_id3", kTtl); 91 CreateReceiveInstruction(false), "op_id3", kTtl);
118 92
119 EXPECT_EQ(true, directive_handler_->player_audible_->IsPlaying()); 93 EXPECT_TRUE(IsPlaying(AUDIBLE));
120 EXPECT_EQ(true, directive_handler_->player_inaudible_->IsPlaying()); 94 EXPECT_TRUE(IsPlaying(INAUDIBLE));
121 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 95 EXPECT_TRUE(IsRecording(AUDIBLE));
96 EXPECT_TRUE(IsRecording(INAUDIBLE));
122 97
123 directive_handler_->RemoveInstructions("op_id1"); 98 directive_handler_->RemoveInstructions("op_id1");
124 EXPECT_FALSE(directive_handler_->player_audible_->IsPlaying()); 99 EXPECT_FALSE(IsPlaying(AUDIBLE));
125 EXPECT_EQ(true, directive_handler_->player_inaudible_->IsPlaying()); 100 EXPECT_TRUE(IsPlaying(INAUDIBLE));
126 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 101 EXPECT_TRUE(IsRecording(AUDIBLE));
102 EXPECT_TRUE(IsRecording(INAUDIBLE));
127 103
128 directive_handler_->RemoveInstructions("op_id2"); 104 directive_handler_->RemoveInstructions("op_id2");
129 EXPECT_FALSE(directive_handler_->player_inaudible_->IsPlaying()); 105 EXPECT_FALSE(IsPlaying(INAUDIBLE));
130 EXPECT_EQ(true, directive_handler_->recorder_->IsRecording()); 106 EXPECT_FALSE(IsRecording(AUDIBLE));
107 EXPECT_TRUE(IsRecording(INAUDIBLE));
131 108
132 directive_handler_->RemoveInstructions("op_id3"); 109 directive_handler_->RemoveInstructions("op_id3");
133 EXPECT_FALSE(directive_handler_->recorder_->IsRecording()); 110 EXPECT_FALSE(IsRecording(INAUDIBLE));
134 } 111 }
135 112
136 // TODO(rkc): Write more tests that check more convoluted sequences of 113 // TODO(rkc): Write more tests that check more convoluted sequences of
137 // transmits/receives. 114 // transmits/receives.
115 // TODO(rkc): Write tests to move time forward and test functionality.
138 116
139 } // namespace copresence 117 } // namespace copresence
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698