summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/browser/price_field_unittest.cc
blob: 626cac725913324612e21e24047db33226979c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/autofill/core/browser/price_field.h"

#include <memory>
#include <vector>

#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/autofill_field.h"
#include "components/autofill/core/browser/autofill_scanner.h"
#include "components/autofill/core/common/form_field_data.h"
#include "testing/gtest/include/gtest/gtest.h"

using base::ASCIIToUTF16;

namespace autofill {

class PriceFieldTest : public testing::Test {
 public:
  PriceFieldTest() {}

 protected:
  std::vector<std::unique_ptr<AutofillField>> list_;
  std::unique_ptr<PriceField> field_;
  FieldCandidatesMap field_candidates_map_;

  // Downcast for tests.
  static std::unique_ptr<PriceField> Parse(AutofillScanner* scanner) {
    std::unique_ptr<FormField> field = PriceField::Parse(scanner);
    return std::unique_ptr<PriceField>(
        static_cast<PriceField*>(field.release()));
  }

 private:
  DISALLOW_COPY_AND_ASSIGN(PriceFieldTest);
};

TEST_F(PriceFieldTest, ParsePrice) {
  FormFieldData price_field;
  price_field.form_control_type = "text";

  price_field.label = ASCIIToUTF16("name your price");
  price_field.name = ASCIIToUTF16("userPrice");

  list_.push_back(
      std::make_unique<AutofillField>(price_field, ASCIIToUTF16("price1")));

  AutofillScanner scanner(list_);
  field_ = Parse(&scanner);
  ASSERT_NE(nullptr, field_.get());
  field_->AddClassifications(&field_candidates_map_);
  ASSERT_TRUE(field_candidates_map_.find(ASCIIToUTF16("price1")) !=
              field_candidates_map_.end());
  EXPECT_EQ(PRICE,
            field_candidates_map_[ASCIIToUTF16("price1")].BestHeuristicType());
}

TEST_F(PriceFieldTest, ParseNonPrice) {
  FormFieldData address_field;
  address_field.form_control_type = "text";

  address_field.label = ASCIIToUTF16("Name");
  address_field.name = ASCIIToUTF16("firstName");

  list_.push_back(
      std::make_unique<AutofillField>(address_field, ASCIIToUTF16("name1")));

  AutofillScanner scanner(list_);
  field_ = Parse(&scanner);
  ASSERT_EQ(nullptr, field_.get());
}

}  // namespace autofill