blob: 32691c7cddf537e58278ede8b28043f614b1a92a (
plain)
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
|
// Copyright (c) 2011 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 "base/command_line.h"
#include "base/memory/ref_counted.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/chromeos/media/media_player.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/automation/dom_element_proxy.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
class MediaPlayerBrowserTest : public InProcessBrowserTest {
public:
MediaPlayerBrowserTest() {}
GURL GetMusicTestURL() {
return GURL("http://localhost:1337/files/plugin/sample_mp3.mp3");
}
bool IsBrowserVisible(Browser* browser) {
if (browser == NULL)
return false;
for (BrowserList::const_iterator it = BrowserList::begin();
it != BrowserList::end(); ++it) {
if ((*it)->is_type_panel() && (*it)->is_app() && (*it) == browser)
return true;
}
return false;
}
bool IsPlayerVisible() {
return IsBrowserVisible(MediaPlayer::GetInstance()->mediaplayer_browser_);
}
bool IsPlaylistVisible() {
return IsBrowserVisible(MediaPlayer::GetInstance()->playlist_browser_);
}
};
IN_PROC_BROWSER_TEST_F(MediaPlayerBrowserTest, Popup) {
ASSERT_TRUE(test_server()->Start());
// Doing this so we have a valid profile.
ui_test_utils::NavigateToURL(browser(),
GURL("chrome://downloads"));
MediaPlayer* player = MediaPlayer::GetInstance();
// Check that its not currently visible
ASSERT_FALSE(IsPlayerVisible());
player->PopupMediaPlayer(NULL);
player->EnqueueMediaFileUrl(GetMusicTestURL());
ASSERT_TRUE(IsPlayerVisible());
}
IN_PROC_BROWSER_TEST_F(MediaPlayerBrowserTest, PopupPlaylist) {
ASSERT_TRUE(test_server()->Start());
// Doing this so we have a valid profile.
ui_test_utils::NavigateToURL(browser(),
GURL("chrome://downloads"));
MediaPlayer* player = MediaPlayer::GetInstance();
player->PopupMediaPlayer(NULL);
player->EnqueueMediaFileUrl(GetMusicTestURL());
EXPECT_FALSE(IsPlaylistVisible());
player->TogglePlaylistWindowVisible();
EXPECT_TRUE(IsPlaylistVisible());
}
|