Sha256: 10de49bb39f44fe6f31b3b265f54a88251140db7349723d9dc0173e560d99c2e
Contents?: true
Size: 1.32 KB
Versions: 10
Compression:
Stored size: 1.32 KB
Contents
RSpec.describe RubySMB::Dcerpc::Svcctl::StartServiceWRequest do subject(:packet) { described_class.new } it { is_expected.to respond_to :h_service } it { is_expected.to respond_to :argc } it { is_expected.to respond_to :argv } 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 '#argc' do it 'is a 32-bit unsigned integer' do expect(packet.argc).to be_a BinData::Uint32le end end describe '#argv' do it 'is a NdrLpStringPtrsw structure' do expect(packet.argv).to be_a RubySMB::Dcerpc::Ndr::NdrLpStringPtrsw end end describe '#initialize_instance' do it 'sets #opnum to START_SERVICE_W constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Svcctl::START_SERVICE_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'}, argc: 3, argv: ['test', '-c', '-e'] ) binary = packet.to_binary_s expect(described_class.read(binary)).to eq(packet) end end
Version data entries
10 entries across 10 versions & 1 rubygems