view test/controllers/pastes_controller_test.rb @ 428:9fc6b919369c

Whoops, broken the very basic thing Added test.
author nanaya <me@myconan.net>
date Sun, 15 Nov 2015 15:10:01 +0900
parents 325fcf388442
children 1d113463d154
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, "paste" => { "paste" => "here be paste" }
    end

    assert_response :redirect
  end

  test "creates paste from gzip" do
    assert_difference("Paste.count", 1) do
      post :create, "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, "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, "url1" => "http://hello.com", "paste" => { "paste" => "here be paste", "key" => "12341234" }
    end

    assert_response :success
  end

  test "shows paste" do
    get :show, :id => pastes(:basic).id

    assert_response :success
  end
end