Sha256: 523c136d6e1b6e8f04a5175f8ae7a5241b0a90a54be32807ec635c4f1495afcd
Contents?: true
Size: 886 Bytes
Versions: 18
Compression:
Stored size: 886 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require 'spec_helper' describe 'Zstd compression' do min_server_version '4.2' require_zstd_compression before do authorized_client['test'].drop end context 'when client has snappy compressor option enabled' do it 'compresses the message to the server' do # Double check that the client has zstd compression enabled expect(authorized_client.options[:compressors]).to include('zstd') expect(Mongo::Protocol::Compressed).to receive(:new).twice.and_call_original expect(Zstd).to receive(:compress).twice.and_call_original expect(Zstd).to receive(:decompress).twice.and_call_original authorized_client['test'].insert_one(_id: 1, text: 'hello world') document = authorized_client['test'].find(_id: 1).first expect(document['text']).to eq('hello world') end end end
Version data entries
18 entries across 18 versions & 1 rubygems