Sha256: 31ce907dc01fc49078fb31efe76cfe37e9ea9b04b7d42a45d0025e224815b7f3
Contents?: true
Size: 1.4 KB
Versions: 38
Compression:
Stored size: 1.4 KB
Contents
RSpec.describe RubySMB::Dcerpc::Samr::SamrOpenDomainResponse do subject(:packet) { described_class.new } it { is_expected.to respond_to :domain_handle } it { is_expected.to respond_to :error_status } it { is_expected.to respond_to :opnum } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end it 'is a BinData::Record' do expect(packet).to be_a(BinData::Record) end describe '#domain_handle' do it 'is a SamprHandle structure' do expect(packet.domain_handle).to be_a RubySMB::Dcerpc::Samr::SamprHandle end end describe '#error_status' do it 'is a NdrUint32 structure' do expect(packet.error_status).to be_a RubySMB::Dcerpc::Ndr::NdrUint32 end end describe '#initialize_instance' do it 'sets #opnum to SAMR_OPEN_DOMAIN constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Samr::SAMR_OPEN_DOMAIN) end end it 'reads itself' do new_class = described_class.new( domain_handle: { context_handle_attributes: 0, context_handle_uuid: '2ef54a87-e29e-4d24-90e9-9da49b94449e' }, error_status: 2 ) expect(packet.read(new_class.to_binary_s)).to eq( { domain_handle: { context_handle_attributes: 0, context_handle_uuid: '2ef54a87-e29e-4d24-90e9-9da49b94449e' }, error_status: 2 } ) end end
Version data entries
38 entries across 38 versions & 1 rubygems