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
|
require "spec_helper"
module Refinery
describe "Blog::Posts", type: :feature do
refinery_login_with :refinery_user
context "when has blog posts" do
let!(:blog_post) do
Globalize.with_locale(:en) { FactoryGirl.create(:blog_post, :title => "Refinery CMS blog post") }
end
it "should display blog post" do
visit refinery.blog_post_path(blog_post)
expect(page).to have_content(blog_post.title)
end
describe "visit blog" do
before do
FactoryGirl.create(:page, :link_url => "/")
FactoryGirl.create(:page, :link_url => "/blog", :title => "Blog")
end
it "shows blog link in menu" do
visit "/"
within "#menu" do
expect(page).to have_content("Blog")
expect(page).to have_selector("a[href='/blog']")
end
end
it "shows blog posts" do
visit refinery.blog_root_path
expect(page).to have_content blog_post.title
end
end
end
describe "list tagged posts" do
context "when has tagged blog posts" do
before do
@tag_name = "chicago"
@post = FactoryGirl.create(:blog_post,
:title => "I Love my city",
:tag_list => @tag_name)
@tag = ::Refinery::Blog::Post.tag_counts_on(:tags).first
end
it "should have one tagged post" do
visit refinery.blog_tagged_posts_path(@tag.id, @tag_name.parameterize)
expect(page).to have_content(@tag_name)
expect(page).to have_content(@post.title)
end
end
end
describe "#show" do
context "when has no comments" do
let(:blog_post) { FactoryGirl.create(:blog_post) }
it "should display the blog post" do
visit refinery.blog_post_path(blog_post)
expect(page).to have_content(blog_post.title)
expect(page).to have_content(blog_post.body)
end
end
context "when has approved comments" do
let(:approved_comment) { FactoryGirl.create(:approved_comment) }
it "should display the comments" do
visit refinery.blog_post_path(approved_comment.post)
expect(page).to have_content(approved_comment.body)
expect(page).to have_content("Posted by #{approved_comment.name}")
end
end
context "when has rejected comments" do
let(:rejected_comment) { FactoryGirl.create(:rejected_comment) }
it "should not display the comments" do
visit refinery.blog_post_path(rejected_comment.post)
expect(page).not_to have_content(rejected_comment.body)
end
end
context "when has new comments" do
let(:blog_comment) { FactoryGirl.create(:blog_comment) }
it "should not display the comments" do
visit refinery.blog_post_path(blog_comment.post)
expect(page).not_to have_content(blog_comment.body)
end
end
context "when posting comments" do
let(:blog_post) { FactoryGirl.create(:blog_post) }
let(:name) { "pete" }
let(:email) { "pete@mcawesome.com" }
let(:body) { "Witty comment." }
before do
visit refinery.blog_post_path(blog_post)
fill_in "Name", :with => name
fill_in "Email", :with => email
fill_in "Message", :with => body
click_button "Send comment"
end
it "creates the comment" do
comment = blog_post.reload.comments.last
expect(comment.name).to eq(name)
expect(comment.email).to eq(email)
expect(comment.body).to eq(body)
end
end
context "post popular" do
let(:blog_post) { FactoryGirl.create(:blog_post) }
let(:blog_post2) { FactoryGirl.create(:blog_post) }
before do
visit refinery.blog_post_path(blog_post)
end
it "should increment access count" do
expect(blog_post.reload.access_count).to eq(1)
visit refinery.blog_post_path(blog_post)
expect(blog_post.reload.access_count).to eq(2)
end
it "should be most popular" do
expect(Refinery::Blog::Post.popular(2).first).to eq(blog_post)
end
end
context "post recent" do
let!(:blog_post) { FactoryGirl.create(:blog_post, :published_at => Time.now - 5.minutes) }
let!(:blog_post2) { FactoryGirl.create(:blog_post, :published_at => Time.now - 2.minutes) }
it "should be the most recent" do
expect(Refinery::Blog::Post.recent(2).first.id).to eq(blog_post2.id)
end
end
end
describe "#show draft preview" do
let(:blog_post) { FactoryGirl.create(:blog_post_draft) }
context "when logged in as admin" do
it "should display the draft notification" do
visit refinery.blog_post_path(blog_post)
expect(page).to have_content('This page is NOT live for public viewing.')
end
end
context "when not logged in as an admin" do
before do
# TODO: remove Refinery::Pages::Engine.load_seed dependency.
# It's here to temporary fix the issue with 404 after visiting logout path.
Refinery::Pages::Engine.load_seed
visit refinery.logout_path
end
it "should not display the blog post" do
visit refinery.blog_post_path(blog_post)
expect(page).to have_content("The page you requested was not found.")
end
end
end
end
end
|