summaryrefslogtreecommitdiff
path: root/features/steps/project/project_find_file.rb
blob: b8da5e6435d5ed3e1db50ffc6039b8535267675d (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
class Spinach::Features::ProjectFindFile < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedProject
  include SharedProjectTab

  step 'I press "t"' do
    find('body').native.send_key('t')
  end

  step 'I click Find File button' do
    click_link 'Find File'
  end

  step 'I should see "find file" page' do
    ensure_active_main_tab('Repository')
    expect(page).to have_selector('.file-finder-holder', count: 1)
  end

  step 'I fill in Find by path with "git"' do
    ensure_active_main_tab('Repository')
    expect(page).to have_selector('.file-finder-holder', count: 1)
  end

  step 'I fill in file find with "git"' do
    find_file "git"
  end

  step 'I fill in file find with "change"' do
    find_file "change"
  end

  step 'I fill in file find with "asdfghjklqwertyuizxcvbnm"' do
    find_file "asdfghjklqwertyuizxcvbnm"
  end

  step 'I should see "VERSION" in files' do
    expect(page).to have_content("VERSION")
  end

  step 'I should not see "VERSION" in files' do
    expect(page).not_to have_content("VERSION")
  end

  step 'I should see "CHANGELOG" in files' do
    expect(page).to have_content("CHANGELOG")
  end

  step 'I should not see "CHANGELOG" in files' do
    expect(page).not_to have_content("CHANGELOG")
  end

  step 'I should see ".gitmodules" in files' do
    expect(page).to have_content(".gitmodules")
  end

  step 'I should not see ".gitmodules" in files' do
    expect(page).not_to have_content(".gitmodules")
  end

  step 'I should see ".gitignore" in files' do
    expect(page).to have_content(".gitignore")
  end

  step 'I should not see ".gitignore" in files' do
    expect(page).not_to have_content(".gitignore")
  end

  def find_file(text)
    fill_in 'file_find', with: text
  end
end