mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 08:36:06 +10:00
Upon tagging a repository, an error due to a missing migration occurred:
```
PG::Error: ERROR: column "taggings_count" does not exist
LINE 1: UPDATE "tags" SET "taggings_count" = COALESCE("taggings_coun...
```
Ran `rake acts_as_taggable_on_engine:install:migrations`, removed the first
migration that created the `tags` and `taggings` table, and added the rest.
Closes #1512
Closes https://github.com/gitlabhq/gitlabhq/issues/6867
Closes https://github.com/gitlabhq/gitlabhq/issues/9194
106 lines
2.6 KiB
Ruby
106 lines
2.6 KiB
Ruby
class Spinach::Features::Project < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedProject
|
|
include SharedPaths
|
|
|
|
step 'change project settings' do
|
|
fill_in 'project_name_edit', with: 'NewName'
|
|
uncheck 'project_issues_enabled'
|
|
end
|
|
|
|
step 'I save project' do
|
|
click_button 'Save changes'
|
|
end
|
|
|
|
step 'I should see project with new settings' do
|
|
find_field('project_name').value.should == 'NewName'
|
|
end
|
|
|
|
step 'change project path settings' do
|
|
fill_in 'project_path', with: 'new-path'
|
|
click_button 'Rename'
|
|
end
|
|
|
|
step 'I should see project with new path settings' do
|
|
project.path.should == 'new-path'
|
|
end
|
|
|
|
step 'I change the project avatar' do
|
|
attach_file(
|
|
:project_avatar,
|
|
File.join(Rails.root, 'public', 'gitlab_logo.png')
|
|
)
|
|
click_button 'Save changes'
|
|
@project.reload
|
|
end
|
|
|
|
step 'I should see new project avatar' do
|
|
@project.avatar.should be_instance_of AvatarUploader
|
|
url = @project.avatar.url
|
|
url.should == "/uploads/project/avatar/#{ @project.id }/gitlab_logo.png"
|
|
end
|
|
|
|
step 'I should see the "Remove avatar" button' do
|
|
page.should have_link('Remove avatar')
|
|
end
|
|
|
|
step 'I have an project avatar' do
|
|
attach_file(
|
|
:project_avatar,
|
|
File.join(Rails.root, 'public', 'gitlab_logo.png')
|
|
)
|
|
click_button 'Save changes'
|
|
@project.reload
|
|
end
|
|
|
|
step 'I remove my project avatar' do
|
|
click_link 'Remove avatar'
|
|
@project.reload
|
|
end
|
|
|
|
step 'I should see the default project avatar' do
|
|
@project.avatar?.should be_false
|
|
end
|
|
|
|
step 'I should not see the "Remove avatar" button' do
|
|
page.should_not have_link('Remove avatar')
|
|
end
|
|
|
|
step 'I should see project "Shop" version' do
|
|
within '.project-side' do
|
|
page.should have_content 'Version: 6.7.0.pre'
|
|
end
|
|
end
|
|
|
|
step 'change project default branch' do
|
|
select 'fix', from: 'project_default_branch'
|
|
click_button 'Save changes'
|
|
end
|
|
|
|
step 'I should see project default branch changed' do
|
|
find(:css, 'select#project_default_branch').value.should == 'fix'
|
|
end
|
|
|
|
step 'I select project "Forum" README tab' do
|
|
click_link 'Readme'
|
|
end
|
|
|
|
step 'I should see project "Forum" README' do
|
|
page.should have_link 'README.md'
|
|
page.should have_content 'Sample repo for testing gitlab features'
|
|
end
|
|
|
|
step 'I should see project "Shop" README' do
|
|
page.should have_link 'README.md'
|
|
page.should have_content 'testme'
|
|
end
|
|
|
|
step 'I add project tags' do
|
|
fill_in 'Tags', with: 'tag1, tag2'
|
|
end
|
|
|
|
step 'I should see project tags' do
|
|
expect(find_field('Tags').value).to eq 'tag1, tag2'
|
|
end
|
|
end
|