Sha256: 00dcf971b891e5a217c08f20e9c62218a1579ced5d2e165c1942bf04b903e38b

Contents?: true

Size: 1014 Bytes

Versions: 6

Compression:

Stored size: 1014 Bytes

Contents

require 'spec_helper'

RSpec.describe RubySMB::Field::FileFullEaInfo do
  subject(:info) { described_class.new }

  it { is_expected.to respond_to :next_entry_offset }
  it { is_expected.to respond_to :flags }
  it { is_expected.to respond_to :ea_name_length }
  it { is_expected.to respond_to :ea_value_length }
  it { is_expected.to respond_to :ea_name }
  it { is_expected.to respond_to :ea_value }

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

  describe '#flags' do
    it 'is an extended_attribute_flag' do
      expect(info.flags).to be_a RubySMB::Field::ExtendedAttributeFlag
    end
  end

  describe '#ea_name_length' do
    it 'stores the length of the #ea_name field' do
      expect(info.ea_name_length).to eq info.ea_name.do_num_bytes
    end
  end

  describe '#ea_value_length' do
    it 'stores the length of the #ea_value field' do
      expect(info.ea_value_length).to eq info.ea_value.do_num_bytes
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby_smb-0.0.18 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb
ruby_smb-0.0.17 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb
ruby_smb-0.0.16 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb
ruby_smb-0.0.15 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb
ruby_smb-0.0.14 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb
ruby_smb-0.0.13 spec/lib/ruby_smb/field/file_full_ea_info_spec.rb