Sha256: 94d6e1ee8b251731d9c93e874f5bd6c5e2e00fd16fd55defb9fe62a5d7c25220

Contents?: true

Size: 773 Bytes

Versions: 6

Compression:

Stored size: 773 Bytes

Contents

RSpec.describe RubySMB::SMB1::BitField::Trans2Flags do
  subject(:flags) { described_class.new }

  it { is_expected.to respond_to :no_response }
  it { is_expected.to respond_to :disconnect }

  it 'is little endian' do
    expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
  end

  describe '#no_response' do
    it 'should be a 1-bit field per the SMB spec' do
      expect(flags.no_response).to be_a BinData::Bit1
    end

    it_behaves_like 'bit field with one flag set', :no_response, 'C', 0x02
  end

  describe '#disconnect' do
    it 'should be a 1-bit field per the SMB spec' do
      expect(flags.disconnect).to be_a BinData::Bit1
    end

    it_behaves_like 'bit field with one flag set', :disconnect, 'C', 0x01
  end


end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby_smb-0.0.18 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb
ruby_smb-0.0.17 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb
ruby_smb-0.0.16 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb
ruby_smb-0.0.15 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb
ruby_smb-0.0.14 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb
ruby_smb-0.0.13 spec/lib/ruby_smb/smb1/bit_field/trans2_flags_spec.rb