require File.dirname(__FILE__) + '/../../spec_helper'

ActionController::Base.send(:include, SimpleNavigation::ControllerMethods)

describe SimpleNavigation::ControllerMethods do

  def stub_loading_config
    SimpleNavigation::Configuration.stub!(:load)
  end

  before(:each) do
    stub_loading_config
    class ApplicationController < ActionController::Base
    end
    @controller = ApplicationController.new
  end
  
  describe 'when being included' do
    it "should extend the ClassMethods" do
      @controller.class.should respond_to(:navigation)
    end
    it "should include the InstanceMethods" do
      @controller.should respond_to(:current_navigation)
    end
    it "should install the Helpers Module" do
      [:render_navigation, :render_primary_navigation, :render_sub_navigation].each do |m|
        @controller.master_helper_module.instance_methods.map(&:to_s).should include(m.to_s)
      end
    end
  end
  
  describe 'class_methods' do
    
    describe 'navigation' do
      
      def call_navigation(key1, key2=nil)
        @controller.class_eval do
          navigation key1, key2
        end
      end
      
      it "should not have an instance-method 'set_navigation if navigation-method has not been called" do
        @controller.respond_to?(:set_navigation).should be_false
      end
      it 'should create an instance-method "set_navigation" when being called' do
        call_navigation(:key)
        @controller.respond_to?(:set_navigation).should be_true
      end
      it 'the created method should call current_navigation with the specified keys' do
        call_navigation(:primary, :secondary)
        @controller.should_receive(:current_navigation).with(:primary, :secondary)
        @controller.set_navigation
      end
    end
    
  end
  
  describe 'instance_methods' do
    
    describe 'current_navigation' do
      it "should set the current_primary_navigation as specified" do
        @controller.current_navigation(:first)
        @controller.instance_variable_get(:@current_primary_navigation).should == :first
      end
      it "should set the current_secondary_navigation as specified" do
        @controller.current_navigation(:first, :second)
        @controller.instance_variable_get(:@current_secondary_navigation).should == :second
      end
      it "should set the current_secondary_navigation to nil if no secondary is specified" do
        @controller.current_navigation(:first)
        @controller.instance_variable_get(:@current_secondary_navigation).should be_nil
      end
    end
    
  end
  
end