OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 "chrome/browser/cocoa/table_model_array_controller.h" |
| 6 |
| 7 #include "base/auto_reset.h" |
| 8 #include "base/command_line.h" |
| 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/cocoa/browser_test_helper.h" |
| 11 #import "chrome/browser/cocoa/cocoa_test_helper.h" |
| 12 #include "chrome/browser/mock_plugin_exceptions_table_model.h" |
| 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/test/testing_profile.h" |
| 15 #include "grit/generated_resources.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "testing/gtest_mac.h" |
| 18 #include "webkit/glue/plugins/webplugininfo.h" |
| 19 |
| 20 namespace { |
| 21 |
| 22 class TableModelArrayControllerTest : public CocoaTest { |
| 23 public: |
| 24 TableModelArrayControllerTest() |
| 25 : command_line_(CommandLine::ForCurrentProcess(), |
| 26 *CommandLine::ForCurrentProcess()) {} |
| 27 |
| 28 virtual void SetUp() { |
| 29 CocoaTest::SetUp(); |
| 30 |
| 31 CommandLine::ForCurrentProcess()->AppendSwitch( |
| 32 switches::kEnableResourceContentSettings); |
| 33 |
| 34 TestingProfile* profile = browser_helper_.profile(); |
| 35 HostContentSettingsMap* map = profile->GetHostContentSettingsMap(); |
| 36 |
| 37 HostContentSettingsMap::Pattern example_com("[*.]example.com"); |
| 38 HostContentSettingsMap::Pattern moose_org("[*.]moose.org"); |
| 39 map->SetContentSetting(example_com, |
| 40 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 41 "foo", |
| 42 CONTENT_SETTING_ALLOW); |
| 43 map->SetContentSetting(moose_org, |
| 44 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 45 "bar", |
| 46 CONTENT_SETTING_BLOCK); |
| 47 map->SetContentSetting(example_com, |
| 48 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 49 "bar", |
| 50 CONTENT_SETTING_ALLOW); |
| 51 |
| 52 model_.reset(new MockPluginExceptionsTableModel(map, NULL)); |
| 53 |
| 54 std::vector<WebPluginInfo> plugins; |
| 55 WebPluginInfo foo_plugin; |
| 56 foo_plugin.path = FilePath(FILE_PATH_LITERAL("foo")); |
| 57 foo_plugin.name = ASCIIToUTF16("FooPlugin"); |
| 58 foo_plugin.enabled = true; |
| 59 plugins.push_back(foo_plugin); |
| 60 WebPluginInfo bar_plugin; |
| 61 bar_plugin.path = FilePath(FILE_PATH_LITERAL("bar")); |
| 62 bar_plugin.name = ASCIIToUTF16("BarPlugin"); |
| 63 bar_plugin.enabled = true; |
| 64 plugins.push_back(bar_plugin); |
| 65 WebPluginInfo blurp_plugin; |
| 66 blurp_plugin.path = FilePath(FILE_PATH_LITERAL("blurp")); |
| 67 blurp_plugin.name = ASCIIToUTF16("BlurpPlugin"); |
| 68 blurp_plugin.enabled = true; |
| 69 plugins.push_back(blurp_plugin); |
| 70 |
| 71 model_->set_plugins(plugins); |
| 72 model_->LoadSettings(); |
| 73 |
| 74 id content = [NSMutableArray array]; |
| 75 controller_.reset( |
| 76 [[TableModelArrayController alloc] initWithContent:content]); |
| 77 NSDictionary* columns = [NSDictionary dictionaryWithObjectsAndKeys: |
| 78 [NSNumber numberWithInt:IDS_EXCEPTIONS_HOSTNAME_HEADER], @"title", |
| 79 [NSNumber numberWithInt:IDS_EXCEPTIONS_ACTION_HEADER], @"action", |
| 80 nil]; |
| 81 [controller_.get() bindToTableModel:model_.get() |
| 82 withColumns:columns |
| 83 groupTitleColumn:@"title"]; |
| 84 } |
| 85 |
| 86 protected: |
| 87 BrowserTestHelper browser_helper_; |
| 88 scoped_ptr<MockPluginExceptionsTableModel> model_; |
| 89 scoped_nsobject<TableModelArrayController> controller_; |
| 90 |
| 91 private: |
| 92 AutoReset<CommandLine> command_line_; |
| 93 }; |
| 94 |
| 95 TEST_F(TableModelArrayControllerTest, CheckTitles) { |
| 96 NSArray* titles = [[controller_.get() arrangedObjects] valueForKey:@"title"]; |
| 97 EXPECT_NSEQ(@"(\n" |
| 98 @" FooPlugin,\n" |
| 99 @" \"[*.]example.com\",\n" |
| 100 @" BarPlugin,\n" |
| 101 @" \"[*.]example.com\",\n" |
| 102 @" \"[*.]moose.org\"\n" |
| 103 @")", |
| 104 [titles description]); |
| 105 } |
| 106 |
| 107 TEST_F(TableModelArrayControllerTest, RemoveRows) { |
| 108 NSArrayController* controller = controller_.get(); |
| 109 [controller setSelectionIndex:1]; |
| 110 [controller remove:nil]; |
| 111 NSArray* titles = [[controller arrangedObjects] valueForKey:@"title"]; |
| 112 EXPECT_NSEQ(@"(\n" |
| 113 @" BarPlugin,\n" |
| 114 @" \"[*.]example.com\",\n" |
| 115 @" \"[*.]moose.org\"\n" |
| 116 @")", |
| 117 [titles description]); |
| 118 |
| 119 [controller setSelectionIndex:2]; |
| 120 [controller remove:nil]; |
| 121 titles = [[controller arrangedObjects] valueForKey:@"title"]; |
| 122 EXPECT_NSEQ(@"(\n" |
| 123 @" BarPlugin,\n" |
| 124 @" \"[*.]example.com\"\n" |
| 125 @")", |
| 126 [titles description]); |
| 127 } |
| 128 |
| 129 TEST_F(TableModelArrayControllerTest, RemoveAll) { |
| 130 [controller_.get() removeAll:nil]; |
| 131 EXPECT_EQ(0u, [[controller_.get() arrangedObjects] count]); |
| 132 } |
| 133 |
| 134 TEST_F(TableModelArrayControllerTest, AddException) { |
| 135 TestingProfile* profile = browser_helper_.profile(); |
| 136 HostContentSettingsMap* map = profile->GetHostContentSettingsMap(); |
| 137 HostContentSettingsMap::Pattern example_com("[*.]example.com"); |
| 138 map->SetContentSetting(example_com, |
| 139 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 140 "blurp", |
| 141 CONTENT_SETTING_BLOCK); |
| 142 |
| 143 NSArrayController* controller = controller_.get(); |
| 144 NSArray* titles = [[controller arrangedObjects] valueForKey:@"title"]; |
| 145 EXPECT_NSEQ(@"(\n" |
| 146 @" FooPlugin,\n" |
| 147 @" \"[*.]example.com\",\n" |
| 148 @" BarPlugin,\n" |
| 149 @" \"[*.]example.com\",\n" |
| 150 @" \"[*.]moose.org\",\n" |
| 151 @" BlurpPlugin,\n" |
| 152 @" \"[*.]example.com\"\n" |
| 153 @")", |
| 154 [titles description]); |
| 155 NSMutableIndexSet* indexes = [NSMutableIndexSet indexSetWithIndex:1]; |
| 156 [indexes addIndex:6]; |
| 157 [controller setSelectionIndexes:indexes]; |
| 158 [controller remove:nil]; |
| 159 titles = [[controller arrangedObjects] valueForKey:@"title"]; |
| 160 EXPECT_NSEQ(@"(\n" |
| 161 @" BarPlugin,\n" |
| 162 @" \"[*.]example.com\",\n" |
| 163 @" \"[*.]moose.org\"\n" |
| 164 @")", |
| 165 [titles description]); |
| 166 } |
| 167 |
| 168 } // namespace |
OLD | NEW |