Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: ui/base/ios/cru_context_menu_controller_unittest.mm

Issue 1885043012: Remove ui/base/ios (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@context_menu_copy
Patch Set: Remove CRWContextMenuProvider Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/base/ios/cru_context_menu_controller.mm ('k') | ui/base/ios/cru_context_menu_holder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import "ui/base/ios/cru_context_menu_controller.h"
6
7 #import <UIKit/UIKit.h>
8
9 #include "base/mac/scoped_nsobject.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "testing/platform_test.h"
12 #import "ui/base/ios/cru_context_menu_holder.h"
13
14 namespace {
15
16 class ContextMenuControllerTest : public PlatformTest {
17 public:
18 ContextMenuControllerTest() { }
19
20 void SetUp() override {
21 _menuController.reset([[CRUContextMenuController alloc] init]);
22 _window.reset(
23 [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]);
24 [_window makeKeyAndVisible];
25 }
26
27 protected:
28 base::scoped_nsobject<CRUContextMenuController> _menuController;
29 base::scoped_nsobject<UIWindow> _window;
30 };
31
32 TEST_F(ContextMenuControllerTest, OneEntry) {
33 base::scoped_nsobject<CRUContextMenuHolder> holder(
34 [[CRUContextMenuHolder alloc] init]);
35 BOOL clicked = NO;
36 BOOL* clickedPtr = &clicked;
37
38 [holder appendItemWithTitle:@"foo" action:^{ *clickedPtr = YES; }];
39 [holder setMenuTitle:@"FooTitle"];
40
41 [_menuController showWithHolder:holder atPoint:CGPointZero inView:_window];
42
43 EXPECT_TRUE([_menuController isVisible]);
44 }
45
46 TEST_F(ContextMenuControllerTest, ShouldDismissImmediately) {
47 base::scoped_nsobject<CRUContextMenuHolder> holder(
48 [[CRUContextMenuHolder alloc] init]);
49 [holder appendItemWithTitle:@"foo" action:^{}];
50 [holder appendItemWithTitle:@"bar" action:^{} dismissImmediately:YES];
51 [holder appendItemWithTitle:@"baz" action:^{} dismissImmediately:NO];
52
53 EXPECT_FALSE([holder shouldDismissImmediatelyOnClickedAtIndex:0]);
54 EXPECT_TRUE([holder shouldDismissImmediatelyOnClickedAtIndex:1]);
55 EXPECT_FALSE([holder shouldDismissImmediatelyOnClickedAtIndex:2]);
56 }
57
58 } // namespace
OLDNEW
« no previous file with comments | « ui/base/ios/cru_context_menu_controller.mm ('k') | ui/base/ios/cru_context_menu_holder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698