summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/ui/webui/options/autofill_options_handler_unittest.cc
blob: a00cc4cb3d709efce5939148c610c1799f09e1c8 (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
// Copyright 2014 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 "chrome/browser/ui/webui/options/autofill_options_handler.h"

#include "base/values.h"
#include "components/autofill/core/browser/autofill_profile.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace options {

TEST(AutofillOptionsHandlerTest, AddressToDictionary) {
  autofill::AutofillProfile profile;
  autofill::test::SetProfileInfoWithGuid(&profile,
                                         "guid",
                                         "First",
                                         "Middle",
                                         "Last",
                                         "fml@example.com",
                                         "Acme inc",
                                         "123 Main",
                                         "Apt 2",
                                         "Laredo",
                                         "TX",
                                         "77300",
                                         "US",
                                         "832-555-1000");

  base::DictionaryValue dictionary;
  options::AutofillOptionsHandler::AutofillProfileToDictionary(profile,
                                                               &dictionary);

  std::string value;
  EXPECT_TRUE(dictionary.GetString("addrLines", &value));
  EXPECT_EQ("123 Main\nApt 2", value);
  EXPECT_TRUE(dictionary.GetString("city", &value));
  EXPECT_EQ("Laredo", value);
  EXPECT_TRUE(dictionary.GetString("country", &value));
  EXPECT_EQ("US", value);
  EXPECT_TRUE(dictionary.GetString("dependentLocality", &value));
  EXPECT_EQ("", value);
  EXPECT_TRUE(dictionary.GetString("guid", &value));
  EXPECT_EQ("guid", value);
  EXPECT_TRUE(dictionary.GetString("languageCode", &value));
  EXPECT_EQ("", value);
  EXPECT_TRUE(dictionary.GetString("postalCode", &value));
  EXPECT_EQ("77300", value);
  EXPECT_TRUE(dictionary.GetString("sortingCode", &value));
  EXPECT_EQ("", value);
  EXPECT_TRUE(dictionary.GetString("state", &value));
  EXPECT_EQ("TX", value);
  EXPECT_TRUE(dictionary.GetString("email", &value));
  EXPECT_EQ("fml@example.com", value);
  EXPECT_TRUE(dictionary.GetString("fullName", &value));
  EXPECT_EQ("First Middle Last", value);
  EXPECT_TRUE(dictionary.GetString("phone", &value));
  EXPECT_EQ("832-555-1000", value);
}

}  // namespace options