OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/ref_counted.h" |
| 6 #include "base/scoped_ptr.h" |
| 7 #include "base/string16.h" |
| 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/autofill/autofill_common_test.h" |
| 10 #include "chrome/browser/autofill/autofill_manager.h" |
| 11 #include "chrome/browser/autofill/autofill_metrics.h" |
| 12 #include "chrome/browser/autofill/personal_data_manager.h" |
| 13 #include "chrome/browser/renderer_host/test/test_render_view_host.h" |
| 14 #include "chrome/browser/tab_contents/test_tab_contents.h" |
| 15 #include "testing/gmock/include/gmock/gmock.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "webkit/glue/form_data.h" |
| 18 #include "webkit/glue/form_field.h" |
| 19 |
| 20 using webkit_glue::FormData; |
| 21 using webkit_glue::FormField; |
| 22 |
| 23 namespace { |
| 24 |
| 25 // TODO(isherman): Move this into autofill_common_test.h? |
| 26 class TestPersonalDataManager : public PersonalDataManager { |
| 27 public: |
| 28 TestPersonalDataManager() { |
| 29 CreateTestAutoFillProfiles(&web_profiles_); |
| 30 CreateTestCreditCards(&credit_cards_); |
| 31 } |
| 32 |
| 33 virtual void InitializeIfNeeded() {} |
| 34 virtual void SaveImportedFormData() {} |
| 35 virtual bool IsDataLoaded() const { return true; } |
| 36 |
| 37 private: |
| 38 void CreateTestAutoFillProfiles(ScopedVector<AutoFillProfile>* profiles) { |
| 39 AutoFillProfile* profile = new AutoFillProfile; |
| 40 autofill_test::SetProfileInfo(profile, "Home", "Elvis", "Aaron", |
| 41 "Presley", "theking@gmail.com", "RCA", |
| 42 "3734 Elvis Presley Blvd.", "Apt. 10", |
| 43 "Memphis", "Tennessee", "38116", "USA", |
| 44 "12345678901", ""); |
| 45 profile->set_guid("00000000-0000-0000-0000-000000000001"); |
| 46 profiles->push_back(profile); |
| 47 profile = new AutoFillProfile; |
| 48 autofill_test::SetProfileInfo(profile, "Work", "Charles", "Hardin", |
| 49 "Holley", "buddy@gmail.com", "Decca", |
| 50 "123 Apple St.", "unit 6", "Lubbock", |
| 51 "Texas", "79401", "USA", "23456789012", |
| 52 ""); |
| 53 profile->set_guid("00000000-0000-0000-0000-000000000002"); |
| 54 profiles->push_back(profile); |
| 55 profile = new AutoFillProfile; |
| 56 autofill_test::SetProfileInfo(profile, "Empty", "", "", "", "", "", "", "", |
| 57 "", "", "", "", "", ""); |
| 58 profile->set_guid("00000000-0000-0000-0000-000000000003"); |
| 59 profiles->push_back(profile); |
| 60 } |
| 61 |
| 62 void CreateTestCreditCards(ScopedVector<CreditCard>* credit_cards) { |
| 63 CreditCard* credit_card = new CreditCard; |
| 64 autofill_test::SetCreditCardInfo(credit_card, "First", "Elvis Presley", |
| 65 "4234567890123456", // Visa |
| 66 "04", "2012"); |
| 67 credit_card->set_guid("00000000-0000-0000-0000-000000000004"); |
| 68 credit_cards->push_back(credit_card); |
| 69 credit_card = new CreditCard; |
| 70 autofill_test::SetCreditCardInfo(credit_card, "Second", "Buddy Holly", |
| 71 "5187654321098765", // Mastercard |
| 72 "10", "2014"); |
| 73 credit_card->set_guid("00000000-0000-0000-0000-000000000005"); |
| 74 credit_cards->push_back(credit_card); |
| 75 credit_card = new CreditCard; |
| 76 autofill_test::SetCreditCardInfo(credit_card, "Empty", "", "", "", ""); |
| 77 credit_card->set_guid("00000000-0000-0000-0000-000000000006"); |
| 78 credit_cards->push_back(credit_card); |
| 79 } |
| 80 |
| 81 DISALLOW_COPY_AND_ASSIGN(TestPersonalDataManager); |
| 82 }; |
| 83 |
| 84 class MockAutoFillServerQueryMetricLogger : |
| 85 public AutoFillServerQueryMetricLogger { |
| 86 public: |
| 87 // TODO(isherman): Use gmock here instead. |
| 88 virtual void Log(Metric metric) const OVERRIDE {} |
| 89 }; |
| 90 |
| 91 class MockAutoFillQualityMetricLogger : public AutoFillQualityMetricLogger { |
| 92 public: |
| 93 MOCK_CONST_METHOD1(Log, void(Metric metric)); |
| 94 }; |
| 95 |
| 96 class TestAutoFillManager : public AutoFillManager { |
| 97 public: |
| 98 TestAutoFillManager(TabContents* tab_contents, |
| 99 TestPersonalDataManager* personal_manager) |
| 100 : AutoFillManager(tab_contents, personal_manager), |
| 101 autofill_enabled_(true) { |
| 102 set_quality_metric_logger(new MockAutoFillQualityMetricLogger); |
| 103 } |
| 104 virtual ~TestAutoFillManager() {} |
| 105 |
| 106 virtual bool IsAutoFillEnabled() const { return autofill_enabled_; } |
| 107 |
| 108 void set_autofill_enabled(bool autofill_enabled) { |
| 109 autofill_enabled_ = autofill_enabled; |
| 110 } |
| 111 |
| 112 const MockAutoFillQualityMetricLogger* quality_metric_logger() const { |
| 113 return static_cast<const MockAutoFillQualityMetricLogger*>( |
| 114 AutoFillManager::quality_metric_logger()); |
| 115 } |
| 116 |
| 117 private: |
| 118 bool autofill_enabled_; |
| 119 |
| 120 DISALLOW_COPY_AND_ASSIGN(TestAutoFillManager); |
| 121 }; |
| 122 |
| 123 } // namespace |
| 124 |
| 125 class AutoFillMetricsTest : public RenderViewHostTestHarness { |
| 126 public: |
| 127 AutoFillMetricsTest() {} |
| 128 virtual ~AutoFillMetricsTest() { |
| 129 // Order of destruction is important as AutoFillManager relies on |
| 130 // PersonalDataManager to be around when it gets destroyed. |
| 131 autofill_manager_.reset(NULL); |
| 132 test_personal_data_ = NULL; |
| 133 } |
| 134 |
| 135 virtual void SetUp() { |
| 136 RenderViewHostTestHarness::SetUp(); |
| 137 test_personal_data_ = new TestPersonalDataManager(); |
| 138 autofill_manager_.reset(new TestAutoFillManager(contents(), |
| 139 test_personal_data_.get())); |
| 140 } |
| 141 |
| 142 protected: |
| 143 scoped_ptr<TestAutoFillManager> autofill_manager_; |
| 144 scoped_refptr<TestPersonalDataManager> test_personal_data_; |
| 145 |
| 146 private: |
| 147 DISALLOW_COPY_AND_ASSIGN(AutoFillMetricsTest); |
| 148 }; |
| 149 |
| 150 // Test that we log quality metrics appropriately. |
| 151 TEST_F(AutoFillMetricsTest, QualityMetrics) { |
| 152 // Set up our form data. |
| 153 FormData form; |
| 154 form.name = ASCIIToUTF16("TestForm"); |
| 155 form.method = ASCIIToUTF16("POST"); |
| 156 form.origin = GURL("http://example.com/form.html"); |
| 157 form.action = GURL("http://example.com/submit.html"); |
| 158 form.user_submitted = true; |
| 159 |
| 160 FormField field; |
| 161 autofill_test::CreateTestFormField( |
| 162 "Autofilled", "autofilled", "Elvis Presley", "text", &field); |
| 163 field.set_autofilled(true); |
| 164 form.fields.push_back(field); |
| 165 autofill_test::CreateTestFormField( |
| 166 "Autofill Failed", "autofillfailed", "buddy@gmail.com", "text", &field); |
| 167 form.fields.push_back(field); |
| 168 autofill_test::CreateTestFormField( |
| 169 "Empty", "empty", "", "text", &field); |
| 170 form.fields.push_back(field); |
| 171 autofill_test::CreateTestFormField( |
| 172 "Unknown", "unknown", "garbage", "text", &field); |
| 173 form.fields.push_back(field); |
| 174 autofill_test::CreateTestFormField( |
| 175 "Select", "select", "USA", "select-one", &field); |
| 176 form.fields.push_back(field); |
| 177 |
| 178 // Establish our expectations. |
| 179 ::testing::InSequence dummy; |
| 180 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 181 Log(AutoFillQualityMetricLogger::FIELD_SUBMITTED)); |
| 182 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 183 Log(AutoFillQualityMetricLogger::FIELD_AUTOFILLED)); |
| 184 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 185 Log(AutoFillQualityMetricLogger::FIELD_SUBMITTED)); |
| 186 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 187 Log(AutoFillQualityMetricLogger::FIELD_AUTOFILL_FAILED )); |
| 188 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 189 Log(AutoFillQualityMetricLogger::FIELD_SUBMITTED)); |
| 190 EXPECT_CALL(*autofill_manager_->quality_metric_logger(), |
| 191 Log(AutoFillQualityMetricLogger::FIELD_SUBMITTED)); |
| 192 |
| 193 // Simulate form submission. |
| 194 EXPECT_NO_FATAL_FAILURE(autofill_manager_->FormSubmitted(form)); |
| 195 } |
| 196 |
| 197 // Test that we don't log quality metrics for non-autofillable forms. |
| 198 TEST_F(AutoFillMetricsTest, NoQualityMetricsForNonAutoFillableForms) { |
| 199 // Forms must include at least three fields to be auto-fillable. |
| 200 FormData form; |
| 201 form.name = ASCIIToUTF16("TestForm"); |
| 202 form.method = ASCIIToUTF16("POST"); |
| 203 form.origin = GURL("http://example.com/form.html"); |
| 204 form.action = GURL("http://example.com/submit.html"); |
| 205 form.user_submitted = true; |
| 206 |
| 207 FormField field; |
| 208 autofill_test::CreateTestFormField( |
| 209 "Autofilled", "autofilled", "Elvis Presley", "text", &field); |
| 210 field.set_autofilled(true); |
| 211 form.fields.push_back(field); |
| 212 autofill_test::CreateTestFormField( |
| 213 "Autofill Failed", "autofillfailed", "buddy@gmail.com", "text", &field); |
| 214 form.fields.push_back(field); |
| 215 |
| 216 // Simulate form submission. |
| 217 EXPECT_NO_FATAL_FAILURE(autofill_manager_->FormSubmitted(form)); |
| 218 |
| 219 // Search forms are not auto-fillable. |
| 220 form.action = GURL("http://example.com/search?q=Elvis%20Presley"); |
| 221 autofill_test::CreateTestFormField( |
| 222 "Empty", "empty", "", "text", &field); |
| 223 form.fields.push_back(field); |
| 224 |
| 225 // Simulate form submission. |
| 226 EXPECT_NO_FATAL_FAILURE(autofill_manager_->FormSubmitted(form)); |
| 227 } |
OLD | NEW |