BigW Consortium Gitlab

groups_list_spec.rb 2.5 KB
Newer Older
1 2
require 'spec_helper'

3
describe 'Explore Groups page', :js, :feature do
4 5 6 7
  let!(:user) { create :user }
  let!(:group) { create(:group) }
  let!(:public_group) { create(:group, :public) }
  let!(:private_group) { create(:group, :private) }
8
  let!(:empty_project) { create(:empty_project, group: public_group) }
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

  before do
    group.add_owner(user)

    login_as(user)

    visit explore_groups_path
  end

  it 'shows groups user is member of' do
    expect(page).to have_content(group.full_name)
    expect(page).to have_content(public_group.full_name)
    expect(page).not_to have_content(private_group.full_name)
  end

  it 'filters groups' do
    fill_in 'filter_groups', with: group.name
    wait_for_ajax

    expect(page).to have_content(group.full_name)
    expect(page).not_to have_content(public_group.full_name)
    expect(page).not_to have_content(private_group.full_name)
  end
32 33 34 35 36 37 38 39 40 41 42 43 44

  it 'resets search when user cleans the input' do
    fill_in 'filter_groups', with: group.name
    wait_for_ajax

    fill_in 'filter_groups', with: ""
    wait_for_ajax

    expect(page).to have_content(group.full_name)
    expect(page).to have_content(public_group.full_name)
    expect(page).not_to have_content(private_group.full_name)
    expect(page.all('.js-groups-list-holder .content-list li').length).to eq 2
  end
45 46 47 48

  it 'shows non-archived projects count' do
    # Initially project is not archived
    expect(find('.js-groups-list-holder .content-list li:first-child .stats span:first-child')).to have_text("1")
49

50 51 52 53 54 55
    # Archive project
    empty_project.archive!
    visit explore_groups_path

    # Check project count
    expect(find('.js-groups-list-holder .content-list li:first-child .stats span:first-child')).to have_text("0")
56

57 58 59 60 61
    # Unarchive project
    empty_project.unarchive!
    visit explore_groups_path

    # Check project count
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    expect(find('.js-groups-list-holder .content-list li:first-child .stats span:first-child')).to have_text("1")
  end

  describe 'landing component' do
    it 'should show a landing component' do
      expect(page).to have_content('Below you will find all the groups that are public.')
    end

    it 'should be dismissable' do
      find('.dismiss-button').click

      expect(page).not_to have_content('Below you will find all the groups that are public.')
    end

    it 'should persistently not show once dismissed' do
      find('.dismiss-button').click

      visit explore_groups_path

      expect(page).not_to have_content('Below you will find all the groups that are public.')
    end
83
  end
84
end