Sha256: 339ed5f80d45bb5c295347b1fafe0297ff5ac56b76b56be8a2287426f2ca2f68

Contents?: true

Size: 1.36 KB

Versions: 36

Compression:

Stored size: 1.36 KB

Contents

require 'spec_helper'

RSpec.describe RubySMB::Fscc::FileInformation::FileNamesInformation do
  it 'references the correct class level' do
    expect(described_class).to be_const_defined(:CLASS_LEVEL)
    expect(described_class::CLASS_LEVEL).to be RubySMB::Fscc::FileInformation::FILE_NAMES_INFORMATION
  end

  subject(:struct) { described_class.new }

  it { should respond_to :next_offset }
  it { should respond_to :file_index }
  it { should respond_to :file_name_length }
  it { should respond_to :file_name }

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

  it 'tracks the length of the file_name field' do
    struct.file_name = 'Hello.txt'
    expect(struct.file_name_length).to eq struct.file_name.do_num_bytes
  end

  it 'automatically encodes the file name in UTF-16LE' do
    name = 'Hello_world.txt'
    struct.file_name = name
    expect(struct.file_name.force_encoding('utf-16le')).to eq name.encode('utf-16le')
  end

  describe 'reading in from a blob' do
    it 'uses the file_name_length to know when to stop reading' do
      name = 'Hello_world.txt'
      struct.file_name = name
      blob = struct.to_binary_s
      blob << 'AAAA'
      new_from_blob = described_class.read(blob)
      expect(new_from_blob.file_name.force_encoding('utf-16le')).to eq name.encode('utf-16le')
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
ruby_smb-3.1.1 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.1.0 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.6 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.5 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.4 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.3 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.2 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.1 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-3.0.0 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.13 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.12 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.11 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.10 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.9 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.8 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.7 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.6 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.5 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.4 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb
ruby_smb-2.0.3 spec/lib/ruby_smb/fscc/file_information/file_names_information_spec.rb