| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "chrome/browser/password_manager/password_form_manager.h" | 8 #include "chrome/browser/password_manager/password_form_manager.h" |
| 9 #include "chrome/browser/password_manager/password_manager.h" | 9 #include "chrome/browser/password_manager/password_manager.h" |
| 10 #include "chrome/browser/profile_manager.h" | 10 #include "chrome/browser/profile_manager.h" |
| 11 #include "chrome/test/testing_profile.h" | 11 #include "chrome/test/testing_profile.h" |
| 12 #include "webkit/glue/password_form.h" | 12 #include "webkit/glue/password_form.h" |
| 13 | 13 |
| 14 using webkit_glue::PasswordForm; | 14 using webkit_glue::PasswordForm; |
| 15 | 15 |
| 16 #if 0 |
| 17 |
| 16 class PasswordFormManagerTest : public testing::Test { | 18 class PasswordFormManagerTest : public testing::Test { |
| 17 public: | 19 public: |
| 18 PasswordFormManagerTest() { | 20 PasswordFormManagerTest() { |
| 19 } | 21 } |
| 20 virtual void SetUp() { | 22 virtual void SetUp() { |
| 21 observed_form_.origin = GURL("http://www.google.com/a/LoginAuth"); | 23 observed_form_.origin = GURL("http://www.google.com/a/LoginAuth"); |
| 22 observed_form_.action = GURL("http://www.google.com/a/Login"); | 24 observed_form_.action = GURL("http://www.google.com/a/Login"); |
| 23 observed_form_.username_element = ASCIIToUTF16("Email"); | 25 observed_form_.username_element = ASCIIToUTF16("Email"); |
| 24 observed_form_.password_element = ASCIIToUTF16("Passwd"); | 26 observed_form_.password_element = ASCIIToUTF16("Passwd"); |
| 25 observed_form_.submit_element = ASCIIToUTF16("signIn"); | 27 observed_form_.submit_element = ASCIIToUTF16("signIn"); |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 credentials.username_element = saved_match()->username_element; | 223 credentials.username_element = saved_match()->username_element; |
| 222 credentials.password_element.clear(); | 224 credentials.password_element.clear(); |
| 223 PasswordFormManager manager3(profile(), NULL, credentials, false); | 225 PasswordFormManager manager3(profile(), NULL, credentials, false); |
| 224 SimulateMatchingPhase(&manager3, false); | 226 SimulateMatchingPhase(&manager3, false); |
| 225 manager3.ProvisionallySave(credentials); | 227 manager3.ProvisionallySave(credentials); |
| 226 | 228 |
| 227 // Invalid form - no password. | 229 // Invalid form - no password. |
| 228 EXPECT_FALSE(manager3.HasValidPasswordForm()); | 230 EXPECT_FALSE(manager3.HasValidPasswordForm()); |
| 229 } | 231 } |
| 230 | 232 |
| 233 #endif |
| OLD | NEW |