Skip to content
Extraits de code Groupes Projets
admins_controller_spec.rb 3,43 ko
Newer Older
  • Learn to ignore specific revisions
  • danielgrippi's avatar
    danielgrippi a validé
    #   Copyright (c) 2010-2011, Diaspora Inc.  This file is
    
    #   licensed under the Affero General Public License version 3 or later.  See
    #   the COPYRIGHT file.
    
    
    require 'spec_helper'
    
    describe AdminsController do
      before do
    
    Jonne Haß's avatar
    Jonne Haß a validé
        @user = FactoryGirl.create :user
    
      describe '#user_search' do
        context 'admin not signed in' do
          it 'is behind redirect_unless_admin' do
            get :user_search
    
            response.should redirect_to stream_path
    
        context 'admin signed in' do
          before do
    
          it 'succeeds and renders user_search' do
    
            get :user_search
            response.should be_success
    
            response.should render_template(:user_search)
    
          it 'assigns users to an empty array if nothing is searched for' do
    
            get :user_search
            assigns[:users].should == []
          end
    
    
          it 'searches on username' do
    
            get :user_search, :user => {:username => @user.username}
            assigns[:users].should == [@user]
          end
    
    
            get :user_search, :user => {:email => @user.email}
            assigns[:users].should == [@user]
          end
    
    
          it 'searches on invitation_identifier' do
    
            @user.invitation_identifier = "La@foo.com"
            @user.save!
            get :user_search, :user => {:invitation_identifier => @user.invitation_identifier}
            assigns[:users].should == [@user]
          end
    
    
          it 'searches on invitation_token' do
    
            @user.invitation_token = "akjsdhflhasdf"
            @user.save
            get :user_search, :user => {:invitation_token => @user.invitation_token}
            assigns[:users].should == [@user]
          end
    
    
          it 'searches on age < 13 (COPPA)' do
            u_13 = FactoryGirl.create(:user)
            u_13.profile.birthday = 10.years.ago.to_date
            u_13.profile.save!
    
            o_13 = FactoryGirl.create(:user)
            o_13.profile.birthday = 20.years.ago.to_date
            o_13.profile.save!
    
            get :user_search, under13: true
    
            assigns[:users].should include(u_13)
            assigns[:users].should_not include(o_13)
          end
    
      end
    
      describe '#admin_inviter' do
    
        context 'admin not signed in' do
          it 'is behind redirect_unless_admin' do
            get :admin_inviter
    
            response.should redirect_to stream_path
    
        context 'admin signed in' do
          before do
    
          it 'does not die if you do it twice' do
            get :admin_inviter, :identifier => 'bob@moms.com'
            get :admin_inviter, :identifier => 'bob@moms.com'
            response.should be_redirect
          end
    
          it 'invites a new user' do
    
            EmailInviter.should_receive(:new).and_return(double.as_null_object)
    
            get :admin_inviter, :identifier => 'bob@moms.com'
    
            response.should redirect_to user_search_path
            flash.notice.should include("invitation sent")
    
      
      describe '#remove_spammer' do
        it 'it queues a job to disable the given account' do
    
          other_user = FactoryGirl.create :user
          
          User.stub(:find).and_return(other_user)
          delete :remove_spammer, user_id: other_user.id
          other_user.should_receive(:close_account)
        end
      end
    
    
      describe '#stats' do
        before do
    
        end
    
        it 'succeeds and renders stats' do
          get :stats
          response.should be_success
          response.should render_template(:stats)
        end
      end