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

matchers.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 953b535698d6a70055e1e7549c62e60cb994ed2b (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
37
38
39
40
41
42
43
44
45
46
RSpec::Matchers.define :be_valid_commit do
  match do |actual|
    actual != nil
    actual.id == ValidCommit::ID
    actual.message == ValidCommit::MESSAGE
    actual.author.name == ValidCommit::AUTHOR_FULL_NAME
  end
end

RSpec::Matchers.define :be_allowed_for do |user|
  match do |url|
    include UrlAccess
    url_allowed?(user, url)
  end
end

RSpec::Matchers.define :be_denied_for do |user|
  match do |url|
    include UrlAccess
    url_denied?(user, url)
  end 
end

module UrlAccess 
  def url_allowed?(user, url)
    emulate_user(user)
    visit url
    result = (current_path == url)
  end

  def url_denied?(user, url)
    emulate_user(user)
    visit url
    result = (current_path != url)
  end

  def emulate_user(user)
    user = case user
           when :user then Factory(:user)
           when :visitor then nil
           when :admin then Factory(:admin)
           else user
           end
    login_with(user) if user
  end
end