Sha256: 068fb26d0739e8209624d0a0fa7cf99f3526bf35ec07d9d6d671b590a30c84fa
Contents?: true
Size: 866 Bytes
Versions: 12
Compression:
Stored size: 866 Bytes
Contents
RSpec.describe RubySMB::Dcerpc::Efsrpc::EfsRpcEncryptFileSrvResponse do subject(:packet) { described_class.new } it { is_expected.to respond_to :error_status } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end describe '#error_status' do it 'is a NdrUint32' do expect(packet.error_status).to be_a RubySMB::Dcerpc::Ndr::NdrUint32 end end describe '#initialize_instance' do it 'sets #opnum to EFS_RPC_ENCRYPT_FILE_SRV constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Efsrpc::EFS_RPC_ENCRYPT_FILE_SRV) end end it 'reads its own binary representation and outputs the same packet' do packet = described_class.new( error_status: 0 ) binary = packet.to_binary_s expect(described_class.read(binary)).to eq(packet) end end
Version data entries
12 entries across 12 versions & 1 rubygems