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 <string> | 5 #include <string> |
6 | 6 |
7 #include "chrome/browser/net/url_fixer_upper.h" | 7 #include "chrome/browser/net/url_fixer_upper.h" |
8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
9 #include "chrome/common/url_constants.h" | 9 #include "chrome/common/url_constants.h" |
10 #include "chrome/test/automation/tab_proxy.h" | 10 #include "chrome/test/automation/tab_proxy.h" |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 EXPECT_TRUE(tab->GoForward()); // should bring us to 'c' | 166 EXPECT_TRUE(tab->GoForward()); // should bring us to 'c' |
167 EXPECT_FALSE(tab->NeedsAuth()); | 167 EXPECT_FALSE(tab->NeedsAuth()); |
168 | 168 |
169 // Now test that cancelling works as expected. | 169 // Now test that cancelling works as expected. |
170 NavigateTab(tab.get(), server->TestServerPageW(L"auth-basic")); | 170 NavigateTab(tab.get(), server->TestServerPageW(L"auth-basic")); |
171 EXPECT_TRUE(tab->NeedsAuth()); | 171 EXPECT_TRUE(tab->NeedsAuth()); |
172 EXPECT_TRUE(tab->CancelAuth()); | 172 EXPECT_TRUE(tab->CancelAuth()); |
173 EXPECT_FALSE(tab->NeedsAuth()); | 173 EXPECT_FALSE(tab->NeedsAuth()); |
174 EXPECT_EQ(L"Denied: no auth", GetActiveTabTitle()); | 174 EXPECT_EQ(L"Denied: no auth", GetActiveTabTitle()); |
175 } | 175 } |
| 176 |
| 177 // If multiple tabs are looking for the same auth, the user should only have to |
| 178 // enter it once (http://crbug.com/8914). |
| 179 TEST_F(LoginPromptTest, SupplyRedundantAuths) { |
| 180 scoped_refptr<HTTPTestServer> server = |
| 181 HTTPTestServer::CreateServer(kDocRoot, NULL); |
| 182 ASSERT_TRUE(NULL != server.get()); |
| 183 |
| 184 scoped_refptr<TabProxy> basic_tab1(GetActiveTab()); |
| 185 ASSERT_TRUE(basic_tab1.get()); |
| 186 NavigateTab(basic_tab1.get(), server->TestServerPageW(L"auth-basic/1")); |
| 187 |
| 188 AppendTab(GURL(chrome::kAboutBlankURL)); |
| 189 scoped_refptr<TabProxy> basic_tab2(GetActiveTab()); |
| 190 ASSERT_TRUE(basic_tab2.get()); |
| 191 NavigateTab(basic_tab2.get(), server->TestServerPageW(L"auth-basic/2")); |
| 192 |
| 193 // Both tabs start out needing auth. |
| 194 EXPECT_TRUE(basic_tab1->NeedsAuth()); |
| 195 EXPECT_TRUE(basic_tab2->NeedsAuth()); |
| 196 |
| 197 // Set the auth in only one of the tabs. |
| 198 EXPECT_TRUE(basic_tab2->SetAuth(username_basic_, password_)); |
| 199 |
| 200 // Now both tabs have loaded. |
| 201 wstring title1; |
| 202 EXPECT_TRUE(basic_tab1->GetTabTitle(&title1)); |
| 203 EXPECT_EQ(ExpectedTitleFromAuth(username_basic_, password_), title1); |
| 204 wstring title2; |
| 205 EXPECT_TRUE(basic_tab2->GetTabTitle(&title2)); |
| 206 EXPECT_EQ(ExpectedTitleFromAuth(username_basic_, password_), title2); |
| 207 } |
| 208 |
| 209 // If multiple tabs are looking for the same auth, and one is cancelled, the |
| 210 // other should be cancelled as well. |
| 211 TEST_F(LoginPromptTest, CancelRedundantAuths) { |
| 212 scoped_refptr<HTTPTestServer> server = |
| 213 HTTPTestServer::CreateServer(kDocRoot, NULL); |
| 214 ASSERT_TRUE(NULL != server.get()); |
| 215 |
| 216 scoped_refptr<TabProxy> basic_tab1(GetActiveTab()); |
| 217 ASSERT_TRUE(basic_tab1.get()); |
| 218 NavigateTab(basic_tab1.get(), server->TestServerPageW(L"auth-basic/1")); |
| 219 |
| 220 AppendTab(GURL(chrome::kAboutBlankURL)); |
| 221 scoped_refptr<TabProxy> basic_tab2(GetActiveTab()); |
| 222 ASSERT_TRUE(basic_tab2.get()); |
| 223 NavigateTab(basic_tab2.get(), server->TestServerPageW(L"auth-basic/2")); |
| 224 |
| 225 // Both tabs start out needing auth. |
| 226 EXPECT_TRUE(basic_tab1->NeedsAuth()); |
| 227 EXPECT_TRUE(basic_tab2->NeedsAuth()); |
| 228 |
| 229 // Cancel the auth in only one of the tabs. |
| 230 EXPECT_TRUE(basic_tab2->CancelAuth()); |
| 231 |
| 232 // Now both tabs have been denied. |
| 233 wstring title1; |
| 234 EXPECT_TRUE(basic_tab1->GetTabTitle(&title1)); |
| 235 EXPECT_EQ(L"Denied: no auth", title1); |
| 236 wstring title2; |
| 237 EXPECT_TRUE(basic_tab2->GetTabTitle(&title2)); |
| 238 EXPECT_EQ(L"Denied: no auth", title2); |
| 239 } |
OLD | NEW |