Mercurial > zeropaste
view test/controllers/pastes_controller_test.rb @ 494:e508d3226214 default tip
Update gems
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 29 Oct 2023 23:24:13 +0900 |
parents | 84ca55a0568e |
children |
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" => fixture_file_upload('hello_world.txt.gz') } } 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