Sha256: 14c43e356b44853ec559572f2ea40336555ecf79c6dbd3fbbfeef2355d1e59e1

Contents?: true

Size: 1.56 KB

Versions: 4

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true
require 'spec_helper'

feature 'Home page', js: true do # use js: true for tests which require js, but it slows things down
  before do
    visit root_path
  end
  scenario 'navbar' do
    expect(page).to have_css '#bookmarks_nav'
    expect(page).to have_css 'a', text: 'History'
  end
  scenario 'search bar' do
    expect(page).not_to have_css '#search-navbar'
    within '.jumbotron' do
      expect(page).to have_css 'h2', text: 'Explore and discover...'
      expect(page).to have_css 'h3', text: 'Find the maps and data you need'
      expect(page).to have_css 'form.search-query-form'
    end
  end
  scenario 'find by category' do
    expect(page).to have_css '.category-block', count: 4
    expect(page).to have_css '.home-facet-link', count: 36
    expect(page).to have_css 'a.more_facets_link', count: 4
    click_link 'Topography'
    expect(page).to have_css '.filter-name', text: 'Subject'
    expect(page).to have_css '.filter-value', text: 'Topography'
  end
  scenario 'map should be visible' do
    within '#main-container' do
      expect(page).to have_css('#map')
      expect(page).to have_css('img.leaflet-tile', minimum: 3)
    end
  end
  scenario 'clicking map search should create a spatial search' do
    within '#map' do
      find('.search-control a').click
      expect(page.current_url).to match(/bbox=/)
    end
    expect(page).to have_css '#documents'
  end
  scenario 'can search by placename' do
    click_link 'New York, New York'
    results = page.all(:css, 'article.document')
    expect(results.count).to equal(4)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
geoblacklight-4.0.0.pre.alpha.3 spec/features/home_page_spec.rb
geoblacklight-4.0.0.pre.alpha.2 spec/features/home_page_spec.rb
geoblacklight-4.0.0.pre.alpha.1 spec/features/home_page_spec.rb
geoblacklight-4.0.0.pre.alpha spec/features/home_page_spec.rb