require 'spec_helper'
class MyFormBuilder
include Datagrid::FormBuilder
end
class MyTemplate
include ActionView::Helpers::FormHelper
end
describe Datagrid::FormBuilder do
let(:template) { ActionView::Base.new}
let(:view) { ActionView::Helpers::FormBuilder.new(:report, _grid, template, {}, Proc.new {|f| })}
subject { view }
describe ".datagrid_filter" do
it "should work for every filter type" do
Datagrid::Filters::FILTER_TYPES.each do |type, klass|
Datagrid::FormBuilder.instance_methods.map(&:to_sym).should include(klass.form_builder_helper_name)
end
end
subject { view.datagrid_filter(_filter)}
context "with default filter type" do
let(:_grid) {
test_report do
scope {Entry}
filter(:name)
end
}
let(:_filter) { :name }
it { should equal_to_dom(
''
)}
end
context "with integer filter type" do
let(:_filter) { :group_id }
let(:_grid) {
test_report do
scope {Entry}
filter(:group_id, :integer)
end
}
it { should equal_to_dom(
''
)}
end
context "with date filter type" do
let(:_filter) { :created_at }
let(:_grid) {
test_report do
scope {Entry}
filter(:created_at, :date)
end
}
it { should equal_to_dom(
''
)}
end
context "with integer filter type and range option" do
let(:_filter) { :group_id }
let(:_grid) {
test_report(:group_id => _range) do
scope {Entry}
filter(:group_id, :integer, :range => true)
end
}
context "with only left bound" do
let(:_range) { [10, nil]}
it { should equal_to_dom(
'' +
' - ' +
''
)}
it { should be_html_safe }
end
context "with only right bound" do
let(:_range) { [nil, 10]}
it { should equal_to_dom(
'' +
' - ' +
''
)}
it { should be_html_safe }
end
context "with invalid range value" do
let(:_range) { 2..1 }
it { should equal_to_dom(
'' +
' - ' +
''
)}
end
end
context "with date filter type and range option" do
let(:_filter) { :created_at }
let(:_grid) {
test_report(:created_at => _range) do
scope {Entry}
filter(:created_at, :date, :range => true)
end
}
context "with only left bound" do
let(:_range) { ["2012-01-03", nil]}
it { should equal_to_dom(
'' +
' - ' +
''
)}
it { should be_html_safe }
end
context "with only right bound" do
let(:_range) { [nil, "2012-01-03"]}
it { should equal_to_dom(
'' +
' - ' +
''
)}
it { should be_html_safe }
end
context "with invalid range value" do
let(:_range) { Date.parse('2012-01-02')..Date.parse('2012-01-01') }
it { should equal_to_dom(
'' +
' - ' +
''
)}
end
end
context "with enum filter type" do
let(:_filter) { :category }
let(:_grid) {
test_report do
scope {Entry}
filter(:category, :enum, :select => ["first", "second"])
filter(:category_without_include_blank, :enum, :select => ["first", "second"], :include_blank => false)
filter(:category_with_prompt, :enum, :select => ["first", "second"], :prompt => "My Prompt")
end
}
it { should equal_to_dom(
''
)}
context "when first option is selected" do
before(:each) do
_grid.category = "first"
end
it { should equal_to_dom(
''
)}
end
context "with include_blank option set to false" do
let(:_filter) { :category_without_include_blank }
it { should equal_to_dom(
''
)}
end
context "with prompt option" do
let(:_filter) { :category_with_prompt }
it { should equal_to_dom(
''
)}
end
end
context "with eboolean filter type" do
let(:_filter) { :disabled }
let(:_grid) do
test_report do
scope {Entry}
filter(:disabled, :eboolean)
end
end
it { should equal_to_dom(
''
)}
end
context "with string filter" do
let(:_grid) do
test_report do
scope {Entry}
filter(:name, :string)
end
end
let(:_filter) { :name }
it {should equal_to_dom('')}
end
context "with non multiple filter" do
let(:_grid) do
test_report do
scope {Entry}
filter(
:name, :enum,
:include_blank => false,
:multiple => false,
:select => []
)
end
end
let(:_filter) { :name }
it {should equal_to_dom('')}
end
context "with float filter type" do
let(:_grid) {
test_report do
scope {Entry}
filter(:group_id, :float)
end
}
let(:_filter) { :group_id }
it { should equal_to_dom(
''
)}
end
end
describe ".datagrid_label" do
let(:_grid) do
test_report do
scope {Entry}
filter(:name, :string)
end
end
it "should generate label for filter" do
view.datagrid_label(:name).should equal_to_dom(
''
)
end
it "should pass options through to the helper" do
view.datagrid_label(:name, :class => 'foo').should equal_to_dom(
''
)
end
end
end