blog_archives_block_test.rb
3.73 KB
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
require File.dirname(__FILE__) + '/../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 'list amount posts by year' do
date = DateTime.parse('2008-01-01')
blog = profile.blog
for i in 1..10 do
post = TextileArticle.create!(:name => "post #{i} test", :profile => profile, :parent => blog)
post.update_attribute(:published_at, date)
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_tag_in_string block.content, :tag => 'li', :content => '2008 (10)'
end
should 'list amount posts by month' do
date = DateTime.parse('2008-01-01')
blog = profile.blog
for i in 1..10 do
post = TextileArticle.create!(:name => "post #{i} test", :profile => profile, :parent => blog)
assert post.update_attribute(:published_at, date)
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_tag_in_string block.content, :tag => 'a', :content => 'January (10)', :attributes => {:href => /^http:\/\/.*\/flatline\/blog-one\?month=01&year=2008$/ }
end
should 'order list of amount posts' do
blog = profile.blog
for i in 1..10 do
post = TextileArticle.create!(:name => "post #{i} test", :profile => profile, :parent => blog)
post.update_attribute(:published_at, DateTime.parse("2008-#{i}-01"))
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_tag_in_string block.content, :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 = TextileArticle.create!(:name => "post #{year}", :profile => profile, :parent => blog, :published_at => Date.new(year, 1, 1))
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_match(/2009.*2008.*2007.*2006.*2005/m, block.content)
end
should 'order months from later to former' do
blog = profile.blog
for month in 1..3
post = TextileArticle.create!(:name => "post #{month}", :profile => profile, :parent => blog, :published_at => Date.new(2009, month, 1))
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_match(/.*March.*February.*January.*/m, block.content)
end
should 'not display any content if has no blog' do
profile.blogs.destroy_all
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_nil block.content
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 'show posts from first blog' do
(blog_one, blog_two) = profile.blogs
profile.articles << Blog.new(:name => 'Blog Two', :profile => profile)
for month in 1..3
TextileArticle.create!(:name => "blog one - post #{month}", :profile => profile, :parent => blog_one)
TextileArticle.create!(:name => "blog two - post #{month}", :profile => profile, :parent => blog_two)
end
block = BlogArchivesBlock.new
block.stubs(:owner).returns(profile)
assert_match(/blog-one/m, block.content)
assert_no_match(/blog-two/m, block.content)
end
end