Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml_spec.rb « sessions « admin « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57255748988e371ffa7391526f54e1dc4b723589 (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
# frozen_string_literal: true

require 'spec_helper'

describe 'admin/sessions/new.html.haml' do
  context 'admin has password set' do
    before do
      allow(view).to receive(:password_authentication_enabled_for_web?).and_return(true)
    end

    it "shows enter password form" do
      render

      expect(rendered).to have_css('#login-pane.active')
      expect(rendered).to have_selector('input[name="password"]')
    end
  end

  context 'admin has no password set' do
    before do
      allow(view).to receive(:password_authentication_enabled_for_web?).and_return(false)
    end

    it "warns authentication not possible" do
      render

      expect(rendered).not_to have_css('#login-pane')
      expect(rendered).to have_content 'No authentication methods configured'
    end
  end
end