1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_E2E_BROWSERTEST_H_
#define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_E2E_BROWSERTEST_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "chrome/test/media_router/media_router_integration_browsertest.h"
#include "chrome/test/media_router/test_media_sinks_observer.h"
#include "components/media_router/browser/media_router.h"
#include "components/media_router/common/media_route.h"
namespace media_router {
class MediaRouter;
class RouteRequestResult;
// Tests Chromecast-specific functionality of Media Router using the Cast Media
// Route Provider. Requires an actual Chromecast device.
//
// Use the following command to run e2e browser tests:
// ./out/Default/browser_tests --user-data-dir=<empty user data dir>
// --receiver=<chromecast device name>
// --enable-pixel-output-in-tests --run-manual
// --gtest_filter=MediaRouterE2EBrowserTest.<test case name>
// --enable-logging=stderr
// --ui-test-action-timeout=200000
class MediaRouterE2EBrowserTest : public MediaRouterIntegrationBrowserTest {
public:
MediaRouterE2EBrowserTest(
UiForBrowserTest test_ui_type = UiForBrowserTest::kGmc);
~MediaRouterE2EBrowserTest() override;
protected:
// InProcessBrowserTest Overrides
void SetUpOnMainThread() override;
void TearDownOnMainThread() override;
// MediaRouterIntegrationBrowserTest Overrides
bool RequiresMediaRouteProviders() const override;
// Callback from MediaRouter when a response to a media route request is
// received.
void OnRouteResponseReceived(mojom::RoutePresentationConnectionPtr,
const RouteRequestResult& result);
// Initializes |observer_| to listen for sinks compatible with |source|,
// finds sink with name matching receiver_, and establishes media
// route between the source and sink.
// |observer_| and |route_id_| will be initialized.
// |origin| is the URL of requestor's page.
// |web_contents| identifies the tab in which the request was made.
// |origin| and |web_contents| are used for enforcing same-origin and/or
// same-tab scope for JoinRoute() requests. (e.g., if enforced, the page
// requesting JoinRoute() must have the same origin as the page that
// requested CreateRoute()).
void CreateMediaRoute(const MediaSource& source,
const url::Origin& origin,
content::WebContents* web_contents);
// Stops the established media route and unregisters |observer_|.
// Note that the route may not be stopped immediately, as it makes an
// async call to the Media Route Provider.
// |observer_| and |route_id_| will be reset.
void StopMediaRoute();
bool IsSinkDiscovered() const;
bool IsRouteCreated() const;
void OpenMediaPage();
private:
raw_ptr<MediaRouter> media_router_;
std::unique_ptr<TestMediaSinksObserver> observer_;
MediaRoute::Id route_id_;
};
} // namespace media_router
#endif // CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_E2E_BROWSERTEST_H_
|