Sha256: 00eeff814540dc861538513c7510a9e38151a48d2ece91a6f5dfeb1d11e0edd7
Contents?: true
Size: 1.09 KB
Versions: 12
Compression:
Stored size: 1.09 KB
Contents
RSpec.describe RubySMB::Dcerpc::Efsrpc::EfsRpcOpenFileRawResponse do subject(:packet) { described_class.new } it { is_expected.to respond_to :h_context } 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 '#h_context' do it 'is a NdrContextHandle' do expect(packet.h_context).to be_a RubySMB::Dcerpc::Ndr::NdrContextHandle end 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_OPEN_FILE_RAW constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Efsrpc::EFS_RPC_OPEN_FILE_RAW) end end it 'reads its own binary representation and outputs the same packet' do packet = described_class.new( h_context: RubySMB::Dcerpc::Ndr::NdrContextHandle.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