File: test_marshal.rb

package info (click to toggle)
ruby-dalli 3.2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 684 kB
  • sloc: ruby: 6,552; sh: 20; makefile: 4
file content (40 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download
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
# frozen_string_literal: true

require_relative '../helper'
require 'json'

describe 'Serializer configuration' do
  MemcachedManager.supported_protocols.each do |p|
    describe "using the #{p} protocol" do
      it 'does not allow values over the 1MB limit' do
        memcached_persistent(p) do |dc|
          value = SecureRandom.random_bytes((1024 * 1024) + 30_000)

          with_nil_logger do
            assert_raises Dalli::ValueOverMaxSize do
              dc.set('verylarge', value)
            end
          end
        end
      end

      it 'allow large values under the limit to be set' do
        memcached_persistent(p) do |dc|
          value = '0' * 1024 * 1024

          assert dc.set('verylarge', value, nil, compress: true)
        end
      end

      it 'errors appropriately when the value cannot be marshalled' do
        memcached_persistent(p) do |dc|
          with_nil_logger do
            assert_raises Dalli::MarshalError do
              dc.set('a', proc { true })
            end
          end
        end
      end
    end
  end
end