1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
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
expect(domain_security_buffer.value).to eq('DOMAIN1')
end
it 'should adjust the length field to the size of the new value' do
expect(domain_security_buffer.length).to eq(7)
end
it 'should adjust the allocated field to the size of the new value' do
expect(domain_security_buffer.allocated).to eq(7)
end
end
context '#data_size' do
it 'should return the size of the value if active' do
expect(domain_security_buffer.data_size).to eq(11)
end
it 'should return 0 if inactive' do
domain_security_buffer.active = false
expect(domain_security_buffer.data_size).to eq(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"
expect(domain_security_buffer.parse(string_to_parse)).to eq(8)
expect(domain_security_buffer.value).to eq('FooBarBa')
end
end
end
|