This source file includes following definitions.
- TEST
- TEST
#include "components/autofill/core/common/password_form_fill_data.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/common/password_form.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::ASCIIToUTF16;
namespace autofill {
TEST(PasswordFormFillDataTest, TestSinglePreferredMatch) {
PasswordForm form_on_page;
form_on_page.origin = GURL("https://foo.com/");
form_on_page.action = GURL("https://foo.com/login");
form_on_page.username_element = ASCIIToUTF16("username");
form_on_page.username_value = ASCIIToUTF16("test@gmail.com");
form_on_page.password_element = ASCIIToUTF16("password");
form_on_page.password_value = ASCIIToUTF16("test");
form_on_page.submit_element = ASCIIToUTF16("");
form_on_page.signon_realm = "https://foo.com/";
form_on_page.ssl_valid = true;
form_on_page.preferred = false;
form_on_page.scheme = PasswordForm::SCHEME_HTML;
PasswordForm preferred_match;
preferred_match.origin = GURL("https://foo.com/");
preferred_match.action = GURL("https://foo.com/login");
preferred_match.username_element = ASCIIToUTF16("username");
preferred_match.username_value = ASCIIToUTF16("test@gmail.com");
preferred_match.password_element = ASCIIToUTF16("password");
preferred_match.password_value = ASCIIToUTF16("test");
preferred_match.submit_element = ASCIIToUTF16("");
preferred_match.signon_realm = "https://foo.com/";
preferred_match.ssl_valid = true;
preferred_match.preferred = true;
preferred_match.scheme = PasswordForm::SCHEME_HTML;
PasswordFormMap matches;
PasswordFormFillData result;
InitPasswordFormFillData(form_on_page,
matches,
&preferred_match,
true,
false,
&result);
EXPECT_TRUE(result.wait_for_username);
EXPECT_EQ(result.preferred_realm, "");
PasswordFormFillData result2;
InitPasswordFormFillData(form_on_page,
matches,
&preferred_match,
false,
false,
&result2);
EXPECT_FALSE(result2.wait_for_username);
}
TEST(PasswordFormFillDataTest, TestPublicSuffixDomainMatching) {
PasswordForm form_on_page;
form_on_page.origin = GURL("https://foo.com/");
form_on_page.action = GURL("https://foo.com/login");
form_on_page.username_element = ASCIIToUTF16("username");
form_on_page.username_value = ASCIIToUTF16("test@gmail.com");
form_on_page.password_element = ASCIIToUTF16("password");
form_on_page.password_value = ASCIIToUTF16("test");
form_on_page.submit_element = ASCIIToUTF16("");
form_on_page.signon_realm = "https://foo.com/";
form_on_page.ssl_valid = true;
form_on_page.preferred = false;
form_on_page.scheme = PasswordForm::SCHEME_HTML;
PasswordForm preferred_match;
preferred_match.origin = GURL("https://mobile.foo.com/");
preferred_match.action = GURL("https://mobile.foo.com/login");
preferred_match.username_element = ASCIIToUTF16("username");
preferred_match.username_value = ASCIIToUTF16("test@gmail.com");
preferred_match.password_element = ASCIIToUTF16("password");
preferred_match.password_value = ASCIIToUTF16("test");
preferred_match.submit_element = ASCIIToUTF16("");
preferred_match.signon_realm = "https://mobile.foo.com/";
preferred_match.original_signon_realm = "https://foo.com/";
preferred_match.ssl_valid = true;
preferred_match.preferred = true;
preferred_match.scheme = PasswordForm::SCHEME_HTML;
PasswordForm exact_match;
exact_match.origin = GURL("https://foo.com/");
exact_match.action = GURL("https://foo.com/login");
exact_match.username_element = ASCIIToUTF16("username");
exact_match.username_value = ASCIIToUTF16("test1@gmail.com");
exact_match.password_element = ASCIIToUTF16("password");
exact_match.password_value = ASCIIToUTF16("test");
exact_match.submit_element = ASCIIToUTF16("");
exact_match.signon_realm = "https://foo.com/";
exact_match.ssl_valid = true;
exact_match.preferred = false;
exact_match.scheme = PasswordForm::SCHEME_HTML;
PasswordForm public_suffix_match;
public_suffix_match.origin = GURL("https://foo.com/");
public_suffix_match.action = GURL("https://foo.com/login");
public_suffix_match.username_element = ASCIIToUTF16("username");
public_suffix_match.username_value = ASCIIToUTF16("test2@gmail.com");
public_suffix_match.password_element = ASCIIToUTF16("password");
public_suffix_match.password_value = ASCIIToUTF16("test");
public_suffix_match.submit_element = ASCIIToUTF16("");
public_suffix_match.original_signon_realm = "https://subdomain.foo.com/";
public_suffix_match.signon_realm = "https://foo.com/";
public_suffix_match.ssl_valid = true;
public_suffix_match.preferred = false;
public_suffix_match.scheme = PasswordForm::SCHEME_HTML;
PasswordFormMap matches;
matches[exact_match.username_value] = &exact_match;
matches[public_suffix_match.username_value] = &public_suffix_match;
PasswordFormFillData result;
InitPasswordFormFillData(form_on_page,
matches,
&preferred_match,
true,
false,
&result);
EXPECT_TRUE(result.wait_for_username);
EXPECT_EQ(result.preferred_realm,
preferred_match.original_signon_realm);
PasswordFormFillData::LoginCollection::const_iterator iter =
result.additional_logins.find(exact_match.username_value);
EXPECT_EQ(iter->second.realm, "");
iter = result.additional_logins.find(public_suffix_match.username_value);
EXPECT_EQ(iter->second.realm, public_suffix_match.original_signon_realm);
}
}