Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
8e525d78
Unverified
Commit
8e525d78
authored
Feb 22, 2019
by
Sander van Harmelen
Committed by
GitHub
Feb 22, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #569 from sindrepm/feature/get-project-attr
Add GetProjectOptions to support additional attributes
parents
c99c64bb
25a9f1a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
12 deletions
+57
-12
projects.go
projects.go
+11
-2
projects_test.go
projects_test.go
+46
-10
No files found.
projects.go
View file @
8e525d78
...
...
@@ -320,19 +320,28 @@ func (s *ProjectsService) GetProjectLanguages(pid interface{}, options ...Option
return
p
,
resp
,
err
}
// GetProjectOptions represents the available GetProject() options.
//
// GitLab API docs: https://docs.gitlab.com/ee/api/projects.html#get-single-project
type
GetProjectOptions
struct
{
Statistics
*
bool
`url:"statistics,omitempty" json:"statistics,omitempty"`
License
*
bool
`url:"license,omitempty" json:"license,omitempty"`
WithCustomAttributes
*
bool
`url:"with_custom_attributes,omitempty" json:"with_custom_attributes,omitempty"`
}
// GetProject gets a specific project, identified by project ID or
// NAMESPACE/PROJECT_NAME, which is owned by the authenticated user.
//
// GitLab API docs:
// https://docs.gitlab.com/ce/api/projects.html#get-single-project
func
(
s
*
ProjectsService
)
GetProject
(
pid
interface
{},
options
...
OptionFunc
)
(
*
Project
,
*
Response
,
error
)
{
func
(
s
*
ProjectsService
)
GetProject
(
pid
interface
{},
opt
*
GetProjectOptions
,
opt
ions
...
OptionFunc
)
(
*
Project
,
*
Response
,
error
)
{
project
,
err
:=
parseID
(
pid
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
u
:=
fmt
.
Sprintf
(
"projects/%s"
,
url
.
QueryEscape
(
project
))
req
,
err
:=
s
.
client
.
NewRequest
(
"GET"
,
u
,
nil
,
options
)
req
,
err
:=
s
.
client
.
NewRequest
(
"GET"
,
u
,
opt
,
options
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
...
...
projects_test.go
View file @
8e525d78
...
...
@@ -194,7 +194,7 @@ func TestGetProjectByID(t *testing.T) {
})
want
:=
&
Project
{
ID
:
1
}
project
,
_
,
err
:=
client
.
Projects
.
GetProject
(
1
)
project
,
_
,
err
:=
client
.
Projects
.
GetProject
(
1
,
nil
)
if
err
!=
nil
{
t
.
Fatalf
(
"Projects.GetProject returns an error: %v"
,
err
)
}
...
...
@@ -215,7 +215,43 @@ func TestGetProjectByName(t *testing.T) {
})
want
:=
&
Project
{
ID
:
1
}
project
,
_
,
err
:=
client
.
Projects
.
GetProject
(
"namespace/name"
)
project
,
_
,
err
:=
client
.
Projects
.
GetProject
(
"namespace/name"
,
nil
)
if
err
!=
nil
{
t
.
Fatalf
(
"Projects.GetProject returns an error: %v"
,
err
)
}
if
!
reflect
.
DeepEqual
(
want
,
project
)
{
t
.
Errorf
(
"Projects.GetProject returned %+v, want %+v"
,
project
,
want
)
}
}
func
TestGetProjectWithOptions
(
t
*
testing
.
T
)
{
mux
,
server
,
client
:=
setup
()
defer
teardown
(
server
)
mux
.
HandleFunc
(
"/api/v4/projects/1"
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
testMethod
(
t
,
r
,
"GET"
)
fmt
.
Fprint
(
w
,
`{
"id":1,
"statistics": {
"commit_count": 37,
"storage_size": 1038090,
"repository_size": 1038090,
"lfs_objects_size": 0,
"job_artifacts_size": 0
}}`
)
})
want
:=
&
Project
{
ID
:
1
,
Statistics
:
&
ProjectStatistics
{
CommitCount
:
37
,
StorageStatistics
:
StorageStatistics
{
StorageSize
:
1038090
,
RepositorySize
:
1038090
,
LfsObjectsSize
:
0
,
JobArtifactsSize
:
0
,
},
}}
project
,
_
,
err
:=
client
.
Projects
.
GetProject
(
1
,
&
GetProjectOptions
{
Statistics
:
Bool
(
true
)})
if
err
!=
nil
{
t
.
Fatalf
(
"Projects.GetProject returns an error: %v"
,
err
)
}
...
...
@@ -373,10 +409,10 @@ func TestGetApprovalConfiguration(t *testing.T) {
}
want
:=
&
ProjectApprovals
{
Approvers
:
[]
*
MergeRequestApproverUser
{},
ApproverGroups
:
[]
*
MergeRequestApproverGroup
{},
ApprovalsBeforeMerge
:
3
,
ResetApprovalsOnPush
:
false
,
Approvers
:
[]
*
MergeRequestApproverUser
{},
ApproverGroups
:
[]
*
MergeRequestApproverGroup
{},
ApprovalsBeforeMerge
:
3
,
ResetApprovalsOnPush
:
false
,
DisableOverridingApproversPerMergeRequest
:
false
,
}
...
...
@@ -411,10 +447,10 @@ func TestChangeApprovalConfiguration(t *testing.T) {
}
want
:=
&
ProjectApprovals
{
Approvers
:
[]
*
MergeRequestApproverUser
{},
ApproverGroups
:
[]
*
MergeRequestApproverGroup
{},
ApprovalsBeforeMerge
:
3
,
ResetApprovalsOnPush
:
false
,
Approvers
:
[]
*
MergeRequestApproverUser
{},
ApproverGroups
:
[]
*
MergeRequestApproverGroup
{},
ApprovalsBeforeMerge
:
3
,
ResetApprovalsOnPush
:
false
,
DisableOverridingApproversPerMergeRequest
:
false
,
}
...
...
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