From 55f9c5a5466d0c7d5550252b653162d7dc775442 Mon Sep 17 00:00:00 2001 From: "skrul@chromium.org" Date: Wed, 5 May 2010 04:13:24 +0000 Subject: Add integration test for autofill profiles. I also expanded on the orignial autofill "steady" test to include removals. Plus a little refactoring of the WDS test. Review URL: http://codereview.chromium.org/1963001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46438 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/webdata/web_data_service_unittest.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'chrome/browser/webdata/web_data_service_unittest.cc') diff --git a/chrome/browser/webdata/web_data_service_unittest.cc b/chrome/browser/webdata/web_data_service_unittest.cc index 043a091..c11d4b7 100644 --- a/chrome/browser/webdata/web_data_service_unittest.cc +++ b/chrome/browser/webdata/web_data_service_unittest.cc @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include #include #include "base/basictypes.h" @@ -169,7 +170,7 @@ TEST_F(WebDataServiceAutofillTest, FormFillAdd) { // The event will be signaled when the mock observer is notified. done_event_.TimedWait(test_timeout_); - AutofillWebDataServiceConsumer consumer; + AutofillWebDataServiceConsumer > consumer; WebDataService::Handle handle; static const int limit = 10; handle = wds_->GetFormValuesForElementName( @@ -179,8 +180,8 @@ TEST_F(WebDataServiceAutofillTest, FormFillAdd) { MessageLoop::current()->Run(); EXPECT_EQ(handle, consumer.handle()); - ASSERT_EQ(1U, consumer.values().size()); - EXPECT_EQ(value1_, consumer.values()[0]); + ASSERT_EQ(1U, consumer.result().size()); + EXPECT_EQ(value1_, consumer.result()[0]); } TEST_F(WebDataServiceAutofillTest, FormFillRemoveOne) { @@ -212,7 +213,7 @@ TEST_F(WebDataServiceAutofillTest, FormFillRemoveOne) { done_event_.TimedWait(test_timeout_); } -TEST_F(WebDataServiceAutofillTest,FormFillRemoveMany) { +TEST_F(WebDataServiceAutofillTest, FormFillRemoveMany) { TimeDelta one_day(TimeDelta::FromDays(1)); Time t = Time::Now(); -- cgit v1.1