Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f4e31b82
Commit
f4e31b82
authored
Oct 28, 2016
by
Felipe Artur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix project features default values
parent
957308af
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
70 additions
and
43 deletions
+70
-43
CHANGELOG.md
CHANGELOG.md
+1
-0
app/models/concerns/project_features_compatibility.rb
app/models/concerns/project_features_compatibility.rb
+1
-1
app/models/project.rb
app/models/project.rb
+5
-0
lib/api/helpers.rb
lib/api/helpers.rb
+2
-8
lib/gitlab/utils.rb
lib/gitlab/utils.rb
+8
-0
spec/lib/gitlab/utils_spec.rb
spec/lib/gitlab/utils_spec.rb
+35
-0
spec/models/concerns/project_features_compatibility_spec.rb
spec/models/concerns/project_features_compatibility_spec.rb
+14
-0
spec/models/project_spec.rb
spec/models/project_spec.rb
+3
-3
spec/requests/api/api_helpers_spec.rb
spec/requests/api/api_helpers_spec.rb
+0
-30
spec/services/projects/create_service_spec.rb
spec/services/projects/create_service_spec.rb
+1
-1
No files found.
CHANGELOG.md
View file @
f4e31b82
...
@@ -46,6 +46,7 @@ Please view this file on the master branch, on stable branches it's out of date.
...
@@ -46,6 +46,7 @@ Please view this file on the master branch, on stable branches it's out of date.
## 8.13.3
## 8.13.3
-
Reduce the overhead to calculate number of open/closed issues and merge requests within the group or project
-
Reduce the overhead to calculate number of open/closed issues and merge requests within the group or project
-
Fix project features default values
## 8.13.2 (2016-10-31)
## 8.13.2 (2016-10-31)
...
...
app/models/concerns/project_features_compatibility.rb
View file @
f4e31b82
...
@@ -31,7 +31,7 @@ module ProjectFeaturesCompatibility
...
@@ -31,7 +31,7 @@ module ProjectFeaturesCompatibility
def
write_feature_attribute
(
field
,
value
)
def
write_feature_attribute
(
field
,
value
)
build_project_feature
unless
project_feature
build_project_feature
unless
project_feature
access_level
=
value
==
"true"
?
ProjectFeature
::
ENABLED
:
ProjectFeature
::
DISABLED
access_level
=
Gitlab
::
Utils
.
to_boolean
(
value
)
?
ProjectFeature
::
ENABLED
:
ProjectFeature
::
DISABLED
project_feature
.
update_attribute
(
field
,
access_level
)
project_feature
.
update_attribute
(
field
,
access_level
)
end
end
end
end
app/models/project.rb
View file @
f4e31b82
...
@@ -30,6 +30,11 @@ class Project < ActiveRecord::Base
...
@@ -30,6 +30,11 @@ class Project < ActiveRecord::Base
default_value_for
:container_registry_enabled
,
gitlab_config_features
.
container_registry
default_value_for
:container_registry_enabled
,
gitlab_config_features
.
container_registry
default_value_for
(
:repository_storage
)
{
current_application_settings
.
repository_storage
}
default_value_for
(
:repository_storage
)
{
current_application_settings
.
repository_storage
}
default_value_for
(
:shared_runners_enabled
)
{
current_application_settings
.
shared_runners_enabled
}
default_value_for
(
:shared_runners_enabled
)
{
current_application_settings
.
shared_runners_enabled
}
default_value_for
:issues_enabled
,
gitlab_config_features
.
issues
default_value_for
:merge_requests_enabled
,
gitlab_config_features
.
merge_requests
default_value_for
:builds_enabled
,
gitlab_config_features
.
builds
default_value_for
:wiki_enabled
,
gitlab_config_features
.
wiki
default_value_for
:snippets_enabled
,
gitlab_config_features
.
snippets
after_create
:ensure_dir_exist
after_create
:ensure_dir_exist
after_create
:create_project_feature
,
unless: :project_feature
after_create
:create_project_feature
,
unless: :project_feature
...
...
lib/api/helpers.rb
View file @
f4e31b82
module
API
module
API
module
Helpers
module
Helpers
include
Gitlab
::
Utils
PRIVATE_TOKEN_HEADER
=
"HTTP_PRIVATE_TOKEN"
PRIVATE_TOKEN_HEADER
=
"HTTP_PRIVATE_TOKEN"
PRIVATE_TOKEN_PARAM
=
:private_token
PRIVATE_TOKEN_PARAM
=
:private_token
SUDO_HEADER
=
"HTTP_SUDO"
SUDO_HEADER
=
"HTTP_SUDO"
SUDO_PARAM
=
:sudo
SUDO_PARAM
=
:sudo
def
to_boolean
(
value
)
return
value
if
[
true
,
false
].
include?
(
value
)
return
true
if
value
=~
/^(true|t|yes|y|1|on)$/i
return
false
if
value
=~
/^(false|f|no|n|0|off)$/i
nil
end
def
private_token
def
private_token
params
[
PRIVATE_TOKEN_PARAM
]
||
env
[
PRIVATE_TOKEN_HEADER
]
params
[
PRIVATE_TOKEN_PARAM
]
||
env
[
PRIVATE_TOKEN_HEADER
]
end
end
...
...
lib/gitlab/utils.rb
View file @
f4e31b82
...
@@ -13,5 +13,13 @@ module Gitlab
...
@@ -13,5 +13,13 @@ module Gitlab
def
force_utf8
(
str
)
def
force_utf8
(
str
)
str
.
force_encoding
(
Encoding
::
UTF_8
)
str
.
force_encoding
(
Encoding
::
UTF_8
)
end
end
def
to_boolean
(
value
)
return
value
if
[
true
,
false
].
include?
(
value
)
return
true
if
value
=~
/^(true|t|yes|y|1|on)$/i
return
false
if
value
=~
/^(false|f|no|n|0|off)$/i
nil
end
end
end
end
end
spec/lib/gitlab/utils_spec.rb
0 → 100644
View file @
f4e31b82
describe
Gitlab
::
Utils
,
lib:
true
do
def
to_boolean
(
value
)
described_class
.
to_boolean
(
value
)
end
describe
'.to_boolean'
do
it
'accepts booleans'
do
expect
(
to_boolean
(
true
)).
to
be
(
true
)
expect
(
to_boolean
(
false
)).
to
be
(
false
)
end
it
'converts a valid string to a boolean'
do
expect
(
to_boolean
(
true
)).
to
be
(
true
)
expect
(
to_boolean
(
'true'
)).
to
be
(
true
)
expect
(
to_boolean
(
'YeS'
)).
to
be
(
true
)
expect
(
to_boolean
(
't'
)).
to
be
(
true
)
expect
(
to_boolean
(
'1'
)).
to
be
(
true
)
expect
(
to_boolean
(
'ON'
)).
to
be
(
true
)
expect
(
to_boolean
(
'FaLse'
)).
to
be
(
false
)
expect
(
to_boolean
(
'F'
)).
to
be
(
false
)
expect
(
to_boolean
(
'NO'
)).
to
be
(
false
)
expect
(
to_boolean
(
'n'
)).
to
be
(
false
)
expect
(
to_boolean
(
'0'
)).
to
be
(
false
)
expect
(
to_boolean
(
'oFF'
)).
to
be
(
false
)
end
it
'converts an invalid string to nil'
do
expect
(
to_boolean
(
'fals'
)).
to
be_nil
expect
(
to_boolean
(
'yeah'
)).
to
be_nil
expect
(
to_boolean
(
''
)).
to
be_nil
expect
(
to_boolean
(
nil
)).
to
be_nil
end
end
end
spec/models/concerns/project_features_compatibility_spec.rb
View file @
f4e31b82
...
@@ -22,4 +22,18 @@ describe ProjectFeaturesCompatibility do
...
@@ -22,4 +22,18 @@ describe ProjectFeaturesCompatibility do
expect
(
project
.
project_feature
.
public_send
(
"
#{
feature
}
_access_level"
)).
to
eq
(
ProjectFeature
::
DISABLED
)
expect
(
project
.
project_feature
.
public_send
(
"
#{
feature
}
_access_level"
)).
to
eq
(
ProjectFeature
::
DISABLED
)
end
end
end
end
it
"converts fields from true to ProjectFeature::ENABLED"
do
features
.
each
do
|
feature
|
project
.
update_attribute
(
"
#{
feature
}
_enabled"
.
to_sym
,
true
)
expect
(
project
.
project_feature
.
public_send
(
"
#{
feature
}
_access_level"
)).
to
eq
(
ProjectFeature
::
ENABLED
)
end
end
it
"converts fields from false to ProjectFeature::DISABLED"
do
features
.
each
do
|
feature
|
project
.
update_attribute
(
"
#{
feature
}
_enabled"
.
to_sym
,
false
)
expect
(
project
.
project_feature
.
public_send
(
"
#{
feature
}
_access_level"
)).
to
eq
(
ProjectFeature
::
DISABLED
)
end
end
end
end
spec/models/project_spec.rb
View file @
f4e31b82
...
@@ -67,11 +67,11 @@ describe Project, models: true do
...
@@ -67,11 +67,11 @@ describe Project, models: true do
it
{
is_expected
.
to
have_many
(
:notification_settings
).
dependent
(
:destroy
)
}
it
{
is_expected
.
to
have_many
(
:notification_settings
).
dependent
(
:destroy
)
}
it
{
is_expected
.
to
have_many
(
:forks
).
through
(
:forked_project_links
)
}
it
{
is_expected
.
to
have_many
(
:forks
).
through
(
:forked_project_links
)
}
context
'after
create
'
do
context
'after
initialized
'
do
it
"
creates project
feature"
do
it
"
has a project_
feature"
do
project
=
FactoryGirl
.
build
(
:project
)
project
=
FactoryGirl
.
build
(
:project
)
expect
{
project
.
save
}.
to
change
{
project
.
project_feature
.
present?
}.
from
(
false
).
to
(
true
)
expect
(
project
.
project_feature
.
present?
).
to
be_present
end
end
end
end
...
...
spec/requests/api/api_helpers_spec.rb
View file @
f4e31b82
...
@@ -265,36 +265,6 @@ describe API::Helpers, api: true do
...
@@ -265,36 +265,6 @@ describe API::Helpers, api: true do
end
end
end
end
describe
'.to_boolean'
do
it
'accepts booleans'
do
expect
(
to_boolean
(
true
)).
to
be
(
true
)
expect
(
to_boolean
(
false
)).
to
be
(
false
)
end
it
'converts a valid string to a boolean'
do
expect
(
to_boolean
(
true
)).
to
be
(
true
)
expect
(
to_boolean
(
'true'
)).
to
be
(
true
)
expect
(
to_boolean
(
'YeS'
)).
to
be
(
true
)
expect
(
to_boolean
(
't'
)).
to
be
(
true
)
expect
(
to_boolean
(
'1'
)).
to
be
(
true
)
expect
(
to_boolean
(
'ON'
)).
to
be
(
true
)
expect
(
to_boolean
(
'FaLse'
)).
to
be
(
false
)
expect
(
to_boolean
(
'F'
)).
to
be
(
false
)
expect
(
to_boolean
(
'NO'
)).
to
be
(
false
)
expect
(
to_boolean
(
'n'
)).
to
be
(
false
)
expect
(
to_boolean
(
'0'
)).
to
be
(
false
)
expect
(
to_boolean
(
'oFF'
)).
to
be
(
false
)
end
it
'converts an invalid string to nil'
do
expect
(
to_boolean
(
'fals'
)).
to
be_nil
expect
(
to_boolean
(
'yeah'
)).
to
be_nil
expect
(
to_boolean
(
''
)).
to
be_nil
expect
(
to_boolean
(
nil
)).
to
be_nil
end
end
describe
'.handle_api_exception'
do
describe
'.handle_api_exception'
do
before
do
before
do
allow_any_instance_of
(
self
.
class
).
to
receive
(
:sentry_enabled?
).
and_return
(
true
)
allow_any_instance_of
(
self
.
class
).
to
receive
(
:sentry_enabled?
).
and_return
(
true
)
...
...
spec/services/projects/create_service_spec.rb
View file @
f4e31b82
...
@@ -69,7 +69,7 @@ describe Projects::CreateService, services: true do
...
@@ -69,7 +69,7 @@ describe Projects::CreateService, services: true do
context
'wiki_enabled false does not create wiki repository directory'
do
context
'wiki_enabled false does not create wiki repository directory'
do
before
do
before
do
@opts
.
merge!
(
{
project_feature_attributes:
{
wiki_access_level:
ProjectFeature
::
DISABLED
}
}
)
@opts
.
merge!
(
wiki_enabled:
false
)
@project
=
create_project
(
@user
,
@opts
)
@project
=
create_project
(
@user
,
@opts
)
@path
=
ProjectWiki
.
new
(
@project
,
@user
).
send
(
:path_to_repo
)
@path
=
ProjectWiki
.
new
(
@project
,
@user
).
send
(
:path_to_repo
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment