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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/shell/browser/shell.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "third_party/blink/public/common/features.h"
#if BUILDFLAG(IS_ANDROID)
#include "media/midi/midi_manager_android.h"
#endif // BUILDFLAG(IS_ANDROID)
namespace content {
namespace {
class MidiBrowserTest : public ContentBrowserTest {
public:
MidiBrowserTest()
: https_test_server_(std::make_unique<net::EmbeddedTestServer>(
net::EmbeddedTestServer::TYPE_HTTPS)) {}
~MidiBrowserTest() override = default;
void SetUp() override {
feature_list_.InitAndDisableFeature(blink::features::kBlockMidiByDefault);
ContentBrowserTest::SetUp();
}
void NavigateAndCheckResult(const std::string& path) {
#if BUILDFLAG(IS_ANDROID)
if (!midi::HasSystemFeatureMidiForTesting()) {
GTEST_SKIP() << "MIDI service is not available on this device.";
}
#endif // BUILDFLAG(IS_ANDROID)
const std::u16string expected = u"pass";
content::TitleWatcher watcher(shell()->web_contents(), expected);
const std::u16string failed = u"fail";
watcher.AlsoWaitForTitle(failed);
EXPECT_TRUE(NavigateToURL(shell(), https_test_server_->GetURL(path)));
const std::u16string result = watcher.WaitAndGetTitle();
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
// Try does not allow accessing /dev/snd/seq, and it results in a platform
// specific initialization error. See http://crbug.com/371230.
// Also, Chromecast does not support the feature and results in
// NotSupportedError.
EXPECT_TRUE(result == failed || result == expected);
if (result == failed) {
std::string error_message =
EvalJs(shell(), "error_message").ExtractString();
EXPECT_TRUE("Platform dependent initialization failed." ==
error_message ||
"The implementation did not support the requested type of "
"object or operation." == error_message);
}
#else
EXPECT_EQ(expected, result);
#endif
}
private:
void SetUpOnMainThread() override {
https_test_server_->ServeFilesFromSourceDirectory(GetTestDataFilePath());
ASSERT_TRUE(https_test_server_->Start());
}
std::unique_ptr<net::EmbeddedTestServer> https_test_server_;
base::test::ScopedFeatureList feature_list_;
};
class MidiBrowserTestBlockMidiByDefault : public ContentBrowserTest {
public:
MidiBrowserTestBlockMidiByDefault()
: https_test_server_(std::make_unique<net::EmbeddedTestServer>(
net::EmbeddedTestServer::TYPE_HTTPS)) {}
~MidiBrowserTestBlockMidiByDefault() override = default;
void SetUp() override {
feature_list_.InitAndEnableFeature(blink::features::kBlockMidiByDefault);
ContentBrowserTest::SetUp();
}
void NavigateAndCheckResult(const std::string& path) {
const std::u16string expected = u"fail";
content::TitleWatcher watcher(shell()->web_contents(), expected);
const std::u16string failed = u"pass";
watcher.AlsoWaitForTitle(failed);
EXPECT_TRUE(NavigateToURL(shell(), https_test_server_->GetURL(path)));
const std::u16string result = watcher.WaitAndGetTitle();
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
// Try does not allow accessing /dev/snd/seq, and it results in a platform
// specific initialization error. See http://crbug.com/371230.
// Also, Chromecast does not support the feature and results in
// NotSupportedError.
EXPECT_TRUE(result == failed || result == expected);
if (result == failed) {
std::string error_message =
EvalJs(shell(), "error_message").ExtractString();
EXPECT_TRUE("Platform dependent initialization failed." ==
error_message ||
"The implementation did not support the requested type of "
"object or operation." == error_message);
}
#else
EXPECT_EQ(expected, result);
#endif
}
private:
void SetUpOnMainThread() override {
https_test_server_->ServeFilesFromSourceDirectory(GetTestDataFilePath());
ASSERT_TRUE(https_test_server_->Start());
}
std::unique_ptr<net::EmbeddedTestServer> https_test_server_;
base::test::ScopedFeatureList feature_list_;
};
IN_PROC_BROWSER_TEST_F(MidiBrowserTest, RequestMIDIAccess) {
NavigateAndCheckResult("/midi/request_midi_access.html");
}
IN_PROC_BROWSER_TEST_F(MidiBrowserTestBlockMidiByDefault, RequestMIDIAccess) {
NavigateAndCheckResult("/midi/request_midi_access.html");
}
IN_PROC_BROWSER_TEST_F(MidiBrowserTest, SubscribeAll) {
NavigateAndCheckResult("/midi/subscribe_all.html");
}
IN_PROC_BROWSER_TEST_F(MidiBrowserTestBlockMidiByDefault, SubscribeAll) {
NavigateAndCheckResult("/midi/subscribe_all.html");
}
} // namespace
} // namespace content
|