This source file includes following definitions.
- SetUp
- FindPrepopulateText
- TEST_F
#include "base/strings/string16.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/find_bar/find_bar_state.h"
#include "chrome/browser/ui/find_bar/find_bar_state_factory.h"
#include "chrome/browser/ui/find_bar/find_tab_helper.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/web_contents_tester.h"
using content::WebContents;
using content::WebContentsTester;
class FindBackendTest : public ChromeRenderViewHostTestHarness {
protected:
virtual void SetUp() OVERRIDE {
ChromeRenderViewHostTestHarness::SetUp();
FindTabHelper::CreateForWebContents(web_contents());
}
};
namespace {
base::string16 FindPrepopulateText(WebContents* contents) {
Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext());
return FindBarStateFactory::GetLastPrepopulateText(profile);
}
}
TEST_F(FindBackendTest, InternalState) {
FindTabHelper* find_tab_helper =
FindTabHelper::FromWebContents(web_contents());
EXPECT_EQ(base::string16(), FindPrepopulateText(web_contents()));
EXPECT_EQ(base::string16(), find_tab_helper->find_text());
scoped_ptr<WebContents> contents2(
WebContentsTester::CreateTestWebContents(profile(), NULL));
FindTabHelper::CreateForWebContents(contents2.get());
FindTabHelper* find_tab_helper2 =
FindTabHelper::FromWebContents(contents2.get());
EXPECT_EQ(base::string16(), FindPrepopulateText(web_contents()));
EXPECT_EQ(base::string16(), find_tab_helper->find_text());
EXPECT_EQ(base::string16(), FindPrepopulateText(contents2.get()));
EXPECT_EQ(base::string16(), find_tab_helper2->find_text());
base::string16 search_term1 = base::ASCIIToUTF16(" I had a 401K ");
base::string16 search_term2 = base::ASCIIToUTF16(" but the economy ");
base::string16 search_term3 = base::ASCIIToUTF16(" eated it. ");
find_tab_helper->StartFinding(search_term1, true, false);
EXPECT_EQ(search_term1, FindPrepopulateText(web_contents()));
EXPECT_EQ(search_term1, find_tab_helper->find_text());
EXPECT_EQ(search_term1, FindPrepopulateText(contents2.get()));
EXPECT_EQ(base::string16(), find_tab_helper2->find_text());
find_tab_helper2->StartFinding(search_term2, true, false);
EXPECT_EQ(search_term2, FindPrepopulateText(web_contents()));
EXPECT_EQ(search_term1, find_tab_helper->find_text());
EXPECT_EQ(search_term2, FindPrepopulateText(contents2.get()));
EXPECT_EQ(search_term2, find_tab_helper2->find_text());
find_tab_helper->StartFinding(search_term3, true, false);
EXPECT_EQ(search_term3, FindPrepopulateText(web_contents()));
EXPECT_EQ(search_term3, find_tab_helper->find_text());
EXPECT_EQ(search_term3, FindPrepopulateText(contents2.get()));
EXPECT_EQ(search_term2, find_tab_helper2->find_text());
}