| OLD | NEW |
| 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/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "components/copresence/test/audio_test_support.h" | 9 #include "components/copresence/test/audio_test_support.h" |
| 10 #include "media/base/audio_bus.h" | 10 #include "media/base/audio_bus.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // This order is important. We want the message loop to get created before | 68 // This order is important. We want the message loop to get created before |
| 69 // our the audio directive handler since the directive list ctor (invoked | 69 // our the audio directive handler since the directive list ctor (invoked |
| 70 // from the directive handler ctor) will post tasks. | 70 // from the directive handler ctor) will post tasks. |
| 71 base::MessageLoop message_loop_; | 71 base::MessageLoop message_loop_; |
| 72 scoped_ptr<MockAudioDirectiveHandler> directive_handler_; | 72 scoped_ptr<MockAudioDirectiveHandler> directive_handler_; |
| 73 | 73 |
| 74 private: | 74 private: |
| 75 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest); | 75 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveHandlerTest); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 // TODO(rkc): Find and fix the memory leak here. | 78 TEST_F(AudioDirectiveHandlerTest, Basic) { |
| 79 #define MAYBE_Basic DISABLED_Basic | |
| 80 | |
| 81 TEST_F(AudioDirectiveHandlerTest, MAYBE_Basic) { | |
| 82 const base::TimeDelta kSmallTtl = base::TimeDelta::FromMilliseconds(0x1337); | 79 const base::TimeDelta kSmallTtl = base::TimeDelta::FromMilliseconds(0x1337); |
| 83 const base::TimeDelta kLargeTtl = base::TimeDelta::FromSeconds(0x7331); | 80 const base::TimeDelta kLargeTtl = base::TimeDelta::FromSeconds(0x7331); |
| 84 | 81 |
| 85 // Expect to play and record instructions for 'less' than the TTL specified, | 82 // Expect to play and record instructions for 'less' than the TTL specified, |
| 86 // since by the time that the token would have gotten encoded, we would | 83 // since by the time that the token would have gotten encoded, we would |
| 87 // have (TTL - time_to_encode) left to play on that instruction. | 84 // have (TTL - time_to_encode) left to play on that instruction. |
| 88 EXPECT_CALL(*directive_handler_, PlayAudio(_, testing::Le(kLargeTtl))) | 85 EXPECT_CALL(*directive_handler_, PlayAudio(_, testing::Le(kLargeTtl))) |
| 89 .Times(3); | 86 .Times(3); |
| 90 directive_handler_->AddInstruction(CreateTransmitInstruction("token1"), | 87 directive_handler_->AddInstruction(CreateTransmitInstruction("token1"), |
| 91 kLargeTtl); | 88 kLargeTtl); |
| 92 directive_handler_->AddInstruction(CreateTransmitInstruction("token2"), | 89 directive_handler_->AddInstruction(CreateTransmitInstruction("token2"), |
| 93 kLargeTtl); | 90 kLargeTtl); |
| 94 directive_handler_->AddInstruction(CreateTransmitInstruction("token3"), | 91 directive_handler_->AddInstruction(CreateTransmitInstruction("token3"), |
| 95 kSmallTtl); | 92 kSmallTtl); |
| 96 | 93 |
| 97 EXPECT_CALL(*directive_handler_, RecordAudio(Le(kLargeTtl))).Times(3); | 94 EXPECT_CALL(*directive_handler_, RecordAudio(Le(kLargeTtl))).Times(3); |
| 98 directive_handler_->AddInstruction(CreateReceiveInstruction(), kLargeTtl); | 95 directive_handler_->AddInstruction(CreateReceiveInstruction(), kLargeTtl); |
| 99 directive_handler_->AddInstruction(CreateReceiveInstruction(), kSmallTtl); | 96 directive_handler_->AddInstruction(CreateReceiveInstruction(), kSmallTtl); |
| 100 directive_handler_->AddInstruction(CreateReceiveInstruction(), kLargeTtl); | 97 directive_handler_->AddInstruction(CreateReceiveInstruction(), kLargeTtl); |
| 101 } | 98 } |
| 102 | 99 |
| 103 // TODO(rkc): When we are keeping track of which token we're currently playing, | 100 // TODO(rkc): When we are keeping track of which token we're currently playing, |
| 104 // add tests to make sure we don't replay if we get a token with a lower ttl | 101 // add tests to make sure we don't replay if we get a token with a lower ttl |
| 105 // than the current active. | 102 // than the current active. |
| 106 | 103 |
| 107 } // namespace copresence | 104 } // namespace copresence |
| OLD | NEW |