This source file includes following definitions.
- ACTION
- SetUpOnMainThread
- CleanUpOnMainThread
- IN_PROC_BROWSER_TEST_F
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/test_chrome_web_ui_controller_factory.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/web_ui_controller.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
using content::WebContents;
using content::WebUI;
using content::WebUIController;
using ::testing::_;
using ::testing::Eq;
using ::testing::StrictMock;
namespace {
ACTION(ReturnNewWebUI) {
return new WebUIController(arg0);
}
class MockWebUIProvider
: public TestChromeWebUIControllerFactory::WebUIProvider {
public:
MOCK_METHOD2(NewWebUI, WebUIController*(content::WebUI* web_ui,
const GURL& url));
};
const char kChromeTestChromeWebUIControllerFactory[] =
"chrome://ChromeTestChromeWebUIControllerFactory/";
class TestChromeWebUIControllerFactoryTest : public InProcessBrowserTest {
public:
virtual void SetUpOnMainThread() OVERRIDE {
content::WebUIControllerFactory::UnregisterFactoryForTesting(
ChromeWebUIControllerFactory::GetInstance());
test_factory_.reset(new TestChromeWebUIControllerFactory);
content::WebUIControllerFactory::RegisterFactory(test_factory_.get());
test_factory_->AddFactoryOverride(
GURL(kChromeTestChromeWebUIControllerFactory).host(), &mock_provider_);
}
virtual void CleanUpOnMainThread() OVERRIDE {
test_factory_->RemoveFactoryOverride(
GURL(kChromeTestChromeWebUIControllerFactory).host());
content::WebUIControllerFactory::UnregisterFactoryForTesting(
test_factory_.get());
test_factory_.reset();
}
protected:
StrictMock<MockWebUIProvider> mock_provider_;
scoped_ptr<TestChromeWebUIControllerFactory> test_factory_;
};
}
IN_PROC_BROWSER_TEST_F(TestChromeWebUIControllerFactoryTest,
TestWebUIProvider) {
const GURL kChromeTestChromeWebUIControllerFactoryURL(
kChromeTestChromeWebUIControllerFactory);
EXPECT_CALL(mock_provider_,
NewWebUI(_, Eq(kChromeTestChromeWebUIControllerFactoryURL)))
.WillOnce(ReturnNewWebUI());
ui_test_utils::NavigateToURL(browser(),
kChromeTestChromeWebUIControllerFactoryURL);
}