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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
module SimpleNavigation
describe Helpers do
subject(:controller) { test_controller_class.new }
let(:invoices_item) { navigation[:invoices] }
let(:item) { nil }
let(:navigation) { setup_navigation('nav_id', 'nav_class') }
let(:test_controller_class) do
Class.new { include SimpleNavigation::Helpers }
end
let(:unpaid_item) { invoices_item.sub_navigation[:unpaid] }
before do
allow(Configuration).to receive(:eval_config)
allow(SimpleNavigation).to receive_messages(load_config: nil,
primary_navigation: navigation,
config_file?: true,
context_for_eval: controller)
select_an_item(navigation[item]) if item
end
describe '#active_navigation_item_name' do
context 'when no item is selected' do
it 'returns an empty string for no parameters' do
expect(controller.active_navigation_item_name).to eq ''
end
it "returns an empty string for level: 1" do
item_name = controller.active_navigation_item_name(level: 1)
expect(item_name).to eq ''
end
it 'returns an empty string for level: 2' do
item_name = controller.active_navigation_item_name(level: 2)
expect(item_name).to eq ''
end
it 'returns an empty string for level: :all' do
item_name = controller.active_navigation_item_name(level: :all)
expect(item_name).to eq ''
end
end
context 'when an item is selected' do
context "and it's a primary item" do
let(:item) { :invoices }
it 'returns an empty string' do
expect(controller.active_navigation_item_name).to eq ''
end
it "returns the selected item's name for level: 1" do
item_name = controller.active_navigation_item_name(level: 1)
expect(item_name).to eq 'Invoices'
end
it 'returns an empty string for level: 2' do
item_name = controller.active_navigation_item_name(level: 2)
expect(item_name).to eq ''
end
it 'returns an empty string for level: :all' do
item_name = controller.active_navigation_item_name(level: :all)
expect(item_name).to eq ''
end
end
context "and it's a sub navigation item" do
before do
select_an_item(invoices_item)
select_an_item(unpaid_item)
end
it "returns the selected item's name" do
expect(controller.active_navigation_item_name).to eq 'Unpaid'
end
it "returns the selected item's parent name for level: 1" do
item_name = controller.active_navigation_item_name(level: 1)
expect(item_name).to eq 'Invoices'
end
it "returns the selected item's name for level: 2" do
item_name = controller.active_navigation_item_name(level: 2)
expect(item_name).to eq 'Unpaid'
end
it "returns the selected item's name for level: :all" do
item_name = controller.active_navigation_item_name(level: :all)
expect(item_name).to eq 'Unpaid'
end
end
end
end
describe '#active_navigation_item_key' do
context 'when no item is selected' do
it 'returns nil' do
expect(controller.active_navigation_item_key).to be_nil
end
it 'returns nil for no parameters' do
expect(controller.active_navigation_item_key).to be_nil
end
it "returns nil for level: 1" do
item_key = controller.active_navigation_item_key(level: 1)
expect(item_key).to be_nil
end
it 'returns nil for level: 2' do
item_key = controller.active_navigation_item_key(level: 2)
expect(item_key).to be_nil
end
it 'returns nil for level: :all' do
item_key = controller.active_navigation_item_key(level: :all)
expect(item_key).to be_nil
end
end
context 'when an item is selected' do
context "and it's a primary item" do
let(:item) { :invoices }
it 'returns nil for no parameters' do
expect(controller.active_navigation_item_key).to be_nil
end
it "returns the selected item's name for level: 1" do
item_key = controller.active_navigation_item_key(level: 1)
expect(item_key).to eq :invoices
end
it 'returns nil for level: 2' do
item_key = controller.active_navigation_item_key(level: 2)
expect(item_key).to be_nil
end
it 'returns nil for level: :all' do
item_key = controller.active_navigation_item_key(level: :all)
expect(item_key).to be_nil
end
end
context "and it's a sub navigation item" do
before do
select_an_item(invoices_item)
select_an_item(unpaid_item)
end
it "returns the selected item's name" do
expect(controller.active_navigation_item_key).to eq :unpaid
end
it "returns the selected item's parent name for level: 1" do
item_key = controller.active_navigation_item_key(level: 1)
expect(item_key).to eq :invoices
end
it "returns the selected item's name for level: 2" do
item_key = controller.active_navigation_item_key(level: 2)
expect(item_key).to eq :unpaid
end
it "returns the selected item's name for level: :all" do
item_key = controller.active_navigation_item_key(level: :all)
expect(item_key).to eq :unpaid
end
end
end
end
describe '#active_navigation_item' do
context 'when no item is selected' do
it 'returns nil for no parameters' do
expect(controller.active_navigation_item).to be_nil
end
it "returns nil for level: 1" do
item_key = controller.active_navigation_item(level: 1)
expect(item_key).to be_nil
end
it 'returns nil for level: 2' do
item_key = controller.active_navigation_item(level: 2)
expect(item_key).to be_nil
end
it 'returns nil for level: :all' do
item_key = controller.active_navigation_item(level: :all)
expect(item_key).to be_nil
end
end
context 'when an item is selected' do
context "and it's a primary item" do
let(:item) { :invoices }
it 'returns nil for no parameters' do
expect(controller.active_navigation_item).to be_nil
end
it "returns the selected item's name for level: 1" do
item_key = controller.active_navigation_item(level: 1)
expect(item_key).to be invoices_item
end
it 'returns nil for level: 2' do
item_key = controller.active_navigation_item(level: 2)
expect(item_key).to be_nil
end
it 'returns nil for level: :all' do
item_key = controller.active_navigation_item(level: :all)
expect(item_key).to be_nil
end
end
context "and it's a sub navigation item" do
before do
select_an_item(invoices_item)
select_an_item(unpaid_item)
end
it "returns the selected item's name for no parameters" do
expect(controller.active_navigation_item).to be unpaid_item
end
it "returns the selected item's parent name for level: 1" do
item_key = controller.active_navigation_item(level: 1)
expect(item_key).to be invoices_item
end
it "returns the selected item's name for level: 2" do
item_key = controller.active_navigation_item(level: 2)
expect(item_key).to eq unpaid_item
end
it "returns the selected item's name for level: :all" do
item_key = controller.active_navigation_item(level: :all)
expect(item_key).to eq unpaid_item
end
end
end
end
describe '#active_navigation_item_container' do
shared_examples 'returning items container' do
it 'returns the primary navigation for no parameters' do
expect(controller.active_navigation_item_container).to be navigation
end
it "returns the primary navigation for level: 1" do
item_container = controller.active_navigation_item_container(level: 1)
expect(item_container).to be navigation
end
it 'returns the primary navigation level: :all' do
item_container =
controller.active_navigation_item_container(level: :all)
expect(item_container).to be navigation
end
end
context 'when no item is selected' do
it_behaves_like 'returning items container'
it 'returns nil for level: 2' do
item_container = controller.active_navigation_item_container(level: 2)
expect(item_container).to be_nil
end
end
context 'when an item is selected' do
context "and it's a primary item" do
let(:item) { :invoices }
it_behaves_like 'returning items container'
it 'returns the invoices items container for level: 2' do
item_container =
controller.active_navigation_item_container(level: 2)
expect(item_container).to be invoices_item.sub_navigation
end
end
context "and it's a sub navigation item" do
before do
select_an_item(invoices_item)
select_an_item(unpaid_item)
end
it_behaves_like 'returning items container'
it 'returns the invoices items container for level: 2' do
item_container =
controller.active_navigation_item_container(level: 2)
expect(item_container).to be invoices_item.sub_navigation
end
end
end
end
describe '#render_navigation' do
it 'evaluates the configuration on every request' do
expect(SimpleNavigation).to receive(:load_config).twice
2.times { controller.render_navigation }
end
it 'loads the :default configuration' do
expect(SimpleNavigation).to receive(:load_config).with(:default)
controller.render_navigation
end
it "doesn't set the items directly" do
expect(SimpleNavigation.config).not_to receive(:items)
controller.render_navigation
end
it 'looks up the active_item_container based on the level' do
expect(SimpleNavigation).to receive(:active_item_container_for)
.with(:all)
controller.render_navigation
end
context 'when the :context option is specified' do
it 'loads the configuration for the specified context' do
expect(SimpleNavigation).to receive(:load_config).with(:my_context)
controller.render_navigation(context: :my_context)
end
end
context 'when the :items option is specified' do
let(:items) { double(:items) }
it 'sets the items directly' do
expect(SimpleNavigation.config).to receive(:items).with(items)
controller.render_navigation(items: items)
end
end
context 'when the :level option is set' do
context 'and its value is 1' do
it 'calls render on the primary navigation' do
expect(navigation).to receive(:render).with(level: 1)
controller.render_navigation(level: 1)
end
end
context 'and its value is 2' do
context 'and the active_item_container is set' do
let(:item_container) { double(:container).as_null_object }
before do
allow(SimpleNavigation).to receive_messages(active_item_container_for: item_container)
end
it 'finds the selected sub navigation for the specified level' do
expect(SimpleNavigation).to receive(:active_item_container_for)
.with(2)
controller.render_navigation(level: 2)
end
it 'calls render on the active item_container' do
expect(item_container).to receive(:render).with(level: 2)
controller.render_navigation(level: 2)
end
end
context "and the active_item_container isn't set" do
it "doesn't raise an exception" do
expect{
controller.render_navigation(level: 2)
}.not_to raise_error
end
end
end
context "and its value isn't a valid level" do
it 'raises an exception' do
expect{
controller.render_navigation(level: :invalid)
}.to raise_error
end
end
end
context 'when the :levels option is set' do
before { allow(SimpleNavigation).to receive_messages(active_item_container_for: navigation) }
it 'treats it like the :level option' do
expect(navigation).to receive(:render).with(level: 2)
controller.render_navigation(levels: 2)
end
end
context 'when a block is given' do
it 'calls the block passing it an item container' do
expect{ |blk|
controller.render_navigation(&blk)
}.to yield_with_args(ItemContainer)
end
end
context 'when no primary configuration is defined' do
before { allow(SimpleNavigation).to receive_messages(primary_navigation: nil) }
it 'raises an exception' do
expect{controller.render_navigation}.to raise_error
end
end
context "when active_item_container is set" do
let(:active_item_container) { double(:container).as_null_object }
before do
allow(SimpleNavigation).to receive_messages(active_item_container_for: active_item_container)
end
it 'calls render on the active_item_container' do
expect(active_item_container).to receive(:render)
controller.render_navigation
end
end
end
end
end
|