| Index: content/browser/renderer_host/media/desktop_capture_device_aura_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/desktop_capture_device_aura_unittest.cc b/content/browser/renderer_host/media/desktop_capture_device_aura_unittest.cc
|
| deleted file mode 100644
|
| index 2481d8dea5b69d42714ed2779e506ecca40ea973..0000000000000000000000000000000000000000
|
| --- a/content/browser/renderer_host/media/desktop_capture_device_aura_unittest.cc
|
| +++ /dev/null
|
| @@ -1,119 +0,0 @@
|
| -// Copyright 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "content/browser/renderer_host/media/desktop_capture_device_aura.h"
|
| -
|
| -#include "base/synchronization/waitable_event.h"
|
| -#include "content/browser/browser_thread_impl.h"
|
| -#include "content/public/browser/desktop_media_id.h"
|
| -#include "media/video/capture/video_capture_types.h"
|
| -#include "testing/gmock/include/gmock/gmock.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -#include "ui/aura/client/window_tree_client.h"
|
| -#include "ui/aura/test/aura_test_helper.h"
|
| -#include "ui/aura/test/test_window_delegate.h"
|
| -#include "ui/aura/window.h"
|
| -#include "ui/compositor/test/context_factories_for_test.h"
|
| -
|
| -using ::testing::_;
|
| -using ::testing::AnyNumber;
|
| -using ::testing::DoAll;
|
| -using ::testing::Expectation;
|
| -using ::testing::InvokeWithoutArgs;
|
| -using ::testing::SaveArg;
|
| -
|
| -namespace content {
|
| -namespace {
|
| -
|
| -const int kFrameRate = 30;
|
| -
|
| -class MockDeviceClient : public media::VideoCaptureDevice::Client {
|
| - public:
|
| - MOCK_METHOD2(ReserveOutputBuffer,
|
| - scoped_refptr<Buffer>(media::VideoFrame::Format format,
|
| - const gfx::Size& dimensions));
|
| - MOCK_METHOD1(OnError, void(const std::string& reason));
|
| - MOCK_METHOD5(OnIncomingCapturedFrame,
|
| - void(const uint8* data,
|
| - int length,
|
| - base::TimeTicks timestamp,
|
| - int rotation,
|
| - const media::VideoCaptureFormat& frame_format));
|
| - MOCK_METHOD5(OnIncomingCapturedBuffer,
|
| - void(const scoped_refptr<Buffer>& buffer,
|
| - media::VideoFrame::Format format,
|
| - const gfx::Size& dimensions,
|
| - base::TimeTicks timestamp,
|
| - int frame_rate));
|
| -};
|
| -
|
| -// Test harness that sets up a minimal environment with necessary stubs.
|
| -class DesktopCaptureDeviceAuraTest : public testing::Test {
|
| - public:
|
| - DesktopCaptureDeviceAuraTest()
|
| - : browser_thread_for_ui_(BrowserThread::UI, &message_loop_) {}
|
| - virtual ~DesktopCaptureDeviceAuraTest() {}
|
| -
|
| - protected:
|
| - virtual void SetUp() OVERRIDE {
|
| - // The ContextFactory must exist before any Compositors are created.
|
| - bool enable_pixel_output = false;
|
| - ui::InitializeContextFactoryForTests(enable_pixel_output);
|
| - helper_.reset(new aura::test::AuraTestHelper(&message_loop_));
|
| - helper_->SetUp();
|
| -
|
| - // We need a window to cover desktop area so that DesktopCaptureDeviceAura
|
| - // can use gfx::NativeWindow::GetWindowAtScreenPoint() to locate the
|
| - // root window associated with the primary display.
|
| - gfx::Rect desktop_bounds = root_window()->bounds();
|
| - window_delegate_.reset(new aura::test::TestWindowDelegate());
|
| - desktop_window_.reset(new aura::Window(window_delegate_.get()));
|
| - desktop_window_->Init(aura::WINDOW_LAYER_TEXTURED);
|
| - desktop_window_->SetBounds(desktop_bounds);
|
| - aura::client::ParentWindowWithContext(
|
| - desktop_window_.get(), root_window(), desktop_bounds);
|
| - desktop_window_->Show();
|
| - }
|
| -
|
| - virtual void TearDown() OVERRIDE {
|
| - helper_->RunAllPendingInMessageLoop();
|
| - root_window()->RemoveChild(desktop_window_.get());
|
| - desktop_window_.reset();
|
| - window_delegate_.reset();
|
| - helper_->TearDown();
|
| - ui::TerminateContextFactoryForTests();
|
| - }
|
| -
|
| - aura::Window* root_window() { return helper_->root_window(); }
|
| -
|
| - private:
|
| - base::MessageLoopForUI message_loop_;
|
| - BrowserThreadImpl browser_thread_for_ui_;
|
| - scoped_ptr<aura::test::AuraTestHelper> helper_;
|
| - scoped_ptr<aura::Window> desktop_window_;
|
| - scoped_ptr<aura::test::TestWindowDelegate> window_delegate_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAuraTest);
|
| -};
|
| -
|
| -TEST_F(DesktopCaptureDeviceAuraTest, StartAndStop) {
|
| - scoped_ptr<media::VideoCaptureDevice> capture_device(
|
| - DesktopCaptureDeviceAura::Create(
|
| - content::DesktopMediaID::RegisterAuraWindow(root_window())));
|
| -
|
| - scoped_ptr<MockDeviceClient> client(new MockDeviceClient());
|
| - EXPECT_CALL(*client, OnError(_)).Times(0);
|
| -
|
| - media::VideoCaptureParams capture_params;
|
| - capture_params.requested_format.frame_size.SetSize(640, 480);
|
| - capture_params.requested_format.frame_rate = kFrameRate;
|
| - capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420;
|
| - capture_params.allow_resolution_change = false;
|
| - capture_device->AllocateAndStart(
|
| - capture_params, client.PassAs<media::VideoCaptureDevice::Client>());
|
| - capture_device->StopAndDeAllocate();
|
| -}
|
| -
|
| -} // namespace
|
| -} // namespace content
|
|
|