aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/coders/yaml_column_test.rb
blob: b874adc0810c9982f2d4e0d40f3f7593f19ff9a9 (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
require "cases/helper"

module ActiveRecord
  module Coders
    class YAMLColumnTest < ActiveRecord::TestCase
      def test_initialize_takes_class
        coder = YAMLColumn.new(Object)
        assert_equal Object, coder.object_class
      end

      def test_type_mismatch_on_different_classes_on_dump
        coder = YAMLColumn.new(Array)
        assert_raises(SerializationTypeMismatch) do
          coder.dump("a")
        end
      end

      def test_type_mismatch_on_different_classes
        coder = YAMLColumn.new(Array)
        assert_raises(SerializationTypeMismatch) do
          coder.load "--- foo"
        end
      end

      def test_nil_is_ok
        coder = YAMLColumn.new
        assert_nil coder.load "--- "
      end

      def test_returns_new_with_different_class
        coder = YAMLColumn.new SerializationTypeMismatch
        assert_equal SerializationTypeMismatch, coder.load("--- ").class
      end

      def test_returns_string_unless_starts_with_dash
        coder = YAMLColumn.new
        assert_equal 'foo', coder.load("foo")
      end

      def test_load_handles_other_classes
        coder = YAMLColumn.new
        assert_equal [], coder.load([])
      end

      def test_load_swallows_yaml_exceptions
        coder = YAMLColumn.new
        bad_yaml = '--- {'
        assert_equal bad_yaml, coder.load(bad_yaml)
      end
    end
  end
end