Mercurial > zeropaste
view test/controllers/pastes_controller_test.rb @ 437:d31fe32da7a0
Finish updating to rails 5
author | nanaya <me@myconan.net> |
---|---|
date | Sat, 02 Jul 2016 17:04:25 +0900 |
parents | 1d113463d154 |
children | 84ca55a0568e |
line wrap: on
line source
require "test_helper" class PastesControllerTest < ActionController::TestCase test "creates paste from plaintext" do assert_difference("Paste.count", 1) do post :create, :params => { "paste" => { "paste" => "here be paste" } } end assert_response :redirect end test "creates paste from gzip" do assert_difference("Paste.count", 1) do post :create, :params => { "paste" => { "paste_gzip" => ActiveSupport::Gzip.compress("here be paste") } } end assert_response :redirect end test "creates paste from base64 gzip" do assert_difference("Paste.count", 1) do post :create, :params => { "paste" => { "paste_gzip_base64" => Base64.encode64(ActiveSupport::Gzip.compress("here be paste")) } } end assert_response :redirect end test "filters spam" do assert_no_difference("Paste.count") do post :create, :params => { "url1" => "http://hello.com", "paste" => { "paste" => "here be paste", "key" => "12341234" } } end assert_response :success end test "shows paste" do get :show, :params => { :id => pastes(:basic).id } assert_response :success end end