Sha256: c4703d648331e5dff24f3ac1199d5594c2797ed22b9fcd581e7f2e71e2a5707d
Contents?: true
Size: 887 Bytes
Versions: 12
Compression:
Stored size: 887 Bytes
Contents
RSpec.describe RubySMB::Dcerpc::Efsrpc::EfsRpcEncryptFileSrvRequest do subject(:packet) { described_class.new } it { is_expected.to respond_to :file_name } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end describe '#file_name' do it 'is a NdrConfVarWideStringz' do expect(packet.file_name).to be_a RubySMB::Dcerpc::Ndr::NdrConfVarWideStringz 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( file_name: 'file_name' ) 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