| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/command_line.h" | |
| 6 #include "base/strings/utf_string_conversions.h" | 5 #include "base/strings/utf_string_conversions.h" |
| 7 #include "build/build_config.h" | 6 #include "build/build_config.h" |
| 8 #include "chrome/browser/ui/browser.h" | 7 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 8 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 10 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
| 11 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
| 12 #include "content/public/common/content_switches.h" | |
| 13 #include "content/public/test/browser_test_utils.h" | 11 #include "content/public/test/browser_test_utils.h" |
| 14 #include "media/base/test_data_util.h" | 12 #include "media/base/test_data_util.h" |
| 15 | 13 |
| 16 class MediaBrowserTest : public InProcessBrowserTest { | 14 // TODO(dalecurtis): Android does not correctly defer media today, fix and |
| 17 public: | 15 // enable this test (needs disable of user gesture). http://crbug.com/522157 |
| 18 #if defined(OS_ANDROID) | 16 #if !defined(OS_ANDROID) |
| 19 void SetUpCommandLine(base::CommandLine* command_line) override { | 17 typedef InProcessBrowserTest MediaBrowserTest; |
| 20 command_line->AppendSwitch( | |
| 21 switches::kDisableGestureRequirementForMediaPlayback); | |
| 22 } | |
| 23 #endif | |
| 24 }; | |
| 25 | 18 |
| 26 IN_PROC_BROWSER_TEST_F(MediaBrowserTest, BackgroundMediaIsDeferred) { | 19 IN_PROC_BROWSER_TEST_F(MediaBrowserTest, BackgroundMediaIsDeferred) { |
| 27 // Navigate to a video file, which would autoplay in the foreground, but won't | 20 // Navigate to a video file, which would autoplay in the foreground, but won't |
| 28 // in the background due to deferred media loading for hidden tabs. | 21 // in the background due to deferred media loading for hidden tabs. |
| 29 ui_test_utils::NavigateToURLWithDisposition( | 22 ui_test_utils::NavigateToURLWithDisposition( |
| 30 browser(), content::GetFileUrlWithQuery( | 23 browser(), content::GetFileUrlWithQuery( |
| 31 media::GetTestDataFilePath("bear-640x360.webm"), ""), | 24 media::GetTestDataFilePath("bear-640x360.webm"), ""), |
| 32 NEW_BACKGROUND_TAB, ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION); | 25 NEW_BACKGROUND_TAB, ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION); |
| 33 | 26 |
| 34 ASSERT_EQ(2, browser()->tab_strip_model()->count()); | 27 ASSERT_EQ(2, browser()->tab_strip_model()->count()); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 57 EXPECT_EQ(background_contents, | 50 EXPECT_EQ(background_contents, |
| 58 browser()->tab_strip_model()->GetActiveWebContents()); | 51 browser()->tab_strip_model()->GetActiveWebContents()); |
| 59 | 52 |
| 60 // If everything worked, we should see "playing" and not "ended". | 53 // If everything worked, we should see "playing" and not "ended". |
| 61 const base::string16 playing_str = base::UTF8ToUTF16("playing"); | 54 const base::string16 playing_str = base::UTF8ToUTF16("playing"); |
| 62 const base::string16 ended_str = base::UTF8ToUTF16("ended"); | 55 const base::string16 ended_str = base::UTF8ToUTF16("ended"); |
| 63 content::TitleWatcher watcher(background_contents, playing_str); | 56 content::TitleWatcher watcher(background_contents, playing_str); |
| 64 watcher.AlsoWaitForTitle(ended_str); | 57 watcher.AlsoWaitForTitle(ended_str); |
| 65 EXPECT_EQ(playing_str, watcher.WaitAndGetTitle()); | 58 EXPECT_EQ(playing_str, watcher.WaitAndGetTitle()); |
| 66 } | 59 } |
| 60 #endif // !defined(OS_ANDROID) |
| OLD | NEW |