Skip to content
Snippets Groups Projects
boards_spec.rb 18.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • require 'rails_helper'
    
    describe 'Issue Boards', feature: true, js: true do
    
      let(:project)   { create(:project) }
      let(:user)      { create(:user) }
    
    Phil Hughes's avatar
    Phil Hughes committed
      let!(:user2)    { create(:user) }
    
    Phil Hughes's avatar
    Phil Hughes committed
      let!(:board)    { Boards::CreateService.new(project, user).execute }
    
    
      before do
        project.team << [user, :master]
    
    Phil Hughes's avatar
    Phil Hughes committed
        project.team << [user2, :master]
    
        login_as(user)
      end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
      context 'no lists' do
        before do
          visit namespace_project_board_path(project.namespace, project)
    
    Phil Hughes's avatar
    Phil Hughes committed
          wait_for_vue_resource
          expect(page).to have_selector('.board', count: 3)
    
    Phil Hughes's avatar
    Phil Hughes committed
        end
    
    Phil Hughes's avatar
    Phil Hughes committed
        it 'shows blank state' do
          expect(page).to have_content('Welcome to your Issue Board!')
    
        it 'hides the blank state when clicking nevermind button' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board-blank-state')) do
    
            click_button("Nevermind, I'll use my own")
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
          expect(page).to have_selector('.board', count: 2)
    
    Phil Hughes's avatar
    Phil Hughes committed
        it 'creates default lists' do
          lists = ['Backlog', 'Development', 'Testing', 'Production', 'Ready', 'Done']
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board-blank-state')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
            click_button('Add default lists')
          end
    
    Phil Hughes's avatar
    Phil Hughes committed
          wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          expect(page).to have_selector('.board', count: 6)
    
          page.all('.board').each_with_index do |list, i|
            expect(list.find('.board-title')).to have_content(lists[i])
          end
        end
    
    Phil Hughes's avatar
    Phil Hughes committed
      context 'with lists' do
    
        let(:milestone)           { create(:milestone, project: project) }
    
    Phil Hughes's avatar
    Phil Hughes committed
    
    
    Phil Hughes's avatar
    Phil Hughes committed
        let(:planning)    { create(:label, project: project, name: 'Planning') }
        let(:development) { create(:label, project: project, name: 'Development') }
        let(:testing)     { create(:label, project: project, name: 'Testing') }
    
    Phil Hughes's avatar
    Phil Hughes committed
        let(:bug)         { create(:label, project: project, name: 'Bug') }
    
        let!(:backlog)    { create(:label, project: project, name: 'Backlog') }
        let!(:done)       { create(:label, project: project, name: 'Done') }
    
    Phil Hughes's avatar
    Phil Hughes committed
    
        let!(:list1) { create(:list, board: project.board, label: planning, position: 0) }
        let!(:list2) { create(:list, board: project.board, label: development, position: 1) }
    
    
        let!(:confidential_issue) { create(:issue, :confidential, project: project, author: user) }
        let!(:issue1) { create(:issue, project: project, assignee: user) }
        let!(:issue2) { create(:issue, project: project, author: user2) }
        let!(:issue3) { create(:issue, project: project) }
        let!(:issue4) { create(:issue, project: project) }
    
    Phil Hughes's avatar
    Phil Hughes committed
        let!(:issue5) { create(:labeled_issue, project: project, labels: [planning], milestone: milestone) }
    
        let!(:issue6) { create(:labeled_issue, project: project, labels: [planning, development]) }
        let!(:issue7) { create(:labeled_issue, project: project, labels: [development]) }
    
        let!(:issue8) { create(:closed_issue, project: project) }
    
        let!(:issue9) { create(:labeled_issue, project: project, labels: [testing, bug]) }
    
    Phil Hughes's avatar
    Phil Hughes committed
    
        before do
          visit namespace_project_board_path(project.namespace, project)
    
    
          wait_for_vue_resource
    
    Phil Hughes's avatar
    Phil Hughes committed
    
          expect(page).to have_selector('.board', count: 4)
          has_issues
    
    Phil Hughes's avatar
    Phil Hughes committed
        end
    
        it 'shows lists' do
          expect(page).to have_selector('.board', count: 4)
        end
    
        it 'shows issues in lists' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board:nth-child(2)')) do
    
            expect(page.find('.board-header')).to have_content('2')
            expect(page).to have_selector('.card', count: 2)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board:nth-child(3)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(page.find('.board-header')).to have_content('2')
            expect(page).to have_selector('.card', count: 2)
          end
        end
    
        it 'shows confidential issues with icon' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board', match: :first)) do
    
            expect(page).to have_selector('.confidential-icon', count: 1)
          end
        end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
        it 'allows user to delete board' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
            find('.board-delete').click
    
    Phil Hughes's avatar
    Phil Hughes committed
    
          wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          expect(page).to have_selector('.board', count: 3)
    
        it 'removes checkmark in new list dropdown after deleting' do
          click_button 'Create new list'
          wait_for_ajax
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board:nth-child(2)')) do
    
            find('.board-delete').click
          end
    
    Phil Hughes's avatar
    Phil Hughes committed
          wait_for_vue_resource
    
          expect(page).to have_selector('.board', count: 3)
    
          expect(find(".js-board-list-#{planning.id}", visible: false)).not_to have_css('.is-active')
        end
    
    
        it 'infinite scrolls list' do
          50.times do
    
            create(:issue, project: project)
    
          end
    
          visit namespace_project_board_path(project.namespace, project)
    
          wait_for_vue_resource
    
    Phil Hughes's avatar
    Phil Hughes committed
          page.within(find('.board', match: :first)) do
    
            expect(page.find('.board-header')).to have_content('20')
            expect(page).to have_selector('.card', count: 20)
    
            evaluate_script("document.querySelectorAll('.board .board-list')[0].scrollTop = document.querySelectorAll('.board .board-list')[0].scrollHeight")
    
            expect(page.find('.board-header')).to have_content('40')
            expect(page).to have_selector('.card', count: 40)
          end
        end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
        context 'backlog' do
          it 'shows issues in backlog with no labels' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('6')
              expect(page).to have_selector('.card', count: 6)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
          end
    
          it 'is searchable' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              find('.form-control').set issue1.title
    
              expect(page).to have_selector('.card', count: 1)
            end
          end
    
          it 'clears search' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              find('.form-control').set issue1.title
    
              expect(page).to have_selector('.card', count: 1)
    
              find('.board-search-clear-btn').click
    
    
              expect(page).to have_selector('.card', count: 6)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
          end
    
          it 'moves issue from backlog into list' do
            drag_to(list_to_index: 1)
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('5')
              expect(page).to have_selector('.card', count: 5)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
              expect(page.find('.board-header')).to have_content('3')
              expect(page).to have_selector('.card', count: 3)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
    
    Phil Hughes's avatar
    Phil Hughes committed
        context 'done' do
          it 'shows list of done issues' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(4)')).to have_selector('.card', count: 1)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
          it 'moves issue to done' do
            drag_to(list_from_index: 0, list_to_index: 3)
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(4)')).to have_selector('.card', count: 2)
            expect(find('.board:nth-child(4)')).to have_content(issue9.title)
            expect(find('.board:nth-child(4)')).not_to have_content(planning.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
          it 'removes all of the same issue to done' do
            drag_to(list_from_index: 1, list_to_index: 3)
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(2)')).to have_selector('.card', count: 1)
            expect(find('.board:nth-child(3)')).to have_selector('.card', count: 1)
            expect(find('.board:nth-child(4)')).to have_content(issue6.title)
            expect(find('.board:nth-child(4)')).not_to have_content(planning.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
        end
    
        context 'lists' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'changes position of list' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            drag_to(list_from_index: 1, list_to_index: 2, selector: '.board-header')
    
    Phil Hughes's avatar
    Phil Hughes committed
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(2)')).to have_content(development.title)
            expect(find('.board:nth-child(2)')).to have_content(planning.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'issue moves between lists' do
    
            drag_to(list_from_index: 1, card_index: 1, list_to_index: 2)
    
    Phil Hughes's avatar
    Phil Hughes committed
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(2)')).to have_selector('.card', count: 1)
            expect(find('.board:nth-child(3)')).to have_selector('.card', count: 3)
            expect(find('.board:nth-child(3)')).to have_content(issue6.title)
            expect(find('.board:nth-child(3)').all('.card').last).not_to have_content(development.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'issue moves between lists' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            drag_to(list_from_index: 2, list_to_index: 1)
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(2)')).to have_selector('.card', count: 3)
            expect(find('.board:nth-child(3)')).to have_selector('.card', count: 1)
            expect(find('.board:nth-child(2)')).to have_content(issue7.title)
            expect(find('.board:nth-child(2)').all('.card').first).not_to have_content(planning.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'issue moves from done' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            drag_to(list_from_index: 3, list_to_index: 1)
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            expect(find('.board:nth-child(2)')).to have_selector('.card', count: 3)
            expect(find('.board:nth-child(2)')).to have_content(issue8.title)
    
    Phil Hughes's avatar
    Phil Hughes committed
          end
    
          context 'issue card' do
            it 'shows assignee' do
    
    Phil Hughes's avatar
    Phil Hughes committed
              page.within(find('.board', match: :first)) do
    
                expect(page).to have_selector('.avatar', count: 1)
    
    Phil Hughes's avatar
    Phil Hughes committed
              end
            end
          end
    
          context 'new list' do
            it 'shows all labels in new list dropdown' do
              click_button 'Create new list'
    
              page.within('.dropdown-menu-issues-board-new') do
                expect(page).to have_content(planning.title)
                expect(page).to have_content(development.title)
                expect(page).to have_content(testing.title)
              end
            end
    
            it 'creates new list for label' do
              click_button 'Create new list'
    
              page.within('.dropdown-menu-issues-board-new') do
                click_link testing.title
              end
    
              expect(page).to have_selector('.board', count: 5)
            end
    
    
            it 'creates new list for Backlog label' do
              click_button 'Create new list'
    
              page.within('.dropdown-menu-issues-board-new') do
                click_link backlog.title
              end
    
              expect(page).to have_selector('.board', count: 5)
            end
    
            it 'creates new list for Done label' do
              click_button 'Create new list'
    
              page.within('.dropdown-menu-issues-board-new') do
                click_link done.title
              end
    
              expect(page).to have_selector('.board', count: 5)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            it 'moves issues from backlog into new list' do
    
    Phil Hughes's avatar
    Phil Hughes committed
              page.within(find('.board', match: :first)) do
    
                expect(page.find('.board-header')).to have_content('6')
                expect(page).to have_selector('.card', count: 6)
    
    Phil Hughes's avatar
    Phil Hughes committed
              end
    
              click_button 'Create new list'
    
              page.within('.dropdown-menu-issues-board-new') do
                click_link testing.title
              end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
              page.within(find('.board', match: :first)) do
    
                expect(page.find('.board-header')).to have_content('5')
                expect(page).to have_selector('.card', count: 5)
    
    Phil Hughes's avatar
    Phil Hughes committed
              end
            end
          end
        end
    
        context 'filtering' do
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'filters by author' do
            page.within '.issues-filters' do
              click_button('Author')
    
              page.within '.dropdown-menu-author' do
                click_link(user2.name)
              end
    
              expect(find('.js-author-search')).to have_content(user2.name)
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
          end
    
          it 'filters by assignee' do
            page.within '.issues-filters' do
              click_button('Assignee')
    
              page.within '.dropdown-menu-assignee' do
                click_link(user.name)
              end
    
              expect(find('.js-assignee-search')).to have_content(user.name)
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
          end
    
          it 'filters by milestone' do
            page.within '.issues-filters' do
    
              click_button('Milestone')
    
    Phil Hughes's avatar
    Phil Hughes committed
    
              page.within '.milestone-filter' do
                click_link(milestone.title)
              end
    
              expect(find('.js-milestone-select')).to have_content(milestone.title)
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
            end
          end
    
          it 'filters by label' do
            page.within '.issues-filters' do
              click_button('Label')
    
              page.within '.dropdown-menu-labels' do
                click_link(testing.title)
                find('.dropdown-menu-close').click
              end
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
          end
    
    
          it 'infinite scrolls list with label filter' do
            50.times do
    
              create(:labeled_issue, project: project, labels: [testing])
    
            end
    
            page.within '.issues-filters' do
              click_button('Label')
    
              page.within '.dropdown-menu-labels' do
                click_link(testing.title)
                find('.dropdown-menu-close').click
              end
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('20')
              expect(page).to have_selector('.card', count: 20)
    
              evaluate_script("document.querySelectorAll('.board .board-list')[0].scrollTop = document.querySelectorAll('.board .board-list')[0].scrollHeight")
    
              expect(page.find('.board-header')).to have_content('40')
              expect(page).to have_selector('.card', count: 40)
            end
          end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
          it 'filters by multiple labels' do
            page.within '.issues-filters' do
              click_button('Label')
    
              page.within '.dropdown-menu-labels' do
                click_link(testing.title)
                click_link(bug.title)
                find('.dropdown-menu-close').click
              end
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
          end
    
          it 'filters by no label' do
            page.within '.issues-filters' do
              click_button('Label')
    
    Phil Hughes's avatar
    Phil Hughes committed
    
    
    Phil Hughes's avatar
    Phil Hughes committed
              page.within '.dropdown-menu-labels' do
                click_link("No Label")
                find('.dropdown-menu-close').click
              end
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('5')
              expect(page).to have_selector('.card', count: 5)
    
    Phil Hughes's avatar
    Phil Hughes committed
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
    Phil Hughes's avatar
    Phil Hughes committed
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
          end
    
    
          it 'filters by clicking label button on issue' do
            page.within '.issues-filters' do
              click_button('Label')
    
              page.within '.dropdown-menu-labels' do
                click_link(bug.title)
                find('.dropdown-menu-close').click
              end
            end
    
    
            wait_for_vue_resource
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              expect(page.find('.board-header')).to have_content('1')
              expect(page).to have_selector('.card', count: 1)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board:nth-child(2)')) do
    
              expect(page.find('.board-header')).to have_content('0')
              expect(page).to have_selector('.card', count: 0)
            end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
    
              click_button(bug.title)
    
              expect(page).to have_selector('.card', count: 6)
    
            end
    
            page.within('.labels-filter') do
              expect(find('.dropdown-toggle-text')).not_to have_content(bug.title)
            end
          end
    
          it 'removes label filter by clicking label button on issue' do
    
    Phil Hughes's avatar
    Phil Hughes committed
            page.within(find('.board', match: :first)) do
              page.within(find('.card', match: :first)) do
    
                click_button(bug.title)
              end
    
              expect(page).to have_selector('.card', count: 1)
            end
    
    
            wait_for_vue_resource
    
    
            page.within('.labels-filter') do
              expect(find('.dropdown-toggle-text')).to have_content(bug.title)
            end
          end
    
    Phil Hughes's avatar
    Phil Hughes committed
      def has_issues
        expect(find('.board:nth-child(1)')).to have_selector('.card')
        expect(find('.board:nth-child(2)')).to have_selector('.card')
        expect(find('.board:nth-child(3)')).to have_selector('.card')
        expect(find('.board:nth-child(4)')).to have_selector('.card')
      end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
      def drag_to(list_from_index: 0, card_index: 0, to_index: 0, list_to_index: 0, selector: '.board-list')
        evaluate_script("simulateDrag({scrollable: document.getElementById('board-app'), from: {el: $('#{selector}').eq(#{list_from_index}).get(0), index: #{card_index}}, to: {el: $('.board-list').eq(#{list_to_index}).get(0), index: #{to_index}}});")
    
    
        Timeout.timeout(Capybara.default_max_wait_time) do
          loop until page.evaluate_script('window.SIMULATE_DRAG_ACTIVE').zero?
        end
    
    
      def wait_for_vue_resource
        Timeout.timeout(Capybara.default_max_wait_time) do
          loop until page.evaluate_script('Vue.activeResources').zero?
        end
    
    Phil Hughes's avatar
    Phil Hughes committed
        expect(find('.boards-list')).not_to have_selector('.fa-spinner')