terms_controller_spec.rb 2.3 KB
Newer Older
B
Bob Van Landuyt 已提交
1 2 3
require 'spec_helper'

describe Users::TermsController do
4
  include TermsHelper
B
Bob Van Landuyt 已提交
5
  let(:user) { create(:user) }
6
  let(:term) { create(:term) }
B
Bob Van Landuyt 已提交
7 8 9 10 11 12 13 14 15 16 17 18

  before do
    sign_in user
  end

  describe 'GET #index' do
    it 'redirects when no terms exist' do
      get :index

      expect(response).to have_gitlab_http_status(:redirect)
    end

19 20 21 22 23
    context 'when terms exist' do
      before do
        stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
        term
      end
B
Bob Van Landuyt 已提交
24

25 26 27 28 29 30 31 32 33 34 35 36 37
      it 'shows terms when they exist' do
        get :index

        expect(response).to have_gitlab_http_status(:success)
      end

      it 'shows a message when the user already accepted the terms' do
        accept_terms(user)

        get :index

        expect(controller).to set_flash.now[:notice].to(/already accepted/)
      end
B
Bob Van Landuyt 已提交
38 39
    end
  end
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

  describe 'POST #accept' do
    it 'saves that the user accepted the terms' do
      post :accept, id: term.id

      agreement = user.term_agreements.find_by(term: term)

      expect(agreement.accepted).to eq(true)
    end

    it 'redirects to a path when specified' do
      post :accept, id: term.id, redirect: groups_path

      expect(response).to redirect_to(groups_path)
    end
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78

    it 'redirects to the referer when no redirect specified' do
      request.env["HTTP_REFERER"] = groups_url

      post :accept, id: term.id

      expect(response).to redirect_to(groups_path)
    end

    context 'redirecting to another domain' do
      it 'is prevented when passing a redirect param' do
        post :accept, id: term.id, redirect: '//example.com/random/path'

        expect(response).to redirect_to(root_path)
      end

      it 'is prevented when redirecting to the referer' do
        request.env["HTTP_REFERER"] = 'http://example.com/and/a/path'

        post :accept, id: term.id

        expect(response).to redirect_to(root_path)
      end
    end
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
  end

  describe 'POST #decline' do
    it 'stores that the user declined the terms' do
      post :decline, id: term.id

      agreement = user.term_agreements.find_by(term: term)

      expect(agreement.accepted).to eq(false)
    end

    it 'signs out the user' do
      post :decline, id: term.id

      expect(response).to redirect_to(root_path)
      expect(assigns(:current_user)).to be_nil
    end
  end
B
Bob Van Landuyt 已提交
97
end