OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/scoped_ptr.h" | 5 #include "base/scoped_ptr.h" |
6 #include "base/string_util.h" | 6 #include "base/string_util.h" |
7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
8 #include "chrome/browser/autofill/form_structure.h" | 8 #include "chrome/browser/autofill/form_structure.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 form_structure.reset(new FormStructure(form)); | 403 form_structure.reset(new FormStructure(form)); |
404 EXPECT_TRUE(form_structure->IsAutoFillable()); | 404 EXPECT_TRUE(form_structure->IsAutoFillable()); |
405 ASSERT_EQ(10U, form_structure->field_count()); | 405 ASSERT_EQ(10U, form_structure->field_count()); |
406 ASSERT_EQ(9U, form_structure->autofill_count()); | 406 ASSERT_EQ(9U, form_structure->autofill_count()); |
407 | 407 |
408 // First name. | 408 // First name. |
409 EXPECT_EQ(NAME_FIRST, form_structure->field(0)->heuristic_type()); | 409 EXPECT_EQ(NAME_FIRST, form_structure->field(0)->heuristic_type()); |
410 // Last name. | 410 // Last name. |
411 EXPECT_EQ(NAME_LAST, form_structure->field(1)->heuristic_type()); | 411 EXPECT_EQ(NAME_LAST, form_structure->field(1)->heuristic_type()); |
412 // Address. | 412 // Address. |
413 EXPECT_EQ(ADDRESS_HOME_LINE1, form_structure->field(2)->heuristic_type()); | 413 EXPECT_EQ(ADDRESS_BILLING_LINE1, form_structure->field(2)->heuristic_type()); |
414 // Address. | 414 // Address. |
415 EXPECT_EQ(ADDRESS_HOME_LINE2, form_structure->field(3)->heuristic_type()); | 415 EXPECT_EQ(ADDRESS_BILLING_LINE2, form_structure->field(3)->heuristic_type()); |
416 // City. | 416 // City. |
417 EXPECT_EQ(ADDRESS_HOME_CITY, form_structure->field(4)->heuristic_type()); | 417 EXPECT_EQ(ADDRESS_BILLING_CITY, form_structure->field(4)->heuristic_type()); |
418 // State. | 418 // State. |
419 EXPECT_EQ(ADDRESS_HOME_STATE, form_structure->field(5)->heuristic_type()); | 419 EXPECT_EQ(ADDRESS_BILLING_STATE, form_structure->field(5)->heuristic_type()); |
420 // Zip. | 420 // Zip. |
421 EXPECT_EQ(ADDRESS_HOME_ZIP, form_structure->field(6)->heuristic_type()); | 421 EXPECT_EQ(ADDRESS_BILLING_ZIP, form_structure->field(6)->heuristic_type()); |
422 // Country. | 422 // Country. |
423 EXPECT_EQ(ADDRESS_HOME_COUNTRY, form_structure->field(7)->heuristic_type()); | 423 EXPECT_EQ(ADDRESS_BILLING_COUNTRY, form_structure->field(7)->heuristic_type())
; |
424 // Phone. | 424 // Phone. |
425 EXPECT_EQ(PHONE_HOME_WHOLE_NUMBER, | 425 EXPECT_EQ(PHONE_HOME_WHOLE_NUMBER, |
426 form_structure->field(8)->heuristic_type()); | 426 form_structure->field(8)->heuristic_type()); |
427 // Submit. | 427 // Submit. |
428 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(9)->heuristic_type()); | 428 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(9)->heuristic_type()); |
429 } | 429 } |
430 | 430 |
431 TEST(FormStructureTest, HeuristicsSample6) { | 431 TEST(FormStructureTest, HeuristicsSample6) { |
432 scoped_ptr<FormStructure> form_structure; | 432 scoped_ptr<FormStructure> form_structure; |
433 FormData form; | 433 FormData form; |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
912 EXPECT_EQ(PHONE_HOME_NUMBER, | 912 EXPECT_EQ(PHONE_HOME_NUMBER, |
913 form_structure->field(1)->heuristic_type()); | 913 form_structure->field(1)->heuristic_type()); |
914 // Phone number suffix. | 914 // Phone number suffix. |
915 EXPECT_EQ(PHONE_HOME_NUMBER, | 915 EXPECT_EQ(PHONE_HOME_NUMBER, |
916 form_structure->field(2)->heuristic_type()); | 916 form_structure->field(2)->heuristic_type()); |
917 // Unknown. | 917 // Unknown. |
918 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(3)->heuristic_type()); | 918 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(3)->heuristic_type()); |
919 } | 919 } |
920 | 920 |
921 } // namespace | 921 } // namespace |
OLD | NEW |