Sha256: 23c79379abd4ece9a4809658ff14f225c84679f8d90e3e3c59a8c504dbc3c431

Contents?: true

Size: 1.94 KB

Versions: 4

Compression:

Stored size: 1.94 KB

Contents

# frozen_string_literal: true
require 'spec_helper'

feature 'search results map', js: true do
  scenario 'present on a search result page' do
    visit search_catalog_path(q: 'Minnesota')
    expect(page).to have_css '#map'
  end
  scenario 'view is scoped to Minnesota' do
    pending 'Minnesota fixtures have changed.'
    visit root_path
    click_link 'Minnesota, United States'
    expect(page).to have_css '#map'
    bbox = page.find('#map')['data-js-map-render-bbox']

    # Example bbox for Place > Minnesota, United States:
    # "-101.90917968749999,38.75408327579141,-83.27636718749999,53.27835301753182"
    left, bottom, right, top = bbox.split(',')
    expect(left.to_f).to be_within(2).of(-101)
    expect(bottom.to_f).to be_within(3).of(38)
    expect(right.to_f).to be_within(2).of(-83)
    expect(top.to_f).to be_within(2).of(53)
  end
  scenario 'view is scoped to Twin Cities metro area' do
    visit search_catalog_path(q: 'Minneapolis')
    expect(page).to have_css '#map'
    bbox = page.find('#map')['data-js-map-render-bbox']

    # Example bbox for q: Minneapolis
    # "-94.537353515625,44.004669106432225,-92.208251953125,45.87088761346192"
    left, bottom, right, top = bbox.split(',')
    expect(left.to_f).to be_within(1).of(-94)
    expect(bottom.to_f).to be_within(1).of(44)
    expect(right.to_f).to be_within(1).of(-92)
    expect(top.to_f).to be_within(1).of(45)
  end
  scenario 'view is scoped to NYC' do
    visit root_path
    click_link 'New York, New York'
    expect(page).to have_css '#map'
    bbox = page.find('#map')['data-js-map-render-bbox']

    # Example bbox for Place > New York, New York, United States
    # "-74.26895141601562,40.455307212131494,-73.68667602539061,40.95501133048621"
    left, bottom, right, top = bbox.split(',')
    expect(left.to_f).to be_within(2).of(-74)
    expect(bottom.to_f).to be_within(2).of(40)
    expect(right.to_f).to be_within(2).of(-73)
    expect(top.to_f).to be_within(2).of(40)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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