require 'rails_helper'

# This spec was generated by rspec-rails when you ran the scaffold generator.
# It demonstrates how one might use RSpec to specify the controller code that
# was generated by Rails when you ran the scaffold generator.
#
# It assumes that the implementation code is generated by the rails scaffold
# generator.  If you are using any extension libraries to generate different
# controller code, this generated spec may or may not pass.
#
# It only uses APIs available in rails and/or rspec-rails.  There are a number
# of tools you can use to make these specs even more expressive, but we're
# sticking to rails and rspec-rails APIs to keep things simple and stable.
#
# Compared to earlier versions of this generator, there is very limited use of
# stubs and message expectations in this spec.  Stubs are only used when there
# is no simpler way to get a handle on the object needed for the example.
# Message expectations are only used when there is no simpler way to specify
# that an instance is receiving a specific message.

RSpec.describe Ppa::RegioesController, type: :controller do
	sign_in_admin
	set_ppa_id_na_sessao
	# This should return the minimal set of attributes required to create a valid
	# Ppa::Regiao. As you add validations to Ppa::Regiao, be sure to
	# adjust the attributes here as well.
	let(:valid_attributes) {
		FactoryBot.attributes_for( :regiao_sede_do_municipio, :ppa_2014)
	}

	let(:invalid_attributes) {
		{ nome: '' }
	}

	# This should return the minimal set of values that should be in the session
	# in order to pass any filters (e.g. authentication) defined in
	# Ppa::RegioesController. Be sure to keep this updated too.
	let(:valid_session) { {} }

	it{ is_expected.to use_before_action(:verifica_se_tem_ppa_na_sessao!) }
	
	describe "GET #index" do
		it "retorna apenas as regiões do ppa atual da sessão" do
			regiao_2010 = FactoryBot.create(:regiao_sede_do_municipio, :ppa_2010 )
			regiao_2014 = FactoryBot.create(:regiao_sede_do_municipio, :ppa_2014 )
			allow( controller ).to receive( :ppa_atual ).and_return( regiao_2010.ppa )
			get :index
			expect( assigns[:ppa_regioes]).to eq( controller.ppa_atual.regioes )
			expect( assigns[:ppa_regioes]).to_not include( regiao_2014 )
		end
	end

	describe "GET #show" do
		it "assigns the requested ppa_regiao as @ppa_regiao" do
			regiao = Ppa::Regiao.create! valid_attributes
			get :show, params: {:id => regiao.to_param}, valid_session
			expect(assigns(:ppa_regiao)).to eq(regiao)
		end
	end

	describe "GET #new" do
		it "assigns a new ppa_regiao as @ppa_regiao" do
			get :new, params: {}, valid_session
			expect(assigns(:ppa_regiao)).to be_a_new(Ppa::Regiao)
		end
	end

	describe "GET #edit" do
		it "assigns the requested ppa_regiao as @ppa_regiao" do
			regiao = Ppa::Regiao.create! valid_attributes
			get :edit, params: {:id => regiao.to_param}, valid_session
			expect(assigns(:ppa_regiao)).to eq(regiao)
		end
	end

	describe "POST #create" do
		context "with valid params" do
			it "creates a new Ppa::Regiao" do
				expect {
					post :create, params: {:ppa_regiao => valid_attributes}, valid_session
				}.to change(Ppa::Regiao, :count).by(1)
			end

			it "a região recém criada deve ter o id do ppa da sessão" do
				post :create, params: {ppa_regiao: valid_attributes}
				expect( Ppa::Regiao.last.ppa_id ).to eq controller.ppa_atual.id
			end

			it "assigns a newly created ppa_regiao as @ppa_regiao" do
				post :create, params: {:ppa_regiao => valid_attributes}, valid_session
				expect(assigns(:ppa_regiao)).to be_a(Ppa::Regiao)
				expect(assigns(:ppa_regiao)).to be_persisted
			end

			it "redirects to the created ppa_regiao" do
				post :create, params: {:ppa_regiao => valid_attributes}, valid_session
				expect(response).to redirect_to(Ppa::Regiao.last)
			end
		end

		context "with invalid params" do
			it "assigns a newly created but unsaved ppa_regiao as @ppa_regiao" do
				post :create, params: {:ppa_regiao => invalid_attributes}, valid_session
				expect(assigns(:ppa_regiao)).to be_a_new(Ppa::Regiao)
			end

			it "re-renders the 'new' template" do
				post :create, params: {:ppa_regiao => invalid_attributes}, valid_session
				expect(response).to render_template("new")
			end
		end
	end

	describe "PUT #update" do
		context "with valid params" do
			let(:new_attributes) {
				{ nome: 'novo nome' }
			}

			it "updates the requested ppa_regiao" do
				regiao = Ppa::Regiao.create! valid_attributes
				post :update, params: {:id => regiao.to_param, :ppa_regiao => new_attributes}, valid_session
				regiao.reload
				expect( regiao.nome ).to eq 'novo nome'
			end

			it "assigns the requested ppa_regiao as @ppa_regiao" do
				regiao = Ppa::Regiao.create! valid_attributes
				post :update, params: {:id => regiao.to_param, :ppa_regiao => valid_attributes}, valid_session
				expect(assigns(:ppa_regiao)).to eq(regiao)
			end

			it "redirects to the ppa_regiao" do
				regiao = Ppa::Regiao.create! valid_attributes
				post :update, params: {:id => regiao.to_param, :ppa_regiao => valid_attributes}, valid_session
				expect(response).to redirect_to(regiao)
			end
		end

		context "with invalid params" do
			it "assigns the ppa_regiao as @ppa_regiao" do
				regiao = Ppa::Regiao.create! valid_attributes
				post :update, params: {:id => regiao.to_param, :ppa_regiao => invalid_attributes}, valid_session
				expect(assigns(:ppa_regiao)).to eq(regiao)
			end

			it "re-renders the 'edit' template" do
				regiao = Ppa::Regiao.create! valid_attributes
				post :update, params: {:id => regiao.to_param, :ppa_regiao => invalid_attributes}, valid_session
				expect(response).to render_template("edit")
			end
		end
	end

	describe "DELETE #destroy" do
		it "destroys the requested ppa_regiao" do
			regiao = Ppa::Regiao.create! valid_attributes
			expect {
				delete :destroy, params: {:id => regiao.to_param}, valid_session
			}.to change(Ppa::Regiao, :count).by(-1)
		end

		it "redirects to the ppa_regioes list" do
			regiao = Ppa::Regiao.create! valid_attributes
			delete :destroy, params: {:id => regiao.to_param}, valid_session
			expect(response).to redirect_to(ppa_regioes_url)
		end
	end

end
