spec/unit/tables/table_module_spec.rb in ProMotion-0.7.3 vs spec/unit/tables/table_module_spec.rb in ProMotion-0.7.4

- old
+ new

@@ -1,11 +1,11 @@ describe "PM::Table module" do - + def cell_factory(args={}) { title: "Basic", action: :basic_cell_tapped, arguments: { id: 1 } }.merge!(args) end - + def custom_cell cell_factory({ title: "Crazy Full Featured Cell", subtitle: "This is way too huge..see note", arguments: { data: [ "lots", "of", "data" ] }, @@ -20,22 +20,21 @@ cell_class_attributes: { # any Obj-C attributes to set on the cell backgroundColor: UIColor.whiteColor }, accessory: :switch, # currently only :switch is supported - accessory_view: @some_accessory_view, accessory_type: UITableViewCellAccessoryCheckmark, accessory_checked: true, # whether it's "checked" or not image: { image: UIImage.imageNamed("something"), radius: 15 }, remote_image: { # remote image, requires SDWebImage CocoaPod url: "http://placekitten.com/200/300", placeholder: "some-local-image", size: 50, radius: 15 }, subviews: [ @some_view, @some_other_view ] # arbitrary views added to the cell }) end - + before do @subject = TestTableScreen.new @subject.mock! :table_data do [{ title: "Table cell group 1", cells: [ ] @@ -45,64 +44,64 @@ title: "Table cell group 3", cells: [ cell_factory(title: "3-1"), cell_factory(title: "3-2") ] },{ title: "Table cell group 4", cells: [ custom_cell, cell_factory(title: "4-2"), cell_factory(title: "4-3"), cell_factory(title: "4-4") ] }] end - + @subject.on_load - + @ip = NSIndexPath.indexPathForRow(1, inSection: 2) # Cell 3-2 @custom_ip = NSIndexPath.indexPathForRow(0, inSection: 3) # Cell "Crazy Full Featured Cell" - + @subject.update_table_data end - + it "should have the right number of sections" do @subject.numberOfSectionsInTableView(@subject.table_view).should == 4 end - + it "should set the section titles" do @subject.tableView(@subject.table_view, titleForHeaderInSection:0).should == "Table cell group 1" @subject.tableView(@subject.table_view, titleForHeaderInSection:1).should == "Table cell group 2" @subject.tableView(@subject.table_view, titleForHeaderInSection:2).should == "Table cell group 3" @subject.tableView(@subject.table_view, titleForHeaderInSection:3).should == "Table cell group 4" end - + it "should create the right number of cells" do @subject.tableView(@subject.table_view, numberOfRowsInSection:0).should == 0 @subject.tableView(@subject.table_view, numberOfRowsInSection:1).should == 1 @subject.tableView(@subject.table_view, numberOfRowsInSection:2).should == 2 @subject.tableView(@subject.table_view, numberOfRowsInSection:3).should == 4 end - + it "should create the jumplist" do @subject.mock! :table_data_index, do Array("A".."Z") end - + @subject.sectionIndexTitlesForTableView(@subject.table_view).should == Array("A".."Z") end - + it "should return the proper cell" do cell = @subject.tableView(@subject.table_view, cellForRowAtIndexPath: @ip) cell.should.be.kind_of(UITableViewCell) cell.textLabel.text.should == "3-2" end - + it "should return the table's cell height if none is given" do @subject.tableView(@subject.table_view, heightForRowAtIndexPath:@ip).should == 44.0 # Built-in default end - + it "should allow setting a custom cell height" do @subject.tableView(@subject.table_view, heightForRowAtIndexPath:@custom_ip).should.be > 0.0 @subject.tableView(@subject.table_view, heightForRowAtIndexPath:@custom_ip).should == custom_cell[:height].to_f end - + it "should trigger the right action on select and pass in the right arguments" do @subject.mock! :tapped_cell_1 do |args| args[:data].should == [ "lots", "of", "data" ] end - + @subject.tableView(@subject.table_view, didSelectRowAtIndexPath:@custom_ip) end - + end