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

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

Powered by Google App Engine
This is Rietveld 408576698