Sha256: 13c0c92e5aa9dc2a85ef4b62ab2a6ae3dd42cfe944826804072d25a5b25f0175
Contents?: true
Size: 894 Bytes
Versions: 23
Compression:
Stored size: 894 Bytes
Contents
RSpec.describe RubySMB::Dcerpc::EncryptingFileSystem::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::EncryptingFileSystem::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
23 entries across 23 versions & 1 rubygems