Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / ssl_client_certificate_selector_cocoa_browsertest.mm
blobff5088970c423cb10ce364e889b19d0eb3721f90
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #import "chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h"
7 #import <SecurityInterface/SFChooseIdentityPanel.h>
9 #include "base/bind.h"
10 #import "base/mac/mac_util.h"
11 #include "base/macros.h"
12 #include "chrome/browser/ssl/ssl_client_certificate_selector.h"
13 #include "chrome/browser/ssl/ssl_client_certificate_selector_test.h"
14 #include "chrome/browser/ui/browser.h"
15 #include "chrome/browser/ui/browser_commands.h"
16 #include "chrome/browser/ui/tabs/tab_strip_model.h"
17 #include "components/web_modal/web_contents_modal_dialog_manager.h"
18 #include "content/public/browser/client_certificate_delegate.h"
19 #include "content/public/browser/web_contents.h"
20 #include "content/public/test/test_utils.h"
21 #import "testing/gtest_mac.h"
22 #include "ui/base/cocoa/window_size_constants.h"
24 using web_modal::WebContentsModalDialogManager;
26 namespace {
28 class TestClientCertificateDelegate
29     : public content::ClientCertificateDelegate {
30  public:
31   // Creates a ClientCertificateDelegate that sets |*destroyed| to true on
32   // destruction.
33   explicit TestClientCertificateDelegate(bool* destroyed)
34       : destroyed_(destroyed) {}
36   ~TestClientCertificateDelegate() override {
37     if (destroyed_ != nullptr)
38       *destroyed_ = true;
39   }
41   // content::ClientCertificateDelegate.
42   void ContinueWithCertificate(net::X509Certificate* cert) override {
43     // TODO(davidben): Add a test which explicitly tests selecting a
44     // certificate, or selecting no certificate, since closing the dialog
45     // (normally by closing the tab) is not the same as explicitly selecting no
46     // certificate.
47     ADD_FAILURE() << "Certificate selected";
48   }
50  private:
51   bool* destroyed_;
53   DISALLOW_COPY_AND_ASSIGN(TestClientCertificateDelegate);
56 }  // namespace
58 typedef SSLClientCertificateSelectorTestBase
59     SSLClientCertificateSelectorCocoaTest;
61 // Flaky on 10.7; crbug.com/313243
62 IN_PROC_BROWSER_TEST_F(SSLClientCertificateSelectorCocoaTest, DISABLED_Basic) {
63   // TODO(kbr): re-enable: http://crbug.com/222296
64   if (base::mac::IsOSMountainLionOrLater())
65     return;
67   content::WebContents* web_contents =
68       browser()->tab_strip_model()->GetActiveWebContents();
69   WebContentsModalDialogManager* web_contents_modal_dialog_manager =
70       WebContentsModalDialogManager::FromWebContents(web_contents);
71   EXPECT_FALSE(web_contents_modal_dialog_manager->IsDialogActive());
73   bool destroyed = false;
74   SSLClientCertificateSelectorCocoa* selector = [
75       [SSLClientCertificateSelectorCocoa alloc]
76       initWithBrowserContext:web_contents->GetBrowserContext()
77              certRequestInfo:auth_requestor_->cert_request_info_.get()
78                     delegate:make_scoped_ptr(new TestClientCertificateDelegate(
79                                  &destroyed))];
80   [selector displayForWebContents:web_contents];
81   content::RunAllPendingInMessageLoop();
82   EXPECT_TRUE([selector panel]);
83   EXPECT_TRUE(web_contents_modal_dialog_manager->IsDialogActive());
85   WebContentsModalDialogManager::TestApi test_api(
86       web_contents_modal_dialog_manager);
87   test_api.CloseAllDialogs();
88   content::RunAllPendingInMessageLoop();
89   EXPECT_FALSE(web_contents_modal_dialog_manager->IsDialogActive());
91   EXPECT_TRUE(destroyed);
94 // Test that switching to another tab correctly hides the sheet.
95 IN_PROC_BROWSER_TEST_F(SSLClientCertificateSelectorCocoaTest, HideShow) {
96   content::WebContents* web_contents =
97       browser()->tab_strip_model()->GetActiveWebContents();
98   SSLClientCertificateSelectorCocoa* selector = [
99       [SSLClientCertificateSelectorCocoa alloc]
100       initWithBrowserContext:web_contents->GetBrowserContext()
101              certRequestInfo:auth_requestor_->cert_request_info_.get()
102                     delegate:make_scoped_ptr(
103                                  new TestClientCertificateDelegate(nullptr))];
104   [selector displayForWebContents:web_contents];
105   content::RunAllPendingInMessageLoop();
107   NSWindow* sheetWindow = [[selector overlayWindow] attachedSheet];
108   NSRect sheetFrame = [sheetWindow frame];
109   EXPECT_EQ(1.0, [sheetWindow alphaValue]);
111   // Switch to another tab and verify that the sheet is hidden.
112   AddBlankTabAndShow(browser());
113   EXPECT_EQ(0.0, [sheetWindow alphaValue]);
114   EXPECT_NSEQ(ui::kWindowSizeDeterminedLater, [sheetWindow frame]);
116   // Switch back and verify that the sheet is shown.
117   chrome::SelectNumberedTab(browser(), 0);
118   EXPECT_EQ(1.0, [sheetWindow alphaValue]);
119   EXPECT_NSEQ(sheetFrame, [sheetWindow frame]);