summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/browser_window_cocoa_browsertest.mm
blob: 831f1d0349b4ac2c57c7e89935beb55c409f3ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import <Cocoa/Cocoa.h>
#import <objc/runtime.h>

#import "chrome/browser/ui/cocoa/browser_window_cocoa.h"

#include "base/logging.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/cocoa/browser_window_cocoa.h"
#import "chrome/browser/ui/cocoa/info_bubble_window.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/autofill/core/browser/password_generator.h"
#include "content/public/common/password_form.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/rect.h"

typedef InProcessBrowserTest BrowserWindowCocoaBrowsertest;

IN_PROC_BROWSER_TEST_F(BrowserWindowCocoaBrowsertest,
                       ShowPasswordGenerationBubble) {
  gfx::Rect rect;
  content::PasswordForm form;
  autofill::PasswordGenerator generator(10);
  browser()->window()->ShowPasswordGenerationBubble(rect, form, &generator);

  // Make sure that the password generation bubble is actually created.
  NSWindow* window = browser()->window()->GetNativeWindow();
  BOOL found = NO;
  for (NSUInteger i = 0; i < [[window childWindows] count]; i++) {
    id object = [[window childWindows] objectAtIndex:i];
    if ([object isKindOfClass:[InfoBubbleWindow class]])
      found = YES;
  }
  EXPECT_TRUE(found);
}