33 lines
975 B
Ruby
33 lines
975 B
Ruby
require 'test_helper'
|
|
|
|
module Moderator
|
|
class IpAddrsControllerTest < ActionDispatch::IntegrationTest
|
|
context "The ip addrs controller" do
|
|
setup do
|
|
@user = create(:moderator_user, created_at: 1.month.ago)
|
|
as(@user) { create(:comment, creator: @user) }
|
|
end
|
|
|
|
should "find by ip addr" do
|
|
get_auth moderator_ip_addrs_path, @user, params: {:search => {:ip_addr => "127.0.0.1"}}
|
|
assert_response :success
|
|
end
|
|
|
|
should "find by user id" do
|
|
get_auth moderator_ip_addrs_path, @user, params: {:search => {:user_id => @user.id.to_s}}
|
|
assert_response :success
|
|
end
|
|
|
|
should "find by user name" do
|
|
get_auth moderator_ip_addrs_path, @user, params: {:search => {:user_name => @user.name}}
|
|
assert_response :success
|
|
end
|
|
|
|
should "render the search page" do
|
|
get_auth search_moderator_ip_addrs_path, @user
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|
|
end
|