summaryrefslogtreecommitdiff
path: root/features/steps/project/commits/tags.rb
blob: e6f8faf50fdec75a764adaca1e26317ba9e8cec4 (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
73
74
75
76
77
78
79
80
81
82
class Spinach::Features::ProjectCommitsTags < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedProject
  include SharedPaths

  step 'I should see "Shop" all tags list' do
    expect(page).to have_content "Tags"
    expect(page).to have_content "v1.0.0"
  end

  step 'I click new tag link' do
    click_link 'New tag'
  end

  step 'I submit new tag form' do
    fill_in 'tag_name', with: 'v7.0'
    fill_in 'ref', with: 'master'
    click_button 'Create tag'
  end

  step 'I submit new tag form with invalid name' do
    fill_in 'tag_name', with: 'v 1.0'
    fill_in 'ref', with: 'master'
    click_button 'Create tag'
  end

  step 'I submit new tag form with invalid reference' do
    fill_in 'tag_name', with: 'foo'
    fill_in 'ref', with: 'foo'
    click_button 'Create tag'
  end

  step 'I submit new tag form with tag that already exists' do
    fill_in 'tag_name', with: 'v1.0.0'
    fill_in 'ref', with: 'master'
    click_button 'Create tag'
  end

  step 'I should see new tag created' do
    expect(page).to have_content 'v7.0'
  end

  step 'I should see new an error that tag is invalid' do
    expect(page).to have_content 'Tag name invalid'
  end

  step 'I should see new an error that tag ref is invalid' do
    expect(page).to have_content 'Invalid reference name'
  end

  step 'I should see new an error that tag already exists' do
    expect(page).to have_content 'Tag already exists'
  end

  step "I delete tag 'v1.1.0'" do
    page.within '.tags' do
      first('.btn-remove').click
      sleep 0.05
    end
  end

  step "I should not see tag 'v1.1.0'" do
    page.within '.tags' do
      expect(page.all(visible: true)).not_to have_content 'v1.1.0'
    end
  end

  step 'I delete all tags' do
    page.within '.tags' do
      page.all('.btn-remove').each do |remove|
        remove.click
        sleep 0.05
      end
    end
  end

  step 'I should see tags info message' do
    page.within '.tags' do
      expect(page).to have_content 'Repository has no tags yet.'
    end
  end
end