#!/usr/bin/env ruby BEGIN { require 'pathname' basedir = Pathname.new( __FILE__ ).dirname.parent.parent libdir = basedir + "lib" $LOAD_PATH.unshift( libdir ) unless $LOAD_PATH.include?( libdir ) } require 'spec' require 'spec/lib/constants' require 'spec/lib/helpers' require 'spec/lib/control_behavior' require 'treequel' require 'treequel/controls/pagedresults' include Treequel::TestConstants include Treequel::Constants ##################################################################### ### C O N T E X T S ##################################################################### describe Treequel::PagedResultsControl do include Treequel::SpecHelpers before( :all ) do setup_logging( :fatal ) end before( :each ) do # Used by the shared behavior @control = Treequel::PagedResultsControl @branch = mock( "Branch", :dn => 'cn=example,dc=acme,dc=com' ) @directory = mock( "Directory" ) @branch.stub!( :directory ).and_return( @directory ) @directory.stub!( :registered_controls ).and_return([ Treequel::PagedResultsControl ]) @branchset = Treequel::Branchset.new( @branch ) end after( :all ) do reset_logging() end it_should_behave_like "A Treequel::Control" it "adds a paged_results_setsize attribute to extended branchsets" do @branchset.should respond_to( :paged_results_setsize ) end it "adds a paged_results_cookie attribute to extended branchsets" do @branchset.should respond_to( :paged_results_cookie ) end it "can add paging of a specific size to a Branchset via the #with_paged_results mutator" do @branchset.with_paged_results( 17 ).paged_results_setsize.should == 17 end it "can create an unpaged Branchset from a paged one by passing nil to #with_paged_results" do paged_branchset = @branchset.with_paged_results( 25 ) paged_branchset.with_paged_results( nil ).paged_results_setsize.should == nil end it "can create an unpaged Branchset from a paged one by passing 0 to #with_paged_results" do paged_branchset = @branchset.with_paged_results( 25 ) paged_branchset.with_paged_results( 0 ).paged_results_setsize.should == nil end it "can create an unpaged Branchset from a paged one via the #without_paging mutator" do paged_branchset = @branchset.with_paged_results( 25 ) paged_branchset.without_paging.paged_results_setsize.should == nil end it "can remove any existing paging from a Branchset via the #without_paging! imperative method" do paged_branchset = @branchset.with_paged_results( 25 ) paged_branchset.without_paging! paged_branchset.paged_results_setsize.should == nil end it "injects the correct server-control structure into the search when iterating" do oid = Treequel::PagedResultsControl::OID expected_asn1_string = "0\005\002\001\031\004\000" expected_control = LDAP::Control.new( oid, expected_asn1_string, true ) resultbranch = mock( "Paged result branch" ) resultcontrol = mock( "Paged result control" ) @branch.should_receive( :search ).with( :subtree, instance_of(Treequel::Filter), { :limit => 0, :selectattrs => [], :timeout => 0, :server_controls => [ expected_control ], :client_controls => [] } ).and_yield( resultbranch ) resultbranch.should_receive( :controls ).and_return([ resultcontrol ]) resultcontrol.should_receive( :oid ). and_return( Treequel::PagedResultsControl::OID ) resultcontrol.should_receive( :decode ).and_return([ 25, "cookievalue" ]) @branchset.with_paged_results( 25 ).each do |*args| args.should == [ resultbranch ] end end it "doesn't add a paging control if no set size has been set" do resultbranch = mock( "Result branch" ) @branch.should_receive( :search ).with( :subtree, instance_of(Treequel::Filter), { :limit => 0, :selectattrs => [], :timeout => 0, :server_controls => [], :client_controls => [] } ).and_yield( resultbranch ) resultbranch.should_receive( :controls ).and_return( [] ) @branchset.without_paging.each do |*args| args.should == [ resultbranch ] end end end # vim: set nosta noet ts=4 sw=4: