post appeal functional test
This commit is contained in:
22
app/views/post_appeals/index.html.erb
Normal file
22
app/views/post_appeals/index.html.erb
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<div id="c-post-appeals">
|
||||||
|
<div id="a-index">
|
||||||
|
<table width="100%">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Post</th>
|
||||||
|
<th>Creator</th>
|
||||||
|
<th>Reason</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<% @post_appeals.each do |post_appeal| %>
|
||||||
|
<tr>
|
||||||
|
<td><%= PostPresenter.preview(post_appeal.post) %></td>
|
||||||
|
<td><%= link_to post_appeal.creator.name, user_path(post_appeal.creator) %></td>
|
||||||
|
<td><%= format_text post_appeal.reason %></td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
56
test/functional/post_appeals_controller_test.rb
Normal file
56
test/functional/post_appeals_controller_test.rb
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
require 'test_helper'
|
||||||
|
|
||||||
|
class PostAppealsControllerTest < ActionController::TestCase
|
||||||
|
context "The post appeals controller" do
|
||||||
|
setup do
|
||||||
|
@user = Factory.create(:user)
|
||||||
|
CurrentUser.user = @user
|
||||||
|
CurrentUser.ip_addr = "127.0.0.1"
|
||||||
|
end
|
||||||
|
|
||||||
|
teardown do
|
||||||
|
CurrentUser.user = nil
|
||||||
|
CurrentUser.ip_addr = nil
|
||||||
|
end
|
||||||
|
|
||||||
|
context "new action" do
|
||||||
|
should "render" do
|
||||||
|
get :new, {}, {:user_id => @user.id}
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "index action" do
|
||||||
|
setup do
|
||||||
|
@post = Factory.create(:post, :is_deleted => true)
|
||||||
|
@post_appeal = Factory.create(:post_appeal, :post => @post)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "render" do
|
||||||
|
get :index, {}, {:user_id => @user.id}
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with search parameters" do
|
||||||
|
should "render" do
|
||||||
|
get :index, {:search => {:post_id_equals => @post_appeal.post_id}}, {:user_id => @user.id}
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "create action" do
|
||||||
|
setup do
|
||||||
|
@post = Factory.create(:post, :is_deleted => true)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "create a new appeal" do
|
||||||
|
assert_difference("PostAppeal.count", 1) do
|
||||||
|
post :create, {:format => "js", :post_appeal => {:post_id => @post.id, :reason => "xxx"}}, {:user_id => @user.id}
|
||||||
|
assert_not_nil(assigns(:post_appeal))
|
||||||
|
assert_equal([], assigns(:post_appeal).errors.full_messages)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user