blob: e03becf3894cbbd17ade22f5d7ea414b7a7f2346 (
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"
#include "chrome/browser/ui/cocoa/browser_test_helper.h"
#include "chrome/browser/ui/cocoa/cocoa_test_helper.h"
#import "chrome/browser/ui/cocoa/hung_renderer_controller.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
namespace {
class HungRendererControllerTest : public CocoaTest {
public:
virtual void SetUp() {
CocoaTest::SetUp();
hung_renderer_controller_ = [[HungRendererController alloc]
initWithWindowNibName:@"HungRendererDialog"];
}
HungRendererController* hung_renderer_controller_; // owned by its window
};
TEST_F(HungRendererControllerTest, TestShowAndClose) {
// Doesn't test much functionality-wise, but makes sure we can
// display and tear down a window.
[hung_renderer_controller_ showWindow:nil];
// Cannot call performClose:, because the close button is disabled.
[hung_renderer_controller_ close];
}
TEST_F(HungRendererControllerTest, TestKillButton) {
// We can't test killing a process because we have no running
// process to kill, but we can make sure that pressing the kill
// button closes the window.
[hung_renderer_controller_ showWindow:nil];
[[hung_renderer_controller_ killButton] performClick:nil];
}
TEST_F(HungRendererControllerTest, TestWaitButton) {
// We can't test waiting because we have no running process to wait
// for, but we can make sure that pressing the wait button closes
// the window.
[hung_renderer_controller_ showWindow:nil];
[[hung_renderer_controller_ waitButton] performClick:nil];
}
} // namespace
|