BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
259108ad
Commit
259108ad
authored
Apr 13, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix registry for projects with uppercases in path
parent
37ab3891
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
path.rb
lib/container_registry/path.rb
+1
-1
path_spec.rb
spec/lib/container_registry/path_spec.rb
+19
-3
No files found.
lib/container_registry/path.rb
View file @
259108ad
...
...
@@ -15,7 +15,7 @@ module ContainerRegistry
LEVELS_SUPPORTED
=
3
def
initialize
(
path
)
@path
=
path
@path
=
path
.
downcase
end
def
valid?
...
...
spec/lib/container_registry/path_spec.rb
View file @
259108ad
...
...
@@ -33,10 +33,20 @@ describe ContainerRegistry::Path do
end
describe
'#to_s'
do
let
(
:path
)
{
'some/image'
}
context
'when path does not have uppercase characters'
do
let
(
:path
)
{
'some/image'
}
it
'return a string with a repository path'
do
expect
(
subject
.
to_s
).
to
eq
path
it
'return a string with a repository path'
do
expect
(
subject
.
to_s
).
to
eq
'some/image'
end
end
context
'when path has uppercase characters'
do
let
(
:path
)
{
'SoMe/ImAgE'
}
it
'return a string with a repository path'
do
expect
(
subject
.
to_s
).
to
eq
'some/image'
end
end
end
...
...
@@ -70,6 +80,12 @@ describe ContainerRegistry::Path do
it
{
is_expected
.
to
be_valid
}
end
context
'when path contains uppercase letters'
do
let
(
:path
)
{
'Some/Registry'
}
it
{
is_expected
.
to
be_valid
}
end
end
describe
'#has_repository?'
do
...
...
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