Sha256: eab929e029d993c43282a9c6c98059d0afd704933e560a079e7828a25ce767b5

Contents?: true

Size: 1.91 KB

Versions: 10

Compression:

Stored size: 1.91 KB

Contents

#
# Author: Nick Karanatsios <nickkaranatsios@gmail.com>
#
# Copyright (C) 2008-2012 NEC Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#


require File.join( File.dirname( __FILE__ ), "..", "spec_helper" )
require "trema"


describe QueueGetConfigReply, ".new( VALID OPTIONS )" do
  subject do 
    for i in 1..2 do
      pq = PacketQueue.new( :queue_id => i, :len => i * 64 )
      mr = MinRateQueue.new( i, i * 64, 1024 * i, pq)
    end
    QueueGetConfigReply.new( :datapath_id => 0xabc,
      :transaction_id => 123,
      :port => 1,
      :queues => Queue.queues
    )
  end
  its( :queues ) { subject.length.should ==  2  }
  its( :queues ) { subject[0].should be_an_instance_of PacketQueue }
  its( :datapath_id ) { should == 0xabc }
  its( :transaction_id ) { should == 123 }
end


describe PacketQueue, ".new( VALID OPTIONS )" do
  subject { PacketQueue.new( :queue_id => 123, :len => 64 ) }
  its( :queue_id ) { should == 123 }
  its( :len ) { should == 64 }
end


describe MinRateQueue, ".new( VALID OPTIONS )" do
  subject do
    pq = PacketQueue.new( :queue_id => 123, :len => 64 )
    MinRateQueue.new( 1, 64, 1024, pq )
  end
  its( :property ) { should == 1 }
  its( :len ) { should == 64 }
  its( :rate ) { should == 1024 }
end


### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End:

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
trema-0.2.5 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.4 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.3 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.2.1 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.2 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.1 spec/trema/queue-get-config-reply_spec.rb
trema-0.2.0 spec/trema/queue-get-config-reply_spec.rb
trema-0.1.3.2 spec/trema/queue-get-config-reply_spec.rb
trema-0.1.3.1 spec/trema/queue-get-config-reply_spec.rb
trema-0.1.3 spec/trema/queue-get-config-reply_spec.rb