summaryrefslogtreecommitdiff
path: root/spec/requests/api/settings_spec.rb
blob: 6629a5a65e2b1967589bbdd99d030cc4c84cac7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'spec_helper'

describe API::API, 'Settings', api: true  do
  include ApiHelpers

  let(:user) { create(:user) }
  let(:admin) { create(:admin) }


  describe "GET /application/settings" do
    it "should return application settings" do
      get api("/application/settings", admin)
      expect(response).to have_http_status(200)
      expect(json_response).to be_an Hash
      expect(json_response['default_projects_limit']).to eq(42)
      expect(json_response['signin_enabled']).to be_truthy
      expect(json_response['repository_storage']).to eq('default')
    end
  end

  describe "PUT /application/settings" do
    before do
      storages = { 'custom' => 'tmp/tests/custom_repositories' }
      allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
    end

    it "should update application settings" do
      put api("/application/settings", admin),
        default_projects_limit: 3, signin_enabled: false, repository_storage: 'custom'
      expect(response).to have_http_status(200)
      expect(json_response['default_projects_limit']).to eq(3)
      expect(json_response['signin_enabled']).to be_falsey
      expect(json_response['repository_storage']).to eq('custom')
    end
  end
end