HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/openproject/spec/controllers/wiki_menu_items_controller_spec.rb
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2017 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# See docs/COPYRIGHT.rdoc for more details.
#++

require 'spec_helper'

describe WikiMenuItemsController, type: :controller do
  let(:current_user) { FactoryBot.create(:admin) }

  # create project with wiki
  let(:project) { FactoryBot.create(:project).reload } # a wiki is created for project, but the object doesn't know of it (FIXME?)
  let(:wiki) { project.wiki }

  let(:wiki_page) { FactoryBot.create(:wiki_page, wiki: wiki) } # first wiki page without child pages
  let!(:top_level_wiki_menu_item) { FactoryBot.create(:wiki_menu_item, :with_menu_item_options, wiki: wiki, name: wiki_page.slug) }

  before :each do
    # log in user
    allow(User).to receive(:current).and_return current_user
  end

  describe '#edit' do
    # more wiki pages with menu items
    let(:another_wiki_page) { FactoryBot.create(:wiki_page, wiki: wiki) } # second wiki page with two child pages
    let!(:another_wiki_page_top_level_wiki_menu_item) { FactoryBot.create(:wiki_menu_item, wiki: wiki, name: another_wiki_page.slug) }

    # child pages of another_wiki_page
    let(:child_page) { FactoryBot.create(:wiki_page, parent: another_wiki_page, wiki: wiki) }
    let!(:child_page_wiki_menu_item) { FactoryBot.create(:wiki_menu_item, wiki: wiki, name: child_page.slug) }
    let(:another_child_page) { FactoryBot.create(:wiki_page, parent: another_wiki_page, wiki: wiki) }
    let!(:another_child_page_wiki_menu_item) { FactoryBot.create(:wiki_menu_item, wiki: wiki, name: another_child_page.slug, parent: top_level_wiki_menu_item) }

    let(:grand_child_page) { FactoryBot.create(:wiki_page, parent: child_page, wiki: wiki) }
    let!(:grand_child_page_wiki_menu_item) { FactoryBot.create(:wiki_menu_item, wiki: wiki, name: grand_child_page.slug) }

    context 'when no parent wiki menu item has been configured yet' do
      context 'and it is a child page' do
        before do get :edit, params: { project_id: project.id, id: child_page.slug } end
        subject { response }

        it 'preselects the wiki menu item of the parent page as parent wiki menu item option' do
          expect(assigns['selected_parent_menu_item_id']).to eq(another_wiki_page_top_level_wiki_menu_item.id)
          # see FIXME in menu_helper.rb
        end
      end

      context 'and it is a grand child page the parent of which is not a main item' do
        before do
          # ensure the parent page of grand_child_page is not a main item
          child_page_wiki_menu_item.tap { |page| page.parent = top_level_wiki_menu_item }.save
          get :edit, params: { project_id: project.id, id: grand_child_page.slug }
        end

        subject { response }

        it 'preselects the wiki menu item of the grand parent page as parent wiki menu item option' do
          expect(assigns['selected_parent_menu_item_id']).to eq(another_wiki_page_top_level_wiki_menu_item.id)
        end
      end
    end

    context 'when a parent wiki menu item has already been configured' do
      before do get :edit, params: { project_id: project.id, id: another_child_page.slug } end
      subject { response }

      it 'preselects the parent wiki menu item that is already assigned' do
        expect(assigns['selected_parent_menu_item_id']).to eq(top_level_wiki_menu_item.id)
      end
    end
  end

  shared_context 'when there is one more wiki page with a child page' do
    let!(:child_page) { FactoryBot.create(:wiki_page, parent: wiki_page, wiki: wiki) }

    let!(:another_wiki_page) { FactoryBot.create(:wiki_page, wiki: wiki) } # second wiki page with two child pages
    let!(:another_child_page) { FactoryBot.create(:wiki_page, parent: another_wiki_page, wiki: wiki) }
  end

  describe '#select_main_menu_item' do
    include_context 'when there is one more wiki page with a child page'

    before do get :select_main_menu_item, params: { project_id: project, id: wiki_page.id } end
    subject { assigns['possible_wiki_pages'] }

    context 'when selecting a new wiki page to replace the current main menu item' do
      it { is_expected.to include wiki_page }
      it { is_expected.to include child_page }
      it { is_expected.to include another_wiki_page }
      it { is_expected.to include another_child_page }
    end
  end

  describe '#replace_main_menu_item' do
    include_context 'when there is one more wiki page with a child page'

    context 'when another wiki page is selected for replacement' do
      let(:selected_page) { child_page }
      let(:new_menu_item) { selected_page.menu_item }

      before do
        post :replace_main_menu_item,
             params: {
               project_id: project,
               id: wiki_page.id,
               wiki_page: { id: selected_page.id }
             }
      end

      it 'destroys the current wiki menu item' do
        expect(wiki_page.menu_item).to be_nil
      end

      it 'creates a new main menu item for the selected wiki page' do
        expect(selected_page.menu_item).to be_present
        expect(selected_page.menu_item.parent).to be_nil
      end

      it 'transfers the menu item options to the selected wiki page' do
        expect(new_menu_item.options).to eq(index_page: true, new_wiki_page: true)
      end
    end

    context 'when its own wiki page is selected for replacement' do
      let!(:wiki_menu_item) { wiki_page.menu_item }

      before do
        post :replace_main_menu_item,
             params: {
               project_id: project,
               id: wiki_page.id,
               wiki_page: { id: wiki_page.id }
             }
      end

      it 'does not destroy the wiki menu item' do
        expect(wiki_menu_item.reload).to be_present
      end
    end
  end
end