kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.4 KiB
72 lines
2.4 KiB
require 'spec_helper'
|
|
|
|
describe WikiMenuItem do
|
|
before(:each) do
|
|
@project = FactoryGirl.create(:project, :enabled_module_names => %w[activity])
|
|
@current = FactoryGirl.create(:user, :login => "user1", :mail => "user1@users.com")
|
|
|
|
User.stub!(:current).and_return(@current)
|
|
end
|
|
|
|
it 'should create a default wiki menu item when enabling the wiki' do
|
|
WikiMenuItem.all.should_not be_any
|
|
|
|
@project.enabled_modules << EnabledModule.new(:name => 'wiki')
|
|
@project.reload
|
|
|
|
wiki_item = @project.wiki.wiki_menu_items.first
|
|
wiki_item.name.should eql 'Wiki'
|
|
wiki_item.title.should eql 'Wiki'
|
|
wiki_item.options[:index_page].should eql true
|
|
wiki_item.options[:new_wiki_page].should eql true
|
|
end
|
|
|
|
it 'should change title when a wikipage is renamed' do
|
|
wikipage = FactoryGirl.create(:wiki_page, :title => 'Oldtitle')
|
|
|
|
menu_item_1 = FactoryGirl.create(:wiki_menu_item, :wiki_id => wikipage.wiki.id,
|
|
:name => 'Item 1',
|
|
:title => 'Oldtitle')
|
|
|
|
wikipage.title = 'Newtitle'
|
|
wikipage.save!
|
|
|
|
menu_item_1.reload
|
|
menu_item_1.title.should == wikipage.title
|
|
end
|
|
|
|
describe 'it should destroy' do
|
|
before(:each) do
|
|
@project.enabled_modules << EnabledModule.new(:name => 'wiki')
|
|
@project.reload
|
|
|
|
@menu_item_1 = FactoryGirl.create(:wiki_menu_item, :wiki_id => @project.wiki.id,
|
|
:name => 'Item 1',
|
|
:title => 'Item 1')
|
|
|
|
@menu_item_2 = FactoryGirl.create(:wiki_menu_item, :wiki_id => @project.wiki.id,
|
|
:name => 'Item 2',
|
|
:parent_id => @menu_item_1.id,
|
|
:title => 'Item 2')
|
|
end
|
|
|
|
it 'all children when deleting the parent' do
|
|
@menu_item_1.destroy
|
|
|
|
expect {WikiMenuItem.find(@menu_item_1.id)}.to raise_error(ActiveRecord::RecordNotFound)
|
|
expect {WikiMenuItem.find(@menu_item_2.id)}.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
|
|
describe 'all items when destroying' do
|
|
it 'the associated project' do
|
|
@project.destroy
|
|
WikiMenuItem.all.should_not be_any
|
|
end
|
|
|
|
it 'the associated wiki' do
|
|
@project.wiki.destroy
|
|
WikiMenuItem.all.should_not be_any
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|