blob: 144a6c9f8b1766ec263daebe961873f805619e1e (
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
|
// Copyright 2013 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 "base/memory/scoped_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "chrome/browser/ui/autofill/autofill_dialog_models.h"
#include "chrome/browser/ui/autofill/data_model_wrapper.h"
#include "components/autofill/browser/autofill_common_test.h"
#include "components/autofill/browser/autofill_profile.h"
#include "components/autofill/browser/credit_card.h"
#include "components/autofill/browser/field_types.h"
#include "components/autofill/content/browser/wallet/wallet_items.h"
#include "components/autofill/content/browser/wallet/wallet_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill {
TEST(AutofillCreditCardWrapperTest, GetInfoCreditCardExpMonth) {
CreditCard card;
MonthComboboxModel model;
for (int month = 1; month <= 12; ++month) {
card.SetRawInfo(CREDIT_CARD_EXP_MONTH, base::IntToString16(month));
AutofillCreditCardWrapper wrapper(&card);
EXPECT_EQ(model.GetItemAt(month), wrapper.GetInfo(CREDIT_CARD_EXP_MONTH));
}
}
TEST(AutofillCreditCardWrapperTest, GetDisplayTextEmptyWhenExpired) {
CreditCard card;
AutofillCreditCardWrapper wrapper(&card);
EXPECT_TRUE(wrapper.GetDisplayText().empty());
}
TEST(WalletInstrumentWrapperTest, GetInfoCreditCardExpMonth) {
scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
wallet::GetTestMaskedInstrument());
MonthComboboxModel model;
for (int month = 1; month <= 12; ++month) {
instrument->expiration_month_ = month;
WalletInstrumentWrapper wrapper(instrument.get());
EXPECT_EQ(model.GetItemAt(month), wrapper.GetInfo(CREDIT_CARD_EXP_MONTH));
}
}
TEST(WalletInstrumentWrapperTest, GetDisplayTextEmptyWhenExpired) {
scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
wallet::GetTestMaskedInstrument());
instrument->status_ = wallet::WalletItems::MaskedInstrument::EXPIRED;
WalletInstrumentWrapper wrapper(instrument.get());
EXPECT_TRUE(wrapper.GetDisplayText().empty());
}
TEST(DataModelWrapperTest, GetDisplayTextEmptyWithoutPhone) {
scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
wallet::GetTestMaskedInstrument());
WalletInstrumentWrapper instrument_wrapper(instrument.get());
ASSERT_FALSE(instrument_wrapper.GetDisplayText().empty());
WalletAddressWrapper address_wrapper(&instrument->address());
ASSERT_FALSE(address_wrapper.GetDisplayText().empty());
const_cast<wallet::Address*>(&instrument->address())->set_phone_number(
string16());
ASSERT_TRUE(instrument_wrapper.GetInfo(PHONE_HOME_WHOLE_NUMBER).empty());
EXPECT_TRUE(instrument_wrapper.GetDisplayText().empty());
ASSERT_TRUE(address_wrapper.GetInfo(PHONE_HOME_WHOLE_NUMBER).empty());
EXPECT_TRUE(address_wrapper.GetDisplayText().empty());
}
} // autofill
|