2015-03-12 17:51:41 -04:00
require 'spec_helper'
describe GroupsHelper do
2017-06-20 17:35:55 -04:00
include ApplicationHelper
2017-10-02 09:44:58 -04:00
let ( :asset_host ) { 'http://assets' }
2017-10-02 07:35:01 -04:00
2015-03-12 17:51:41 -04:00
describe 'group_icon' do
2015-06-22 14:00:17 -04:00
avatar_file_path = File . join ( Rails . root , 'spec' , 'fixtures' , 'banana_sample.gif' )
2015-03-12 17:51:41 -04:00
2016-07-25 14:16:19 -04:00
it 'returns an url for the avatar' do
2015-03-12 17:51:41 -04:00
group = create ( :group )
2016-12-18 20:35:07 -05:00
group . avatar = fixture_file_upload ( avatar_file_path )
2015-03-12 17:51:41 -04:00
group . save!
2017-10-02 07:35:01 -04:00
avatar_url = " /uploads/-/system/group/avatar/ #{ group . id } /banana_sample.gif "
2017-10-04 07:58:32 -04:00
expect ( helper . group_icon ( group ) . to_s )
2017-10-02 07:35:01 -04:00
. to eq " <img data-src= \" #{ avatar_url } \" class= \" lazy \" src= \" #{ LazyImageTagHelper . placeholder_image } \" /> "
2017-10-02 09:44:58 -04:00
allow ( ActionController :: Base ) . to receive ( :asset_host ) . and_return ( asset_host )
avatar_url = " #{ asset_host } /uploads/-/system/group/avatar/ #{ group . id } /banana_sample.gif "
2017-10-02 07:35:01 -04:00
2017-10-04 07:58:32 -04:00
expect ( helper . group_icon ( group ) . to_s )
2017-10-02 07:35:01 -04:00
. to eq " <img data-src= \" #{ avatar_url } \" class= \" lazy \" src= \" #{ LazyImageTagHelper . placeholder_image } \" /> "
end
end
describe 'group_icon_url' do
avatar_file_path = File . join ( Rails . root , 'spec' , 'fixtures' , 'banana_sample.gif' )
it 'returns an url for the avatar' do
group = create ( :group )
group . avatar = fixture_file_upload ( avatar_file_path )
group . save!
expect ( group_icon_url ( group . path ) . to_s )
. to match ( " /uploads/-/system/group/avatar/ #{ group . id } /banana_sample.gif " )
end
it 'returns an CDN url for the avatar' do
2017-10-02 09:44:58 -04:00
allow ( ActionController :: Base ) . to receive ( :asset_host ) . and_return ( asset_host )
2017-10-02 07:35:01 -04:00
group = create ( :group )
group . avatar = fixture_file_upload ( avatar_file_path )
group . save!
expect ( group_icon_url ( group . path ) . to_s )
2017-10-02 09:44:58 -04:00
. to match ( " #{ asset_host } /uploads/-/system/group/avatar/ #{ group . id } /banana_sample.gif " )
2017-10-02 07:35:01 -04:00
end
it 'returns an based url for the avatar if private' do
2017-10-02 09:44:58 -04:00
allow ( ActionController :: Base ) . to receive ( :asset_host ) . and_return ( asset_host )
2017-10-03 06:21:02 -04:00
group = create ( :group , :private )
2017-10-02 07:35:01 -04:00
group . avatar = fixture_file_upload ( avatar_file_path )
group . save!
expect ( group_icon_url ( group . path ) . to_s )
2017-07-17 09:46:59 -04:00
. to match ( " /uploads/-/system/group/avatar/ #{ group . id } /banana_sample.gif " )
2015-03-12 17:51:41 -04:00
end
2016-07-25 14:16:19 -04:00
it 'gives default avatar_icon when no avatar is present' do
2015-03-12 17:51:41 -04:00
group = create ( :group )
group . save!
2017-10-02 07:35:01 -04:00
expect ( group_icon_url ( group . path ) ) . to match_asset_path ( 'group_avatar.png' )
2015-03-12 17:51:41 -04:00
end
end
2016-09-06 12:48:00 -04:00
describe 'group_lfs_status' do
let ( :group ) { create ( :group ) }
2017-08-02 15:55:11 -04:00
let! ( :project ) { create ( :project , namespace_id : group . id ) }
2016-09-06 12:48:00 -04:00
before do
allow ( Gitlab . config . lfs ) . to receive ( :enabled ) . and_return ( true )
end
context 'only one project in group' do
before do
group . update_attribute ( :lfs_enabled , true )
end
it 'returns all projects as enabled' do
expect ( group_lfs_status ( group ) ) . to include ( 'Enabled for all projects' )
end
it 'returns all projects as disabled' do
project . update_attribute ( :lfs_enabled , false )
expect ( group_lfs_status ( group ) ) . to include ( 'Enabled for 0 out of 1 project' )
end
end
context 'more than one project in group' do
before do
2017-08-02 15:55:11 -04:00
create ( :project , namespace_id : group . id )
2016-09-06 12:48:00 -04:00
end
context 'LFS enabled in group' do
before do
group . update_attribute ( :lfs_enabled , true )
end
it 'returns both projects as enabled' do
expect ( group_lfs_status ( group ) ) . to include ( 'Enabled for all projects' )
end
it 'returns only one as enabled' do
project . update_attribute ( :lfs_enabled , false )
expect ( group_lfs_status ( group ) ) . to include ( 'Enabled for 1 out of 2 projects' )
end
end
context 'LFS disabled in group' do
before do
group . update_attribute ( :lfs_enabled , false )
end
it 'returns both projects as disabled' do
expect ( group_lfs_status ( group ) ) . to include ( 'Disabled for all projects' )
end
it 'returns only one as disabled' do
project . update_attribute ( :lfs_enabled , true )
expect ( group_lfs_status ( group ) ) . to include ( 'Disabled for 1 out of 2 projects' )
end
end
end
end
2017-06-20 17:35:55 -04:00
2017-06-26 11:32:22 -04:00
describe 'group_title' , :nested_groups do
2017-06-20 17:35:55 -04:00
let ( :group ) { create ( :group ) }
let ( :nested_group ) { create ( :group , parent : group ) }
let ( :deep_nested_group ) { create ( :group , parent : nested_group ) }
let! ( :very_deep_nested_group ) { create ( :group , parent : deep_nested_group ) }
it 'outputs the groups in the correct order' do
2017-09-04 14:23:57 -04:00
expect ( helper . group_title ( very_deep_nested_group ) )
. to match ( / <li style="text-indent: 16px;"><a.*> #{ deep_nested_group . name } .*< \/ li>.*<a.*> #{ very_deep_nested_group . name } < \/ a> /m )
2017-06-20 17:35:55 -04:00
end
end
2017-09-05 20:02:11 -04:00
# rubocop:disable Layout/SpaceBeforeComma
describe '#share_with_group_lock_help_text' , :nested_groups do
let! ( :root_group ) { create ( :group ) }
let! ( :subgroup ) { create ( :group , parent : root_group ) }
let! ( :sub_subgroup ) { create ( :group , parent : subgroup ) }
let ( :root_owner ) { create ( :user ) }
let ( :sub_owner ) { create ( :user ) }
let ( :sub_sub_owner ) { create ( :user ) }
let ( :possible_help_texts ) do
{
default_help : " This setting will be applied to all subgroups unless overridden by a group owner " ,
2017-09-06 02:49:57 -04:00
ancestor_locked_but_you_can_override : / This setting is applied on <a .+>.+< \/ a> \ . You can override the setting or .+ / ,
2017-09-06 14:31:45 -04:00
ancestor_locked_so_ask_the_owner : / This setting is applied on .+ \ . To share projects in this group with another group, ask the owner to override the setting or remove the share with group lock from .+ / ,
2017-09-06 02:49:57 -04:00
ancestor_locked_and_has_been_overridden : / This setting is applied on .+ and has been overridden on this subgroup /
2017-09-05 20:02:11 -04:00
}
end
let ( :possible_linked_ancestors ) do
{
root_group : root_group ,
subgroup : subgroup
}
end
let ( :users ) do
{
root_owner : root_owner ,
sub_owner : sub_owner ,
sub_sub_owner : sub_sub_owner
}
end
subject { helper . share_with_group_lock_help_text ( sub_subgroup ) }
2017-09-06 14:31:45 -04:00
where ( :root_share_with_group_locked , :subgroup_share_with_group_locked , :sub_subgroup_share_with_group_locked , :current_user , :help_text , :linked_ancestor ) do
2017-09-05 20:02:11 -04:00
[
[ false , false , false , :root_owner , :default_help , nil ] ,
[ false , false , false , :sub_owner , :default_help , nil ] ,
[ false , false , false , :sub_sub_owner , :default_help , nil ] ,
[ false , false , true , :root_owner , :default_help , nil ] ,
[ false , false , true , :sub_owner , :default_help , nil ] ,
[ false , false , true , :sub_sub_owner , :default_help , nil ] ,
[ false , true , false , :root_owner , :ancestor_locked_and_has_been_overridden , :subgroup ] ,
[ false , true , false , :sub_owner , :ancestor_locked_and_has_been_overridden , :subgroup ] ,
[ false , true , false , :sub_sub_owner , :ancestor_locked_and_has_been_overridden , :subgroup ] ,
[ false , true , true , :root_owner , :ancestor_locked_but_you_can_override , :subgroup ] ,
[ false , true , true , :sub_owner , :ancestor_locked_but_you_can_override , :subgroup ] ,
[ false , true , true , :sub_sub_owner , :ancestor_locked_so_ask_the_owner , :subgroup ] ,
[ true , false , false , :root_owner , :default_help , nil ] ,
[ true , false , false , :sub_owner , :default_help , nil ] ,
[ true , false , false , :sub_sub_owner , :default_help , nil ] ,
[ true , false , true , :root_owner , :default_help , nil ] ,
[ true , false , true , :sub_owner , :default_help , nil ] ,
[ true , false , true , :sub_sub_owner , :default_help , nil ] ,
[ true , true , false , :root_owner , :ancestor_locked_and_has_been_overridden , :root_group ] ,
[ true , true , false , :sub_owner , :ancestor_locked_and_has_been_overridden , :root_group ] ,
[ true , true , false , :sub_sub_owner , :ancestor_locked_and_has_been_overridden , :root_group ] ,
[ true , true , true , :root_owner , :ancestor_locked_but_you_can_override , :root_group ] ,
[ true , true , true , :sub_owner , :ancestor_locked_so_ask_the_owner , :root_group ] ,
[ true , true , true , :sub_sub_owner , :ancestor_locked_so_ask_the_owner , :root_group ]
]
end
with_them do
before do
root_group . add_owner ( root_owner )
subgroup . add_owner ( sub_owner )
sub_subgroup . add_owner ( sub_sub_owner )
2017-09-06 14:31:45 -04:00
root_group . update_column ( :share_with_group_lock , true ) if root_share_with_group_locked
subgroup . update_column ( :share_with_group_lock , true ) if subgroup_share_with_group_locked
sub_subgroup . update_column ( :share_with_group_lock , true ) if sub_subgroup_share_with_group_locked
2017-09-05 20:02:11 -04:00
allow ( helper ) . to receive ( :current_user ) . and_return ( users [ current_user ] )
allow ( helper ) . to receive ( :can? )
. with ( users [ current_user ] , :change_share_with_group_lock , subgroup )
. and_return ( Ability . allowed? ( users [ current_user ] , :change_share_with_group_lock , subgroup ) )
2017-09-06 02:49:57 -04:00
ancestor = possible_linked_ancestors [ linked_ancestor ]
if ancestor
allow ( helper ) . to receive ( :can? )
. with ( users [ current_user ] , :read_group , ancestor )
. and_return ( Ability . allowed? ( users [ current_user ] , :read_group , ancestor ) )
allow ( helper ) . to receive ( :can? )
. with ( users [ current_user ] , :admin_group , ancestor )
. and_return ( Ability . allowed? ( users [ current_user ] , :admin_group , ancestor ) )
end
2017-09-05 20:02:11 -04:00
end
it 'has the correct help text with correct ancestor links' do
expect ( subject ) . to match ( possible_help_texts [ help_text ] )
expect ( subject ) . to match ( possible_linked_ancestors [ linked_ancestor ] . name ) unless help_text == :default_help
end
end
end
2015-03-12 17:51:41 -04:00
end