view test/controllers/pastes_controller_test.rb @ 435:1d113463d154

Fix test deprecations
author nanaya <me@myconan.net>
date Fri, 13 May 2016 04:04:29 +0900
parents 9fc6b919369c
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