Sha256: f14962e0e1a8cef74cbf8e5c6e1c455ca20ba95a32d37bf92058ef6e2ed27ea2

Contents?: true

Size: 1.82 KB

Versions: 4

Compression:

Stored size: 1.82 KB

Contents

require 'spec_helper'

describe Net::NTLM::SecurityBuffer do

  fields = [
      { :name => :length, :class => Net::NTLM::Int16LE, :value => 0, :active => true },
      { :name => :allocated, :class => Net::NTLM::Int16LE, :value => 0, :active => true },
      { :name => :offset, :class => Net::NTLM::Int32LE, :value => 0, :active => true },
  ]

  it_behaves_like 'a fieldset', fields
  it_behaves_like 'a field', 'WORKSTATION', true


  subject(:domain_security_buffer) do
    Net::NTLM::SecurityBuffer.new({
        :value => 'WORKSTATION',
        :active => true
    })
  end

  context 'when setting the value directly' do
    before(:each) do
      domain_security_buffer.value = 'DOMAIN1'
    end
    it 'should change the value' do
      domain_security_buffer.value.should == 'DOMAIN1'
    end

    it 'should adjust the length field to the size of the new value' do
      domain_security_buffer.length.should == 7
    end

    it 'should adjust the allocated field to the size of the new value' do
      domain_security_buffer.allocated.should == 7
    end
  end

  context '#data_size' do
    it 'should return the size of the value if active' do
      domain_security_buffer.data_size.should == 11
    end

    it 'should return 0 if inactive' do
      domain_security_buffer.active = false
      domain_security_buffer.data_size.should == 0
    end
  end

  context '#parse' do
    it 'should read in a properly formatted string' do
      # Length of the string is 8
      length = "\x08\x00"
      # Space allocated is 8
      allocated = "\x08\x00"
      # The offset that the actual value begins at is also 8
      offset = "\x08\x00\x00\x00"
      string_to_parse = "#{length}#{allocated}#{offset}FooBarBaz"
      domain_security_buffer.parse(string_to_parse).should == 8
      domain_security_buffer.value.should == 'FooBarBa'
    end

  end
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/security_buffer_spec.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/security_buffer_spec.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/security_buffer_spec.rb
rubyntlm-0.4.0 spec/lib/net/ntlm/security_buffer_spec.rb