2013-01-03 18:24:24 +01:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2016-11-18 18:31:21 +01:00
|
|
|
#include "tests/ceftests/test_handler.h"
|
2014-07-15 00:18:51 +02:00
|
|
|
|
2014-07-15 20:10:40 +02:00
|
|
|
#include "include/base/cef_bind.h"
|
2016-11-08 19:52:36 +01:00
|
|
|
#include "include/base/cef_logging.h"
|
2012-04-12 22:21:50 +02:00
|
|
|
#include "include/cef_command_line.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "include/cef_stream.h"
|
2014-07-15 20:10:40 +02:00
|
|
|
#include "include/wrapper/cef_closure_task.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "include/wrapper/cef_stream_resource_handler.h"
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/common/client_switches.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
#include "include/views/cef_browser_view.h"
|
|
|
|
#include "include/views/cef_window.h"
|
|
|
|
#endif
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
|
|
|
|
// Delegate implementation for the CefWindow that will host the Views-based
|
|
|
|
// browser.
|
|
|
|
class TestWindowDelegate : public CefWindowDelegate {
|
|
|
|
public:
|
|
|
|
// Create a new top-level Window hosting |browser_view|.
|
|
|
|
static void CreateBrowserWindow(CefRefPtr<CefBrowserView> browser_view,
|
|
|
|
const std::string& title) {
|
|
|
|
CefWindow::CreateTopLevelWindow(
|
|
|
|
new TestWindowDelegate(browser_view, "CefUnitTestViews " + title));
|
|
|
|
}
|
|
|
|
|
|
|
|
// CefWindowDelegate methods:
|
|
|
|
|
|
|
|
void OnWindowCreated(CefRefPtr<CefWindow> window) override {
|
|
|
|
// Add the browser view and show the window.
|
|
|
|
window->CenterWindow(CefSize(800, 600));
|
|
|
|
window->SetTitle(title_);
|
|
|
|
window->AddChildView(browser_view_);
|
|
|
|
window->Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnWindowDestroyed(CefRefPtr<CefWindow> window) override {
|
|
|
|
browser_view_ = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CanClose(CefRefPtr<CefWindow> window) override {
|
|
|
|
// Allow the window to close if the browser says it's OK.
|
|
|
|
CefRefPtr<CefBrowser> browser = browser_view_->GetBrowser();
|
|
|
|
if (browser)
|
|
|
|
return browser->GetHost()->TryCloseBrowser();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TestWindowDelegate(CefRefPtr<CefBrowserView> browser_view,
|
|
|
|
const CefString& title)
|
2017-05-17 11:29:28 +02:00
|
|
|
: browser_view_(browser_view), title_(title) {}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
CefRefPtr<CefBrowserView> browser_view_;
|
|
|
|
CefString title_;
|
|
|
|
|
|
|
|
IMPLEMENT_REFCOUNTING(TestWindowDelegate);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestWindowDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Delegate implementation for the CefBrowserView.
|
|
|
|
class TestBrowserViewDelegate : public CefBrowserViewDelegate {
|
|
|
|
public:
|
|
|
|
TestBrowserViewDelegate() {}
|
|
|
|
|
|
|
|
// CefBrowserViewDelegate methods:
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
bool OnPopupBrowserViewCreated(CefRefPtr<CefBrowserView> browser_view,
|
|
|
|
CefRefPtr<CefBrowserView> popup_browser_view,
|
|
|
|
bool is_devtools) override {
|
2016-01-19 21:09:01 +01:00
|
|
|
// Create our own Window for popups. It will show itself after creation.
|
2017-05-17 11:29:28 +02:00
|
|
|
TestWindowDelegate::CreateBrowserWindow(popup_browser_view,
|
|
|
|
is_devtools ? "DevTools" : "Popup");
|
2016-01-19 21:09:01 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
IMPLEMENT_REFCOUNTING(TestBrowserViewDelegate);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestBrowserViewDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // defined(USE_AURA)
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2013-07-15 22:25:59 +02:00
|
|
|
// TestHandler::CompletionState
|
|
|
|
|
|
|
|
TestHandler::CompletionState::CompletionState(int total)
|
2017-05-17 11:29:28 +02:00
|
|
|
: total_(total), count_(0) {
|
2016-11-15 22:18:41 +01:00
|
|
|
event_ = CefWaitableEvent::CreateWaitableEvent(true, false);
|
2013-07-15 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::CompletionState::TestComplete() {
|
|
|
|
if (++count_ == total_) {
|
|
|
|
count_ = 0;
|
2015-03-02 21:25:14 +01:00
|
|
|
|
|
|
|
// Signal that the test is now complete. Do not access any object members
|
|
|
|
// after this call because |this| might be deleted.
|
2016-11-15 22:18:41 +01:00
|
|
|
event_->Signal();
|
2013-07-15 22:25:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::CompletionState::WaitForTests() {
|
|
|
|
// Wait for the test to complete
|
2016-11-15 22:18:41 +01:00
|
|
|
event_->Wait();
|
2013-07-15 22:25:59 +02:00
|
|
|
|
|
|
|
// Reset the event so the same test can be executed again.
|
2016-11-15 22:18:41 +01:00
|
|
|
event_->Reset();
|
2013-07-15 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TestHandler::Collection
|
|
|
|
|
|
|
|
TestHandler::Collection::Collection(CompletionState* completion_state)
|
|
|
|
: completion_state_(completion_state) {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_TRUE(completion_state_);
|
2013-07-15 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::Collection::AddTestHandler(TestHandler* test_handler) {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_EQ(test_handler->completion_state_, completion_state_);
|
2013-07-15 22:25:59 +02:00
|
|
|
handler_list_.push_back(test_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::Collection::ExecuteTests() {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_GT(handler_list_.size(), 0UL);
|
2013-07-15 22:25:59 +02:00
|
|
|
|
|
|
|
TestHandlerList::const_iterator it;
|
|
|
|
|
|
|
|
it = handler_list_.begin();
|
|
|
|
for (; it != handler_list_.end(); ++it)
|
|
|
|
(*it)->SetupTest();
|
|
|
|
|
|
|
|
completion_state_->WaitForTests();
|
|
|
|
|
|
|
|
it = handler_list_.begin();
|
|
|
|
for (; it != handler_list_.end(); ++it)
|
|
|
|
(*it)->RunTest();
|
|
|
|
|
|
|
|
completion_state_->WaitForTests();
|
|
|
|
}
|
|
|
|
|
2015-01-10 00:40:26 +01:00
|
|
|
// TestHandler::UIThreadHelper
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
TestHandler::UIThreadHelper::UIThreadHelper() : weak_ptr_factory_(this) {}
|
2015-01-10 00:40:26 +01:00
|
|
|
|
|
|
|
void TestHandler::UIThreadHelper::PostTask(const base::Closure& task) {
|
|
|
|
EXPECT_UI_THREAD();
|
2017-05-17 11:29:28 +02:00
|
|
|
CefPostTask(TID_UI, base::Bind(&UIThreadHelper::TaskHelper,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(), task));
|
2015-01-10 00:40:26 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void TestHandler::UIThreadHelper::PostDelayedTask(const base::Closure& task,
|
|
|
|
int delay_ms) {
|
2015-01-10 00:40:26 +01:00
|
|
|
EXPECT_UI_THREAD();
|
2017-05-17 11:29:28 +02:00
|
|
|
CefPostDelayedTask(TID_UI,
|
|
|
|
base::Bind(&UIThreadHelper::TaskHelper,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(), task),
|
|
|
|
delay_ms);
|
2015-01-10 00:40:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::UIThreadHelper::TaskHelper(const base::Closure& task) {
|
|
|
|
EXPECT_UI_THREAD();
|
|
|
|
task.Run();
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// TestHandler
|
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
int TestHandler::browser_count_ = 0;
|
|
|
|
|
2013-07-15 22:25:59 +02:00
|
|
|
TestHandler::TestHandler(CompletionState* completion_state)
|
2014-01-28 00:31:03 +01:00
|
|
|
: first_browser_id_(0),
|
2015-01-10 00:40:26 +01:00
|
|
|
signal_completion_when_all_browsers_close_(true),
|
2020-01-15 14:34:01 +01:00
|
|
|
destroy_event_(nullptr),
|
2015-01-10 00:40:26 +01:00
|
|
|
destroy_test_expected_(true),
|
|
|
|
destroy_test_called_(false) {
|
2013-07-15 22:25:59 +02:00
|
|
|
if (completion_state) {
|
|
|
|
completion_state_ = completion_state;
|
|
|
|
completion_state_owned_ = false;
|
|
|
|
} else {
|
|
|
|
completion_state_ = new CompletionState(1);
|
|
|
|
completion_state_owned_ = true;
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TestHandler::~TestHandler() {
|
2015-01-10 00:40:26 +01:00
|
|
|
DCHECK(!ui_thread_helper_.get());
|
|
|
|
if (destroy_test_expected_)
|
|
|
|
EXPECT_TRUE(destroy_test_called_);
|
|
|
|
else
|
|
|
|
EXPECT_FALSE(destroy_test_called_);
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_TRUE(browser_map_.empty());
|
|
|
|
|
2013-07-15 22:25:59 +02:00
|
|
|
if (completion_state_owned_)
|
|
|
|
delete completion_state_;
|
2015-01-10 00:40:26 +01:00
|
|
|
|
|
|
|
if (destroy_event_)
|
|
|
|
destroy_event_->Signal();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::OnAfterCreated(CefRefPtr<CefBrowser> browser) {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_UI_THREAD();
|
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
browser_count_++;
|
|
|
|
|
2017-05-04 23:53:27 +02:00
|
|
|
const int browser_id = browser->GetIdentifier();
|
|
|
|
EXPECT_EQ(browser_map_.find(browser_id), browser_map_.end());
|
|
|
|
if (browser_map_.empty()) {
|
|
|
|
first_browser_id_ = browser_id;
|
|
|
|
first_browser_ = browser;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2017-05-04 23:53:27 +02:00
|
|
|
browser_map_.insert(std::make_pair(browser_id, browser));
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::OnBeforeClose(CefRefPtr<CefBrowser> browser) {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_UI_THREAD();
|
2013-03-19 23:59:33 +01:00
|
|
|
|
2017-05-04 23:53:27 +02:00
|
|
|
// Free the browser pointer so that the browser can be destroyed.
|
|
|
|
const int browser_id = browser->GetIdentifier();
|
|
|
|
BrowserMap::iterator it = browser_map_.find(browser_id);
|
|
|
|
EXPECT_NE(it, browser_map_.end());
|
|
|
|
browser_map_.erase(it);
|
2014-01-28 00:31:03 +01:00
|
|
|
|
2017-05-04 23:53:27 +02:00
|
|
|
if (browser_id == first_browser_id_) {
|
|
|
|
first_browser_id_ = 0;
|
2020-01-15 14:34:01 +01:00
|
|
|
first_browser_ = nullptr;
|
2017-05-04 23:53:27 +02:00
|
|
|
}
|
2014-01-28 00:31:03 +01:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
if (browser_map_.empty() && signal_completion_when_all_browsers_close_) {
|
2017-05-04 23:53:27 +02:00
|
|
|
// Signal that the test is now complete.
|
|
|
|
TestComplete();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2013-03-19 23:59:33 +01:00
|
|
|
|
|
|
|
browser_count_--;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 18:34:19 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
CefResponse::HeaderMap ToCefHeaderMap(
|
|
|
|
const ResourceContent::HeaderMap& headerMap) {
|
|
|
|
CefResponse::HeaderMap result;
|
|
|
|
ResourceContent::HeaderMap::const_iterator it = headerMap.begin();
|
|
|
|
for (; it != headerMap.end(); ++it) {
|
|
|
|
result.insert(std::pair<CefString, CefString>(it->first, it->second));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
} // namespace
|
2016-10-27 18:34:19 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
CefRefPtr<CefResourceHandler> TestHandler::GetResourceHandler(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefRequest> request) {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_IO_THREAD();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
if (resource_map_.size() > 0) {
|
|
|
|
CefString url = request->GetURL();
|
2012-04-16 23:15:27 +02:00
|
|
|
|
|
|
|
// Ignore the query component, if any.
|
|
|
|
std::string urlStr = url;
|
2013-08-14 23:45:22 +02:00
|
|
|
size_t idx = urlStr.find('?');
|
2012-04-16 23:15:27 +02:00
|
|
|
if (idx > 0)
|
2017-05-17 11:29:28 +02:00
|
|
|
urlStr = urlStr.substr(0, idx);
|
2012-04-16 23:15:27 +02:00
|
|
|
|
|
|
|
ResourceMap::const_iterator it = resource_map_.find(urlStr);
|
2012-04-03 03:34:16 +02:00
|
|
|
if (it != resource_map_.end()) {
|
|
|
|
// Return the previously mapped resource
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefStreamReader> stream = CefStreamReader::CreateForData(
|
|
|
|
static_cast<void*>(const_cast<char*>(it->second.content().c_str())),
|
|
|
|
it->second.content().length());
|
|
|
|
return new CefStreamResourceHandler(
|
|
|
|
200, "OK", it->second.mimeType(),
|
2016-10-27 18:34:19 +02:00
|
|
|
ToCefHeaderMap(it->second.headerMap()), stream);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-15 14:34:01 +01:00
|
|
|
return nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 19:52:36 +01:00
|
|
|
void TestHandler::OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser,
|
|
|
|
TerminationStatus status) {
|
|
|
|
LOG(WARNING) << "OnRenderProcessTerminated: status = " << status << ".";
|
|
|
|
}
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
CefRefPtr<CefBrowser> TestHandler::GetBrowser() {
|
|
|
|
return first_browser_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int TestHandler::GetBrowserId() {
|
|
|
|
return first_browser_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::GetAllBrowsers(BrowserMap* map) {
|
|
|
|
EXPECT_UI_THREAD();
|
|
|
|
EXPECT_TRUE(map);
|
|
|
|
*map = browser_map_;
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
void TestHandler::ExecuteTest() {
|
2014-01-28 00:31:03 +01:00
|
|
|
EXPECT_EQ(completion_state_->total(), 1);
|
2013-07-15 22:25:59 +02:00
|
|
|
|
2015-01-10 00:40:26 +01:00
|
|
|
// Reset any state from the previous run.
|
|
|
|
if (destroy_test_called_)
|
|
|
|
destroy_test_called_ = false;
|
|
|
|
|
|
|
|
// Run the test.
|
2012-04-03 03:34:16 +02:00
|
|
|
RunTest();
|
|
|
|
|
2015-01-10 00:40:26 +01:00
|
|
|
// Wait for the test to complete.
|
2013-07-15 22:25:59 +02:00
|
|
|
completion_state_->WaitForTests();
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-07-15 22:25:59 +02:00
|
|
|
void TestHandler::SetupComplete() {
|
|
|
|
// Signal that the test setup is complete.
|
|
|
|
completion_state_->TestComplete();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::DestroyTest() {
|
2014-01-28 00:31:03 +01:00
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
2014-07-15 20:10:40 +02:00
|
|
|
CefPostTask(TID_UI, base::Bind(&TestHandler::DestroyTest, this));
|
2014-01-28 00:31:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-10 00:40:26 +01:00
|
|
|
EXPECT_TRUE(destroy_test_expected_);
|
|
|
|
if (destroy_test_called_)
|
|
|
|
return;
|
|
|
|
destroy_test_called_ = true;
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
if (!browser_map_.empty()) {
|
|
|
|
// Use a copy of the map since the original may be modified while we're
|
|
|
|
// iterating.
|
|
|
|
BrowserMap browser_map = browser_map_;
|
|
|
|
|
2017-05-04 23:53:27 +02:00
|
|
|
// Tell all browsers to close.
|
2014-01-28 00:31:03 +01:00
|
|
|
BrowserMap::const_iterator it = browser_map.begin();
|
|
|
|
for (; it != browser_map.end(); ++it)
|
2016-01-19 21:09:01 +01:00
|
|
|
CloseBrowser(it->second, false);
|
2014-01-28 00:31:03 +01:00
|
|
|
}
|
2015-01-10 00:40:26 +01:00
|
|
|
|
|
|
|
if (ui_thread_helper_.get())
|
2020-01-15 14:34:01 +01:00
|
|
|
ui_thread_helper_.reset(nullptr);
|
2015-01-10 00:40:26 +01:00
|
|
|
}
|
|
|
|
|
2015-05-23 03:57:31 +02:00
|
|
|
void TestHandler::OnTestTimeout(int timeout_ms, bool treat_as_error) {
|
2015-01-10 00:40:26 +01:00
|
|
|
EXPECT_UI_THREAD();
|
2017-08-11 18:56:52 +02:00
|
|
|
if (treat_as_error) {
|
2015-05-23 03:57:31 +02:00
|
|
|
EXPECT_TRUE(false) << "Test timed out after " << timeout_ms << "ms";
|
2017-08-11 18:56:52 +02:00
|
|
|
}
|
2015-01-10 00:40:26 +01:00
|
|
|
DestroyTest();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void TestHandler::CreateBrowser(const CefString& url,
|
2019-03-19 10:42:54 +01:00
|
|
|
CefRefPtr<CefRequestContext> request_context,
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info) {
|
2016-01-19 21:09:01 +01:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
const bool use_views = CefCommandLine::GetGlobalCommandLine()->HasSwitch(
|
|
|
|
client::switches::kUseViews);
|
|
|
|
if (use_views && !CefCurrentlyOn(TID_UI)) {
|
|
|
|
// Views classes must be accessed on the UI thread.
|
2017-05-17 11:29:28 +02:00
|
|
|
CefPostTask(TID_UI, base::Bind(&TestHandler::CreateBrowser, this, url,
|
2019-03-19 10:42:54 +01:00
|
|
|
request_context, extra_info));
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif // defined(USE_AURA)
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
CefWindowInfo windowInfo;
|
|
|
|
CefBrowserSettings settings;
|
2016-01-19 21:09:01 +01:00
|
|
|
PopulateBrowserSettings(&settings);
|
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
if (use_views) {
|
|
|
|
// Create the BrowserView.
|
|
|
|
CefRefPtr<CefBrowserView> browser_view = CefBrowserView::CreateBrowserView(
|
2019-03-19 10:42:54 +01:00
|
|
|
this, url, settings, extra_info, request_context,
|
|
|
|
new TestBrowserViewDelegate());
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Create the Window. It will show itself after creation.
|
|
|
|
TestWindowDelegate::CreateBrowserWindow(browser_view, std::string());
|
|
|
|
} else
|
|
|
|
#endif // defined(USE_AURA)
|
|
|
|
{
|
2012-04-03 03:34:16 +02:00
|
|
|
#if defined(OS_WIN)
|
2020-01-15 14:34:01 +01:00
|
|
|
windowInfo.SetAsPopup(nullptr, "CefUnitTest");
|
2016-01-19 21:09:01 +01:00
|
|
|
windowInfo.style |= WS_VISIBLE;
|
2012-04-03 03:34:16 +02:00
|
|
|
#endif
|
2019-03-19 10:42:54 +01:00
|
|
|
CefBrowserHost::CreateBrowser(windowInfo, this, url, settings, extra_info,
|
2016-01-19 21:09:01 +01:00
|
|
|
request_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void TestHandler::CloseBrowser(CefRefPtr<CefBrowser> browser,
|
|
|
|
bool force_close) {
|
|
|
|
browser->GetHost()->CloseBrowser(force_close);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2012-04-16 23:15:27 +02:00
|
|
|
void TestHandler::AddResource(const std::string& url,
|
2012-04-03 03:34:16 +02:00
|
|
|
const std::string& content,
|
2016-10-27 18:34:19 +02:00
|
|
|
const std::string& mime_type) {
|
|
|
|
ResourceContent::HeaderMap headerMap = ResourceContent::HeaderMap();
|
|
|
|
ResourceContent rc = ResourceContent(content, mime_type, headerMap);
|
|
|
|
AddResourceEx(url, rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::AddResource(const std::string& url,
|
|
|
|
const std::string& content,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const ResourceContent::HeaderMap& header_map) {
|
|
|
|
ResourceContent rc = ResourceContent(content, mime_type, header_map);
|
|
|
|
AddResourceEx(url, rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::AddResourceEx(const std::string& url,
|
|
|
|
const ResourceContent& content) {
|
2014-01-28 00:31:03 +01:00
|
|
|
if (!CefCurrentlyOn(TID_IO)) {
|
|
|
|
CefPostTask(TID_IO,
|
2017-05-17 11:29:28 +02:00
|
|
|
base::Bind(&TestHandler::AddResourceEx, this, url, content));
|
2014-01-28 00:31:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-16 23:15:27 +02:00
|
|
|
// Ignore the query component, if any.
|
|
|
|
std::string urlStr = url;
|
2013-08-14 23:45:22 +02:00
|
|
|
size_t idx = urlStr.find('?');
|
2012-04-16 23:15:27 +02:00
|
|
|
if (idx > 0)
|
2017-05-17 11:29:28 +02:00
|
|
|
urlStr = urlStr.substr(0, idx);
|
2012-04-16 23:15:27 +02:00
|
|
|
|
2016-10-27 18:34:19 +02:00
|
|
|
resource_map_.insert(std::make_pair(urlStr, content));
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestHandler::ClearResources() {
|
2014-01-28 00:31:03 +01:00
|
|
|
if (!CefCurrentlyOn(TID_IO)) {
|
2014-07-15 20:10:40 +02:00
|
|
|
CefPostTask(TID_IO, base::Bind(&TestHandler::ClearResources, this));
|
2014-01-28 00:31:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
resource_map_.clear();
|
|
|
|
}
|
|
|
|
|
2015-05-23 03:57:31 +02:00
|
|
|
void TestHandler::SetTestTimeout(int timeout_ms, bool treat_as_error) {
|
2015-01-10 00:40:26 +01:00
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
|
|
|
CefPostTask(TID_UI, base::Bind(&TestHandler::SetTestTimeout, this,
|
2017-05-17 11:29:28 +02:00
|
|
|
timeout_ms, treat_as_error));
|
2015-01-10 00:40:26 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:28:37 +02:00
|
|
|
if (destroy_test_called_) {
|
|
|
|
// No need to set the timeout if the test has already completed.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
if (treat_as_error && CefCommandLine::GetGlobalCommandLine()->HasSwitch(
|
|
|
|
"disable-test-timeout")) {
|
2015-01-10 00:40:26 +01:00
|
|
|
return;
|
2015-05-23 03:57:31 +02:00
|
|
|
}
|
2015-01-10 00:40:26 +01:00
|
|
|
|
|
|
|
// Use a weak reference to |this| via UIThreadHelper so that the TestHandler
|
|
|
|
// can be destroyed before the timeout expires.
|
|
|
|
GetUIThreadHelper()->PostDelayedTask(
|
|
|
|
base::Bind(&TestHandler::OnTestTimeout, base::Unretained(this),
|
2015-05-23 03:57:31 +02:00
|
|
|
timeout_ms, treat_as_error),
|
2015-01-10 00:40:26 +01:00
|
|
|
timeout_ms);
|
|
|
|
}
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
void TestHandler::TestComplete() {
|
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
2014-07-15 20:10:40 +02:00
|
|
|
CefPostTask(TID_UI, base::Bind(&TestHandler::TestComplete, this));
|
2014-01-28 00:31:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPECT_TRUE(browser_map_.empty());
|
|
|
|
completion_state_->TestComplete();
|
|
|
|
}
|
|
|
|
|
2015-01-10 00:40:26 +01:00
|
|
|
TestHandler::UIThreadHelper* TestHandler::GetUIThreadHelper() {
|
|
|
|
EXPECT_UI_THREAD();
|
2019-06-18 14:28:37 +02:00
|
|
|
CHECK(!destroy_test_called_);
|
2015-01-10 00:40:26 +01:00
|
|
|
|
|
|
|
if (!ui_thread_helper_.get())
|
|
|
|
ui_thread_helper_.reset(new UIThreadHelper());
|
|
|
|
return ui_thread_helper_.get();
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// global functions
|
|
|
|
|
2012-04-12 22:21:50 +02:00
|
|
|
bool TestFailed() {
|
|
|
|
CefRefPtr<CefCommandLine> command_line =
|
|
|
|
CefCommandLine::GetGlobalCommandLine();
|
|
|
|
if (command_line->HasSwitch("single-process")) {
|
|
|
|
// Check for a failure on the current test only.
|
2017-05-17 11:29:28 +02:00
|
|
|
return ::testing::UnitTest::GetInstance()
|
|
|
|
->current_test_info()
|
|
|
|
->result()
|
|
|
|
->Failed();
|
2012-04-12 22:21:50 +02:00
|
|
|
} else {
|
|
|
|
// Check for any global failure.
|
|
|
|
return ::testing::UnitTest::GetInstance()->Failed();
|
|
|
|
}
|
|
|
|
}
|