Sha256: 9f96ca4cd975b4c53974c452603fed24744ebb4a0786d9eaed64be893df216b1

Contents?: true

Size: 763 Bytes

Versions: 6

Compression:

Stored size: 763 Bytes

Contents

require 'spec_helper'

RSpec.describe RubySMB::SMB2::Packet::EchoRequest do

  subject(:packet) { described_class.new }

  it { is_expected.to respond_to :smb2_header }
  it { is_expected.to respond_to :structure_size }

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

  describe '#smb2_header' do
    subject(:header) { packet.smb2_header }

    it 'is a standard SMB Header' do
      expect(header).to be_a RubySMB::SMB2::SMB2Header
    end

    it 'should have the command set to SMB_COM_NEGOTIATE' do
      expect(header.command).to eq RubySMB::SMB2::Commands::ECHO
    end

    it 'should not have the response flag set' do
      expect(header.flags.reply).to eq 0
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby_smb-0.0.18 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb
ruby_smb-0.0.17 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb
ruby_smb-0.0.16 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb
ruby_smb-0.0.15 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb
ruby_smb-0.0.14 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb
ruby_smb-0.0.13 spec/lib/ruby_smb/smb2/packet/echo_request_spec.rb