Skip to content
Extraits de code Groupes Projets
users_controller_spec.rb 10,5 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
    
    #   the COPYRIGHT file.
    
    require 'spec_helper'
    
    
    describe UsersController, :type => :controller do
    
        @user = alice
        sign_in :user, @user
    
        allow(@controller).to receive(:current_user).and_return(@user)
    
      describe '#export_profile' do
        it 'queues an export job' do
          expect(@user).to receive :queue_export
    
          post :export_profile
    
          expect(request.flash[:notice]).to eql(I18n.t('users.edit.export_in_progress'))
          expect(response).to redirect_to(edit_user_path)
        end
      end
    
      describe "#download_profile" do
        it "downloads a user's export file" do
          @user.perform_export!
          get :download_profile
    
          expect(response).to redirect_to(@user.export.url)
    
      describe '#export_photos' do
    
        it 'queues an export photos job' do
          expect(@user).to receive :queue_export_photos
    
          post :export_photos
    
          expect(request.flash[:notice]).to eql(I18n.t('users.edit.export_photos_in_progress'))
          expect(response).to redirect_to(edit_user_path)
        end
      end
    
      describe '#download_photos' do
        it "redirects to user's photos zip file"  do
          @user.perform_export_photos!
          get :download_photos
          expect(response).to redirect_to(@user.exported_photos_file.url)
    
      describe 'user_photo' do
        it 'should return the url of the users profile photo' do
          get :user_photo, :username => @user.username
    
          expect(response).to redirect_to(@user.profile.image_url)
    
        end
    
        it 'should 404 if no user is found' do
          get :user_photo, :username => 'none'
    
          expect(response).not_to be_success
    
        it 'renders xml if atom is requested' do
    
    Jonne Haß's avatar
    Jonne Haß a validé
          sm = FactoryGirl.create(:status_message, :public => true, :author => @user.person)
    
          get :public, :username => @user.username, :format => :atom
    
          expect(response.body).to include(sm.raw_message)
    
        it 'renders xml if atom is requested with clickalbe urls' do
    
    Jonne Haß's avatar
    Jonne Haß a validé
          sm = FactoryGirl.create(:status_message, :public => true, :author => @user.person)
    
          @user.person.posts.each do |p|
            p.text = "Goto http://diasporaproject.org/ now!"
            p.save
          end
          get :public, :username => @user.username, :format => :atom
    
          expect(response.body).to include('a href')
    
        it 'includes reshares in the atom feed' do
          reshare = FactoryGirl.create(:reshare, :author => @user.person)
          get :public, :username => @user.username, :format => :atom
    
          expect(response.body).to include reshare.root.raw_message
    
        it 'do not show reshares in atom feed if origin post is deleted' do
          post = FactoryGirl.create(:status_message, :public => true);
          reshare = FactoryGirl.create(:reshare, :root => post, :author => @user.person)
          post.delete
          get :public, :username => @user.username, :format => :atom
    
          expect(response.code).to eq('200')
    
        it 'redirects to a profile page if html is requested' do
          get :public, :username => @user.username
    
          expect(response).to be_redirect
    
        it 'redirects to a profile page if mobile is requested' do
          get :public, :username => @user.username, :format => :mobile
    
          expect(response).to be_redirect
    
        before do
          @params  = { :id => @user.id,
    
                      :user => { :diaspora_handle => "notreal@stuff.com" } }
    
        it "doesn't overwrite random attributes" do
    
          }.not_to change(@user, :diaspora_handle)
    
        it 'renders the user edit page' do
    
          expect(response).to render_template('edit')
    
    Raphael Sofaer's avatar
    Raphael Sofaer a validé
        it 'responds with a 204 on a js request' do
    
          put :update, @params.merge(:format => :js)
    
          expect(response.status).to eq(204)
    
        describe 'password updates' do
          let(:password_params) do
            {:current_password => 'bluepin7',
             :password => "foobaz",
             :password_confirmation => "foobaz"}
          end
    
          let(:params) do
            {id: @user.id, user: password_params, change_password: 'Change Password'}
    
          it "uses devise's update with password" do
    
            expect(@user).to receive(:update_with_password).with(hash_including(password_params))
    
            allow(@controller).to receive(:current_user).and_return(@user)
    
          it 'allow the user to change his language' do
            old_language = 'en'
    
            @user.language = old_language
            @user.save
            put(:update, :id => @user.id, :user =>
    
                { :language => "fr"}
               )
    
            expect(@user.language).not_to eq(old_language)
    
        describe "color_theme" do
          it "allow the user to change his color theme" do
            old_color_theme = "original"
            @user.color_theme = old_color_theme
            @user.save
    
            put(:update, id: @user.id, user: {color_theme: "dark_green"})
    
            @user.reload
            expect(@user.color_theme).not_to eq(old_color_theme)
          end
        end
    
    
    movilla's avatar
    movilla a validé
          it 'disallow the user to change his new (unconfirmed) mail when it is the same as the old' do
            @user.email = "my@newemail.com"
            put(:update, :id => @user.id, :user => { :email => "my@newemail.com"})
            @user.reload
    
            expect(@user.unconfirmed_email).to eql(nil)
    
    movilla's avatar
    movilla a validé
          end
    
    
          it 'allow the user to change his (unconfirmed) email' do
            put(:update, :id => @user.id, :user => { :email => "my@newemail.com"})
            @user.reload
    
            expect(@user.unconfirmed_email).to eql("my@newemail.com")
    
          it 'informs the user about success' do
            put(:update, :id => @user.id, :user => { :email => "my@newemail.com"})
    
            expect(request.flash[:notice]).to eql(I18n.t('users.update.unconfirmed_email_changed'))
            expect(request.flash[:error]).to be_blank
    
          it 'informs the user about failure' do
            put(:update, :id => @user.id, :user => { :email => "my@newemailcom"})
    
            expect(request.flash[:error]).to eql(I18n.t('users.update.unconfirmed_email_not_changed'))
            expect(request.flash[:notice]).to be_blank
    
          end
    
          it 'allow the user to change his (unconfirmed) email to blank (= abort confirmation)' do
            put(:update, :id => @user.id, :user => { :email => ""})
            @user.reload
    
            expect(@user.unconfirmed_email).to eql(nil)
    
          it 'sends out activation email on success' do
    
            expect(Workers::Mail::ConfirmEmail).to receive(:perform_async).with(@user.id).once
    
            put(:update, :id => @user.id, :user => { :email => "my@newemail.com"})
          end
    
        describe 'email settings' do
          it 'lets the user turn off mail' do
            par = {:id => @user.id, :user => {:email_preferences => {'mentioned' => 'true'}}}
    
            }.to change(@user.user_preferences, :count).by(1)
    
          end
    
          it 'lets the user get mail again' do
            @user.user_preferences.create(:email_type => 'mentioned')
            par = {:id => @user.id, :user => {:email_preferences => {'mentioned' => 'false'}}}
    
            }.to change(@user.user_preferences, :count).by(-1)
    
    
        describe 'getting started' do
          it 'can be reenabled' do
            put :update, user: {getting_started: true}
    
            expect(@user.reload.getting_started?).to be true
    
      describe '#privacy_settings' do
        it "returns a 200" do
          get 'privacy_settings'
    
          expect(response.status).to eq(200)
    
      describe '#edit' do
        it "returns a 200" do
    
          get 'edit', :id => @user.id
    
          expect(response.status).to eq(200)
    
    maxwell's avatar
    maxwell a validé
    
    
        it 'displays community spotlight checkbox' do
          AppConfig.settings.community_spotlight.enable = true
          get 'edit', :id => @user.id
          expect(response.body).to include('input name="user[show_community_spotlight_in_stream]"')
        end
    
        it 'hides community spotlight checkbox' do
          AppConfig.settings.community_spotlight = false
          get 'edit', :id => @user.id
          expect(response.body).not_to include('input name="user[show_community_spotlight_in_stream]"')
        end
    
    
    maxwell's avatar
    maxwell a validé
        it 'set @email_pref to false when there is a user pref' do
          @user.user_preferences.create(:email_type => 'mentioned')
          get 'edit', :id => @user.id
    
          expect(assigns[:email_prefs]['mentioned']).to be false
    
    maxwell's avatar
    maxwell a validé
        end
    
        it 'does allow token auth' do
    
          sign_out :user
          bob.reset_authentication_token!
          get :edit, :auth_token => bob.authentication_token
    
          expect(response.status).to eq(200)
    
        it 'does nothing if the password does not match' do
    
          expect(Workers::DeleteAccount).not_to receive(:perform_async)
    
    Sarah Mei's avatar
    Sarah Mei a validé
          delete :destroy, :user => { :current_password => "stuff" }
    
          expect(alice).to receive(:close_account!)
    
    Sarah Mei's avatar
    Sarah Mei a validé
          delete :destroy, :user => { :current_password => "bluepin7" }
    
          expect(Workers::DeleteAccount).to receive(:perform_async).with(anything)
    
    Sarah Mei's avatar
    Sarah Mei a validé
          delete :destroy, :user => { :current_password => "bluepin7" }
    
      describe '#confirm_email' do
        before do
          @user.update_attribute(:unconfirmed_email, 'my@newemail.com')
        end
    
        it 'redirects to to the user edit page' do
          get 'confirm_email', :token => @user.confirm_email_token
    
          expect(response).to redirect_to edit_user_path
    
        end
    
        it 'confirms email' do
          get 'confirm_email', :token => @user.confirm_email_token
          @user.reload
    
          expect(@user.email).to eql('my@newemail.com')
          expect(request.flash[:notice]).to eql(I18n.t('users.confirm_email.email_confirmed', :email => 'my@newemail.com'))
          expect(request.flash[:error]).to be_blank
    
        it 'does NOT confirm email with wrong token' do
          get 'confirm_email', :token => @user.confirm_email_token.reverse
          @user.reload
    
          expect(@user.email).not_to eql('my@newemail.com')
          expect(request.flash[:error]).to eql(I18n.t('users.confirm_email.email_not_confirmed'))
          expect(request.flash[:notice]).to be_blank
    
    
      describe 'getting_started' do
        it 'does not fail miserably' do
    
          expect(response).to be_success
    
          get :getting_started, :format => :mobile
    
          expect(response).to be_success