File: binary_test.rb

package info (click to toggle)
rails 2%3A7.2.2.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 43,352 kB
  • sloc: ruby: 349,799; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (69 lines) | stat: -rw-r--r-- 2,096 bytes parent folder | download | duplicates (2)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# frozen_string_literal: true

require "cases/helper"
require "models/binary"

class BinaryTest < ActiveRecord::TestCase
  FIXTURES = %w(flowers.jpg example.log test.txt)

  def test_mixed_encoding
    str = +"\x80"
    str.force_encoding("ASCII-8BIT")

    binary = Binary.new name: "いただきます!", data: str
    binary.save!
    binary.reload
    assert_equal str, binary.data

    name = binary.name

    assert_equal "いただきます!", name
  end

  def test_load_save
    Binary.delete_all

    FIXTURES.each do |filename|
      data = File.read(ASSETS_ROOT + "/#{filename}")
      data.force_encoding("ASCII-8BIT")
      data.freeze

      bin = Binary.new(data: data)
      assert_equal data, bin.data, "Newly assigned data differs from original"

      bin.save!
      assert_equal data, bin.data, "Data differs from original after save"

      assert_equal data, bin.reload.data, "Reloaded data differs from original"
    end
  end

  def test_unicode_input_casting
    binary = Binary.new(name: 123, data: "text")

    # Before saving, attribute methods return casted values, but their
    # _before_type_cast still returns the original value. (Integer-to-String
    # conversion used for comparison.)
    assert_equal "123", binary.name
    assert_equal 123, binary.name_before_type_cast
    assert_equal Encoding::BINARY, binary.data.encoding
    assert_equal Encoding::UTF_8, binary.data_before_type_cast.to_s.encoding

    binary.save!

    # After saving, casted values appear throughout.
    assert_equal "123", binary.name
    assert_equal "123", binary.name_before_type_cast
    assert_equal Encoding::BINARY, binary.data.encoding
    assert_equal Encoding::BINARY, binary.data_before_type_cast.to_s.encoding

    binary.reload

    assert_equal "123", binary.name
    assert_equal "123", binary.name_before_type_cast
    assert_equal Encoding::BINARY, binary.data.encoding
    # After reloading, data_before_type_cast is adapter-dependent. For
    # example, PostgreSQL returns the bytea_output encoded representation,
    # which happens to be UTF-8.
  end
end