blob: 9a6c93b6732faa71cb447f736c995077bb439f2a (
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
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2010 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 "chrome/browser/cocoa/content_blocked_bubble_controller.h"
#import <Cocoa/Cocoa.h>
#include "base/scoped_nsobject.h"
#import "chrome/browser/cocoa/cocoa_test_helper.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class ContentBlockedBubbleControllerTest : public CocoaTest {
};
// Check that the bubble doesn't crash or leak for any settings type
TEST_F(ContentBlockedBubbleControllerTest, Init) {
for (int i = 0; i < CONTENT_SETTINGS_NUM_TYPES; ++i) {
ContentSettingsType settingsType = static_cast<ContentSettingsType>(i);
scoped_nsobject<NSWindow> parent([[NSWindow alloc]
initWithContentRect:NSMakeRect(0, 0, 800, 600)
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO]);
[parent setReleasedWhenClosed:NO];
if (DebugUtil::BeingDebugged())
[parent.get() orderFront:nil];
else
[parent.get() orderBack:nil];
ContentBlockedBubbleController* controller =
[ContentBlockedBubbleController showForType:settingsType
parentWindow:parent
anchoredAt:NSMakePoint(50, 20)
host:"http://te.net"
displayHost:@"te.net"
tabContents:NULL
profile:NULL];
EXPECT_TRUE(controller != nil);
[controller showWindow:nil];
[parent.get() close];
}
}
} // namespace
|