Sha256: bb71f4ff2dff3966e7e7061136bf7a3a0e16a6d594b54379be27780ece5dad07
Contents?: true
Size: 1.14 KB
Versions: 37
Compression:
Stored size: 1.14 KB
Contents
RSpec.describe RubySMB::Dcerpc::Svcctl::QueryServiceConfigWRequest do subject(:packet) { described_class.new } it { is_expected.to respond_to :h_service } it { is_expected.to respond_to :cb_buf_size } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end describe '#h_service' do it 'is a ScRpcHandle structure' do expect(packet.h_service).to be_a RubySMB::Dcerpc::Svcctl::ScRpcHandle end end describe '#cb_buf_size' do it 'is a NdrUint32' do expect(packet.cb_buf_size).to be_a RubySMB::Dcerpc::Ndr::NdrUint32 end end describe '#initialize_instance' do it 'sets #opnum to QUERY_SERVICE_CONFIG_W constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Svcctl::QUERY_SERVICE_CONFIG_W) end end it 'reads its own binary representation and outputs the same packet' do packet = described_class.new( h_service: {context_handle_attributes: 0, context_handle_uuid: '367abb81-9844-35f1-ad32-98f038001003'}, cb_buf_size: 3 ) binary = packet.to_binary_s expect(described_class.read(binary)).to eq(packet) end end
Version data entries
37 entries across 37 versions & 1 rubygems