Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Unified Diff: components/autofill/common/password_form_fill_data_unittest.cc

Issue 15660018: [autofill] Add support for PSL domain matching for password autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/autofill/common/password_form_fill_data_unittest.cc
diff --git a/components/autofill/common/password_form_fill_data_unittest.cc b/components/autofill/common/password_form_fill_data_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5299c4277f093365d818321143ce0222978ccad4
--- /dev/null
+++ b/components/autofill/common/password_form_fill_data_unittest.cc
@@ -0,0 +1,147 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
Ilya Sherman 2013/06/19 09:40:54 nit: 2013, and please omit the "(c)".
nyquist 2013/06/19 22:56:06 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/utf_string_conversions.h"
+#include "components/autofill/common/password_form_fill_data.h"
Ilya Sherman 2013/06/19 09:40:54 nit: This include should precede all the others, j
nyquist 2013/06/19 22:56:06 Oops. Done.
+#include "content/public/common/password_form.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+using autofill::PasswordFormFillData;
Ilya Sherman 2013/06/19 09:40:54 nit: Please wrap all the test code in the autofill
nyquist 2013/06/19 22:56:06 Done.
+using content::PasswordForm;
+using content::PasswordFormMap;
+
+class PasswordFormFillDataTest : public testing::Test {};
Ilya Sherman 2013/06/19 09:40:54 nit: You can omit this line, and just replace all
nyquist 2013/06/19 22:56:06 Done.
+
+TEST_F(PasswordFormFillDataTest, TestSinglePreferredMatch) {
Ilya Sherman 2013/06/19 09:40:54 nit: Please add a comment describing what this is
nyquist 2013/06/19 22:56:06 Done.
+ // Create the current form on the page.
+ 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;
+
+ // Create an exact match in the database.
+ 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);
Ilya Sherman 2013/06/19 09:40:54 Why is wait_for_username true for an exact match?
nyquist 2013/06/19 22:56:06 Added a comment about this and also added a test o
+ // The preferred realm should match the signon realm from the preferred match.
+ EXPECT_EQ(result.preferred_realm, ASCIIToUTF16(preferred_match.signon_realm));
+}
+
+TEST_F(PasswordFormFillDataTest, TestPublicSuffixDomainMatching) {
Ilya Sherman 2013/06/19 09:40:54 nit: Please add a comment describing what this is
nyquist 2013/06/19 22:56:06 Done.
+ // Create the current form on the page.
+ 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;
+
+ // Create a match from the database that matches using public suffix.
+ 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;
+
+ // Create a match that matches exactly, so |original_signon_realm| is not set.
+ 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;
+
+ // Create a match that was matched using public suffix, so
+ // |original_signon_realm| is set to where the result came from.
+ 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.signon_realm = "https://foo.com/";
+ public_suffix_match.ssl_valid = true;
+ public_suffix_match.preferred = false;
+ public_suffix_match.scheme = PasswordForm::SCHEME_HTML;
+
+ // Add one exact match and one public suffix match.
+ 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);
+ // The preferred realm should match the original signon realm from the
+ // preferred match so the user can see where the result came from.
+ EXPECT_EQ(result.preferred_realm,
+ ASCIIToUTF16(preferred_match.original_signon_realm));
+
+ // The realm of the exact match should be the same as the realm from the
+ // match.
+ PasswordFormFillData::LoginCollection::const_iterator iter =
+ result.additional_logins.find(exact_match.username_value);
+ EXPECT_EQ(iter->second.realm, ASCIIToUTF16(exact_match.signon_realm));
+
+ // The realm of the public suffix match should be set to the original signon
+ // realm so the user can see where the result came from.
+ iter = result.additional_logins.find(public_suffix_match.username_value);
+ EXPECT_EQ(iter->second.realm, ASCIIToUTF16(public_suffix_match.signon_realm));
+}

Powered by Google App Engine
This is Rietveld 408576698