blob: c42520d32fb1ceaa665fe3acf066c7e6c373bce3 (
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
51
52
53
54
55
56
57
58
59
60
61
62
|
// 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_setting_bubble_cocoa.h"
#import <Cocoa/Cocoa.h>
#include "base/scoped_nsobject.h"
#import "chrome/browser/cocoa/cocoa_test_helper.h"
#include "chrome/browser/content_setting_bubble_model.h"
#include "chrome/common/content_settings_types.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class DummyContentSettingBubbleModel : public ContentSettingBubbleModel {
public:
DummyContentSettingBubbleModel(ContentSettingsType content_type)
: ContentSettingBubbleModel(NULL, NULL, content_type) {
RadioGroup radio_group;
radio_group.default_item = 0;
radio_group.radio_items.resize(2);
set_radio_group(radio_group);
}
};
class ContentSettingBubbleControllerTest : public CocoaTest {
};
// Check that the bubble doesn't crash or leak for any settings type
TEST_F(ContentSettingBubbleControllerTest, Init) {
for (int i = 0; i < CONTENT_SETTINGS_NUM_TYPES; ++i) {
if (i == CONTENT_SETTINGS_TYPE_NOTIFICATIONS)
continue; // Notifications have no bubble.
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];
ContentSettingBubbleController* controller = [ContentSettingBubbleController
showForModel:new DummyContentSettingBubbleModel(settingsType)
parentWindow:parent
anchoredAt:NSMakePoint(50, 20)];
EXPECT_TRUE(controller != nil);
EXPECT_TRUE([[controller window] isVisible]);
[parent.get() close];
}
}
} // namespace
|