ref: master
test/unit/blog_archives_block_test.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
require_relative "../test_helper" class BlogArchivesBlockTest < ActiveSupport::TestCase def setup @profile = create_user('flatline').person @profile.articles << Blog.new(:name => 'Blog One', :profile => @profile) end attr_reader :profile should 'default describe' do assert_not_equal Block.description, BlogArchivesBlock.description end should 'is editable' do l = BlogArchivesBlock.new assert l.editable? end should 'has field to configure blog' do b = BlogArchivesBlock.new assert b.respond_to?(:blog_id) assert b.respond_to?(:blog_id=) end should 'not try to load a removed blog' do block = fast_create(BlogArchivesBlock) block.blog_id = profile.blog.id block.save! block.stubs(:owner).returns(profile) profile.blog.destroy assert_nothing_raised do assert_nil block.blog end end should 'load next blog if configured blog was removed' do other_blog = fast_create(Blog, :profile_id => profile.id) block = fast_create(BlogArchivesBlock) block.blog_id = profile.blog.id block.save! block.stubs(:owner).returns(profile) profile.blog.destroy assert_nothing_raised do assert_equal other_blog, block.blog end end #FIXME Performance issues with display_to. Must convert it to a scope. # Checkout this page for further information: http://noosfero.org/Development/ActionItem2705 # # should 'not count articles if the user can\'t see them' do # person = create_user('testuser').person # blog = fast_create(Blog, :profile_id => profile.id, :path => 'blog_path') # block = fast_create(BlogArchivesBlock) # # feed = mock() # feed.stubs(:url).returns(blog.url) # blog.stubs(:feed).returns(feed) # block.stubs(:blog).returns(blog) # block.stubs(:owner).returns(profile) # # public_post = fast_create(TextArticle, :profile_id => profile.id, :parent_id => blog.id, :published => true, :published_at => Time.mktime(2012, 'jan')) # private_post = fast_create(TextArticle, :profile_id => profile.id, :parent_id => blog.id, :published => false, :published_at => Time.mktime(2012, 'jan')) # # assert_match /January \(1\)/, block.content({:person => person}) # assert_match /January \(1\)/, block.content() # assert_match /January \(2\)/, block.content({:person => profile}) # end end require 'boxes_helper' class BlogArchivesBlockViewTest < ActionView::TestCase include BoxesHelper def setup @profile = create_user('flatline').person @profile.articles << Blog.new(:name => 'Blog One', :profile => @profile) end attr_reader :profile should 'list amount posts by year' do date = DateTime.parse('2008-01-10') blog = profile.blog for i in 1..10 do post = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id) post.update_attribute(:published_at, date) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).returns("") assert_tag_in_string render_block_content(block), :tag => 'li', :content => '2008 (10)' end should 'list amount posts by month' do date = DateTime.parse('2008-01-10') blog = profile.blog for i in 1..10 do post = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id) assert post.update_attribute(:published_at, date) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).with(1).returns("January") ActionView::Base.any_instance.stubs(:month_name).with(2).returns("February") ActionView::Base.any_instance.stubs(:month_name).with(3).returns("March") ActionView::Base.any_instance.stubs(:month_name).with(4).returns("April") ActionView::Base.any_instance.stubs(:month_name).with(5).returns("May") ActionView::Base.any_instance.stubs(:month_name).with(6).returns("June") ActionView::Base.any_instance.stubs(:month_name).with(7).returns("July") ActionView::Base.any_instance.stubs(:month_name).with(8).returns("August") ActionView::Base.any_instance.stubs(:month_name).with(9).returns("September") ActionView::Base.any_instance.stubs(:month_name).with(10).returns("Octuber") assert_tag_in_string render_block_content(block), :tag => 'a', :content => 'January (10)', :attributes => {:href => /^http:\/\/.*\/flatline\/blog-one\?month=1&year=2008$/ } end should 'order list of amount posts' do blog = profile.blog for i in 1..10 do post = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id) post.update_attribute(:published_at, DateTime.parse("2008-#{i}-01")) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).with(1).returns("January") ActionView::Base.any_instance.stubs(:month_name).with(2).returns("February") ActionView::Base.any_instance.stubs(:month_name).with(3).returns("March") ActionView::Base.any_instance.stubs(:month_name).with(4).returns("April") ActionView::Base.any_instance.stubs(:month_name).with(5).returns("May") ActionView::Base.any_instance.stubs(:month_name).with(6).returns("June") ActionView::Base.any_instance.stubs(:month_name).with(7).returns("July") ActionView::Base.any_instance.stubs(:month_name).with(8).returns("August") ActionView::Base.any_instance.stubs(:month_name).with(9).returns("September") ActionView::Base.any_instance.stubs(:month_name).with(10).returns("Octuber") assert_tag_in_string render_block_content(block), :tag => 'li', :content => 'January (1)', :sibling => {:tag => 'li', :content => 'February (1)', :sibling => {:tag => 'li', :content => 'March (1)', :sibling => {:tag => 'li', :content => 'April (1)', :sibling => {:tag => 'li', :content => 'May (1)'}}}} end should 'order years' do blog = profile.blog for year in 2005..2009 post = create(TextArticle, :name => "post #{year}", :profile => profile, :parent => blog, :published_at => Date.new(year, 1, 1)) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).returns("") assert_match(/2009.*2008.*2007.*2006.*2005/m, render_block_content(block)) end should 'order months from later to former' do blog = profile.blog for month in 1..3 post = create(TextArticle, :name => "post #{month}", :profile => profile, :parent => blog, :published_at => Date.new(2009, month, 1)) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).with(1).returns("January") ActionView::Base.any_instance.stubs(:month_name).with(2).returns("February") ActionView::Base.any_instance.stubs(:month_name).with(3).returns("March") assert_match(/.*March.*February.*January.*/m, render_block_content(block)) end should 'not display any content if has no blog' do profile.blogs.destroy_all block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).returns("") assert_empty render_block_content(block) end should 'show posts from first blog' do profile.articles << Blog.new(:name => 'Blog Two', :profile => profile) (blog_one, blog_two) = profile.blogs for month in 1..3 create(TextArticle, :name => "blog one - post #{month}", :profile_id => profile.id, :parent_id => blog_one.id) create(TextArticle, :name => "blog two - post #{month}", :profile_id => profile.id, :parent_id => blog_two.id) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).returns("") assert_match(/blog-one/m, render_block_content(block)) assert_no_match(/blog-two/m, render_block_content(block)) end should 'list amount native posts by year' do date = DateTime.parse('2008-01-10') blog = profile.blog 2.times do |i| post = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id, :language => 'en') post.update_attribute(:published_at, date) translation = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id, :language => 'en', :translation_of_id => post.id) translation.update_attribute(:published_at, date) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).returns("") assert_tag_in_string render_block_content(block), :tag => 'li', :content => '2008 (2)' end should 'list amount native posts by month' do date = DateTime.parse('2008-01-10') blog = profile.blog 2.times do |i| post = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id, :language => 'en') post.update_attribute(:published_at, date) translation = fast_create(TextArticle, :name => "post #{i} test", :profile_id => profile.id, :parent_id => blog.id, :language => 'en', :translation_of_id => post.id) translation.update_attribute(:published_at, date) end block = BlogArchivesBlock.new block.stubs(:owner).returns(profile) ActionView::Base.any_instance.stubs(:block_title).returns("") ActionView::Base.any_instance.stubs(:month_name).with(1).returns("January") assert_tag_in_string render_block_content(block), :tag => 'a', :content => 'January (2)', :attributes => {:href => /^http:\/\/.*\/flatline\/blog-one\?month=1&year=2008$/ } end end |