activerecord-hackery--ransack/spec/ransack/helpers/form_builder_spec.rb

166 lines
5.3 KiB
Ruby
Raw Normal View History

2011-03-31 00:31:39 +00:00
require 'spec_helper'
module Ransack
module Helpers
describe FormBuilder do
router = ActionDispatch::Routing::RouteSet.new
router.draw do
resources :people
resources :notes
get ':controller(/:action(/:id(.:format)))'
2011-03-31 00:31:39 +00:00
end
include router.url_helpers
# FIXME: figure out a cleaner way to get this behavior
before do
@controller = ActionView::TestCase::TestController.new
@controller.instance_variable_set(:@_routes, router)
@controller.class_eval do
include router.url_helpers
end
2011-04-18 15:28:19 +00:00
@controller.view_context_class.class_eval do
include router.url_helpers
end
2011-03-31 00:31:39 +00:00
@s = Person.search
@controller.view_context.search_form_for @s do |f|
@f = f
end
end
# TODO: fix this test after the following Rails 4.2 PR and commit which
# broke it: https://github.com/rails/rails/pull/17203 and
# https://github.com/schneems/rails/commit/03d30ce7
if ::ActiveRecord::VERSION::STRING < '4.2'.freeze
it 'selects previously-entered time values with datetime_select' do
@s.created_at_eq = [2011, 1, 2, 3, 4, 5]
html = @f.datetime_select(
:created_at_eq,
:use_month_numbers => true,
:include_seconds => true
)
%w(2011 1 2 03 04 05).each do |val|
expect(html).to match /<option selected="selected" value="#{val}">#{val}<\/option>/
end
end
end
describe '#label' do
it 'localizes attribute names' do
html = @f.label :name_cont
expect(html).to match /Full Name contains/
end
end
describe '#sort_link' do
it 'sort_link for ransack attribute' do
sort_link = @f.sort_link :name, :controller => 'people'
if ActiveRecord::VERSION::STRING =~ /^3\.[1-2]\./
expect(sort_link).to match /people\?q%5Bs%5D=name\+asc/
else
expect(sort_link).to match /people\?q(%5B|\[)s(%5D|\])=name\+asc/
end
expect(sort_link).to match /sort_link/
expect(sort_link).to match /Full Name<\/a>/
end
it 'sort_link for common attribute' do
sort_link = @f.sort_link :id, :controller => 'people'
expect(sort_link).to match /id<\/a>/
end
end
describe '#submit' do
it 'localizes :search when no default value given' do
html = @f.submit
expect(html).to match /"Search"/
end
end
describe '#attribute_select' do
it 'returns ransackable attributes' do
html = @f.attribute_select
expect(html.split(/\n/).size).
to eq(Person.ransackable_attributes.size + 1)
Person.ransackable_attributes.each do |attribute|
expect(html).to match /<option value="#{attribute}">/
end
end
it 'returns ransackable attributes for associations with :associations' do
2013-08-04 13:13:41 +00:00
attributes = Person.ransackable_attributes + Article.
ransackable_attributes.map { |a| "articles_#{a}" }
html = @f.attribute_select(:associations => ['articles'])
expect(html.split(/\n/).size).to eq(attributes.size)
attributes.each do |attribute|
expect(html).to match /<option value="#{attribute}">/
end
2011-03-31 00:31:39 +00:00
end
it 'returns option groups for base and associations with :associations' do
html = @f.attribute_select(:associations => ['articles'])
[Person, Article].each do |model|
expect(html).to match /<optgroup label="#{model}">/
end
end
2011-03-31 00:31:39 +00:00
end
describe '#predicate_select' do
it 'returns predicates with predicate_select' do
html = @f.predicate_select
Predicate.names.each do |key|
expect(html).to match /<option value="#{key}">/
end
end
it 'filters predicates with single-value :only' do
html = @f.predicate_select :only => 'eq'
2013-08-04 13:13:41 +00:00
Predicate.names.reject { |k| k =~ /^eq/ }.each do |key|
expect(html).not_to match /<option value="#{key}">/
end
end
it 'filters predicates with multi-value :only' do
2013-08-04 13:13:41 +00:00
html = @f.predicate_select only: [:eq, :lt]
Predicate.names.reject { |k| k =~ /^(eq|lt)/ }.each do |key|
expect(html).not_to match /<option value="#{key}">/
end
end
2013-08-04 13:13:41 +00:00
it 'excludes compounds when compounds: false' do
html = @f.predicate_select :compounds => false
2013-08-04 13:13:41 +00:00
Predicate.names.select { |k| k =~ /_(any|all)$/ }.each do |key|
expect(html).not_to match /<option value="#{key}">/
end
end
end
context 'fields used in polymorphic relations as search attributes in form' do
before do
@controller.view_context.search_form_for Note.search do |f|
@f = f
end
end
it 'accepts poly_id field' do
html = @f.text_field(:notable_id_eq)
expect(html).to match /id=\"q_notable_id_eq\"/
end
it 'accepts poly_type field' do
html = @f.text_field(:notable_type_eq)
expect(html).to match /id=\"q_notable_type_eq\"/
end
end
2011-03-31 00:31:39 +00:00
end
end
end