Skip to content
Extraits de code Groupes Projets
aspects_controller_spec.rb 4,28 ko
Newer Older
  • Learn to ignore specific revisions
  • danielgrippi's avatar
    danielgrippi a validé
    #   Copyright (c) 2010-2011, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    require 'spec_helper'
    
    Raphael's avatar
    Raphael a validé
    describe AspectsController do
    
        alice.getting_started = false
        alice.save
        sign_in :user, alice
    
        @alices_aspect_1 = alice.aspects.where(:name => "generic").first
    
        @alices_aspect_2 = alice.aspects.create(:name => "another aspect")
    
    
        @controller.stub(:current_user).and_return(alice)
    
        request.env["HTTP_REFERER"] = 'http://' + request.host
    
      describe "#new" do
        it "renders a remote form if remote is true" do
          get :new, "remote" => "true"
          response.should be_success
          response.body.should =~ /#{Regexp.escape('data-remote="true"')}/
        end
        it "renders a non-remote form if remote is false" do
          get :new, "remote" => "false"
          response.should be_success
          response.body.should_not =~ /#{Regexp.escape('data-remote="true"')}/
        end
        it "renders a non-remote form if remote is missing" do
          get :new
          response.should be_success
          response.body.should_not =~ /#{Regexp.escape('data-remote="true"')}/
        end
      end
    
    
      describe "#show" do
        it "succeeds" do
    
          get :show, 'id' => @alices_aspect_1.id.to_s
    
    danielvincent's avatar
    danielvincent a validé
          response.should be_redirect
    
        it 'redirects on an invalid id' do
          get :show, 'id' => 4341029835
          response.should be_redirect
        end
    
      describe "#create" do
    
        context "with valid params" do
    
          it "creates an aspect" do
    
            alice.aspects.count.should == 2
    
            post :create, "aspect" => {"name" => "new aspect"}
    
            alice.reload.aspects.count.should == 3
    
            post :create, "aspect" => {"name" => "new aspect"}
    
            response.should redirect_to(contacts_path(:a_id => Aspect.find_by_name("new aspect").id))
    
    danielgrippi's avatar
    danielgrippi a validé
    
          context "with person_id param" do
            it "creates a contact if one does not already exist" do
              lambda {
                post :create, :format => 'js', :aspect => {:name => "new", :person_id => eve.person.id}
    
    danielgrippi's avatar
    danielgrippi a validé
                alice.contacts.count
              }.by(1)
            end
    
            it "adds a new contact to the new aspect" do
              post :create, :format => 'js', :aspect => {:name => "new", :person_id => eve.person.id}
              alice.aspects.find_by_name("new").contacts.count.should == 1
            end
    
            it "adds an existing contact to the new aspect" do
              post :create, :format => 'js', :aspect => {:name => "new", :person_id => bob.person.id}
              alice.aspects.find_by_name("new").contacts.count.should == 1
            end
          end
    
        context "with invalid params" do
    
          it "does not create an aspect" do
    
            alice.aspects.count.should == 2
    
            post :create, "aspect" => {"name" => ""}
    
            alice.reload.aspects.count.should == 2
    
          it "goes back to the page you came from" do
    
            post :create, "aspect" => {"name" => ""}
    
      describe "#update" do
        before do
    
          @alices_aspect_1 = alice.aspects.create(:name => "Bruisers")
    
        it "doesn't overwrite random attributes" do
    
    Jonne Haß's avatar
    Jonne Haß a validé
          new_user = FactoryGirl.create :user
    
          params[:user_id] = new_user.id
    
          put('update', :id => @alices_aspect_1.id, "aspect" => params)
    
          Aspect.find(@alices_aspect_1.id).user_id.should == alice.id
    
    
        it "should return the name and id of the updated item" do
          params = {"name" => "Bruisers"}
          put('update', :id => @alices_aspect_1.id, "aspect" => params)
          response.body.should == { :id => @alices_aspect_1.id, :name => "Bruisers" }.to_json
        end
    
      describe "#toggle_contact_visibility" do
        it 'sets contacts visible' do
    
          @alices_aspect_1.contacts_visible = false
          @alices_aspect_1.save
    
          xhr :get, :toggle_contact_visibility, :aspect_id => @alices_aspect_1.id
    
          @alices_aspect_1.reload.contacts_visible.should be_true
    
        end
    
        it 'sets contacts hidden' do
    
          @alices_aspect_1.contacts_visible = true
          @alices_aspect_1.save
    
          xhr :get, :toggle_contact_visibility, :aspect_id => @alices_aspect_1.id
    
          @alices_aspect_1.reload.contacts_visible.should be_false