aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/output_safety_helper_test.rb
blob: 3c52b63d404d5e64745e145611f922fe865ce4ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require 'abstract_unit'
require 'testing_sandbox'

class OutputSafetyHelperTest < ActionView::TestCase
  tests ActionView::Helpers::OutputSafetyHelper
  include TestingSandbox

  def setup
    @string = "hello"
  end

  test "raw returns the safe string" do
    result = raw(@string)
    assert_equal @string, result
    assert result.html_safe?
  end

  test "raw handles nil values correctly" do
    assert_equal "", raw(nil)
  end

  test "joining safe elements without a separator is safe" do
    array = 5.times.collect { "some string".html_safe }
    assert safe_join(array).html_safe?
  end

  test "Joining safe elements with a safe separator is safe" do
    array = 5.times.collect { "some string".html_safe }
    assert safe_join(array, "-".html_safe).html_safe?
  end

  test "Joining safe elements with an unsafe separator is unsafe" do
    array = 5.times.collect { "some string".html_safe }
    assert !safe_join(array, "-").html_safe?
  end

  test "Joining is unsafe if any element is unsafe even with a safe separator" do
    array = 5.times.collect { "some string".html_safe }
    array << "some string"
    assert !safe_join(array, "-".html_safe).html_safe?
  end

  test "Joining is unsafe if any element is unsafe and no separator is given" do
    array = 5.times.collect { "some string".html_safe }
    array << "some string"
    assert !safe_join(array).html_safe?
  end

  test "Joining is unsafe if any element is unsafe and the separator is unsafe" do
    array = 5.times.collect { "some string".html_safe }
    array << "some string"
    assert !safe_join(array, "-").html_safe?
  end

end