blob: cff2281194311dfd59c8bdf27073d8580dd45c02 (
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
|
// Copyright (c) 2009 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 "base/scoped_nsobject.h"
#import "chrome/browser/cocoa/about_ipc_controller.h"
#include "chrome/browser/cocoa/browser_test_helper.h"
#include "chrome/browser/cocoa/cocoa_test_helper.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
#if defined(IPC_MESSAGE_LOG_ENABLED)
namespace {
class AboutIPCControllerTest : public PlatformTest {
CocoaTestHelper cocoa_helper_; // Inits Cocoa, creates window, etc...
};
TEST_F(AboutIPCControllerTest, TestFilter) {
scoped_nsobject<AboutIPCController> controller(
[[AboutIPCController alloc] init]);
[controller window]; // force nib load.
IPC::LogData data;
// Make sure generic names do NOT get filtered.
std::wstring names[] = { L"PluginProcessingIsMyLife",
L"ViewMsgFoo",
L"NPObjectHell" };
for (unsigned int i = 0; i < arraysize(names); i++) {
data.message_name = names[i];
scoped_nsobject<CocoaLogData> cdata([[CocoaLogData alloc]
initWithLogData:data]);
EXPECT_FALSE([controller filterOut:cdata.get()]);
}
// Flip a checkbox, see it filtered, flip back, all is fine.
data.message_name = L"ViewMsgFoo";
scoped_nsobject<CocoaLogData> cdata([[CocoaLogData alloc]
initWithLogData:data]);
[controller setDisplayViewMessages:NO];
EXPECT_TRUE([controller filterOut:cdata.get()]);
[controller setDisplayViewMessages:YES];
EXPECT_FALSE([controller filterOut:cdata.get()]);
}
} // namespace
#endif // IPC_MESSAGE_LOG_ENABLED
|