2011-07-26 19:20:03 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2011-11-26 05:33:57 +00:00
|
|
|
describe Locomotive::GlobalActionsCell do
|
2012-02-16 00:32:37 +00:00
|
|
|
|
2012-01-15 04:38:07 +00:00
|
|
|
let(:menu) { render_cell('locomotive/global_actions', :show, :current_locomotive_account => FactoryGirl.build('admin user'), :current_site_url => 'http://www.yahoo.fr') }
|
2011-07-26 19:20:03 +00:00
|
|
|
|
|
|
|
describe 'show menu' do
|
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
before(:all) do
|
|
|
|
reset_cell(:main => 'settings', :sub => 'site')
|
2011-07-26 19:20:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has 3 links' do
|
|
|
|
menu.should have_selector('a', :count => 4)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a link to edit my account' do
|
2012-01-15 06:05:33 +00:00
|
|
|
menu.should have_link('Admin')
|
2011-07-26 19:20:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a link to see my website' do
|
|
|
|
menu.should have_link('See website')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a link to log out' do
|
|
|
|
menu.should have_link('Log out')
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'add a new menu item' do
|
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
before(:all) do
|
|
|
|
reset_cell(:main => 'settings', :sub => 'site')
|
2011-11-26 06:24:34 +00:00
|
|
|
Locomotive::GlobalActionsCell.update_for(:testing_add) { |m| m.add(:my_link, :label => 'My link', :url => 'http://www.locomotivecms.com') }
|
2011-07-26 19:20:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has 4 items' do
|
|
|
|
menu.should have_selector('a', :count => 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a new link' do
|
|
|
|
menu.should have_link('My link')
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'remove a new menu item' do
|
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
before(:all) do
|
|
|
|
reset_cell(:main => 'settings', :sub => 'site')
|
2011-11-26 06:24:34 +00:00
|
|
|
Locomotive::GlobalActionsCell.update_for(:testing_remove) { |m| m.remove(:see) }
|
2011-07-26 19:20:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has 2 items' do
|
|
|
|
menu.should have_selector('a', :count => 3)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not have the link to see my website' do
|
|
|
|
menu.should_not have_link('See website')
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'modify an existing menu item' do
|
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
before(:all) do
|
|
|
|
reset_cell(:main => 'settings', :sub => 'site')
|
2011-11-26 06:24:34 +00:00
|
|
|
Locomotive::GlobalActionsCell.update_for(:testing_update) { |m| m.modify(:see, { :label => 'Modified !' }) }
|
2011-07-26 19:20:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'still has 3 items' do
|
|
|
|
menu.should have_selector('a', :count => 4)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a modified menu item' do
|
|
|
|
menu.should_not have_link('See website')
|
|
|
|
menu.should have_link('Modified !')
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2011-08-13 23:24:02 +00:00
|
|
|
after(:all) do
|
2012-02-16 00:32:37 +00:00
|
|
|
reset_cell
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_cell(attributes = {})
|
|
|
|
::Locomotive.send(:remove_const, 'GlobalActionsCell')
|
|
|
|
|
|
|
|
cell_path = File.join(File.dirname(__FILE__), '../../../app/cells/locomotive/global_actions_cell.rb')
|
|
|
|
load cell_path
|
|
|
|
|
|
|
|
unless attributes.empty?
|
|
|
|
Locomotive::GlobalActionsCell.any_instance.stubs(:sections).returns(attributes)
|
|
|
|
end
|
2011-08-13 23:24:02 +00:00
|
|
|
end
|
|
|
|
|
2011-11-26 05:33:57 +00:00
|
|
|
end
|