Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit 01aa9b5

Browse files
authored
Merge pull request #2071 from ipsavitsky/ipsavitsky/create-service-account-user-parameters
Add options to CreateServiceAccountUser
2 parents 35c2003 + c3da1c2 commit 01aa9b5

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"id": 999,
3-
"username": "service_account_94e556c44d40d5a710ca59e3a0f40a3d",
4-
"name": "Service account user",
3+
"username": "serviceaccount",
4+
"name": "Test Service Account",
55
"state": "active",
66
"locked": false,
77
"avatar_url": "http://localhost:3000/uploads/user/avatar/999/cd8.jpeg",
8-
"web_url": "http://localhost:3000/service_account_94e556c44d40d5a710ca59e3a0f40a3d"
8+
"web_url": "http://localhost:3000/serviceaccount"
99
}

users.go

+11-2
Original file line numberDiff line numberDiff line change
@@ -1553,12 +1553,21 @@ func (s *UsersService) CreateUserRunner(opts *CreateUserRunnerOptions, options .
15531553
return r, resp, nil
15541554
}
15551555

1556+
1557+
// CreateServiceAccountUserOptions represents the available CreateServiceAccountUser() options.
1558+
//
1559+
// GitLab API docs: https://docs.gitlab.com/ee/api/user_service_accounts.html#create-a-service-account-user
1560+
type CreateServiceAccountUserOptions struct {
1561+
Name *string `url:"name,omitempty" json:"name,omitempty"`
1562+
Username *string `url:"username,omitempty" json:"username,omitempty"`
1563+
}
1564+
15561565
// CreateServiceAccountUser creates a new service account user.
15571566
//
15581567
// GitLab API docs:
15591568
// https://docs.gitlab.com/ee/api/users.html#create-service-account-user
1560-
func (s *UsersService) CreateServiceAccountUser(options ...RequestOptionFunc) (*User, *Response, error) {
1561-
req, err := s.client.NewRequest(http.MethodPost, "service_accounts", nil, options)
1569+
func (s *UsersService) CreateServiceAccountUser(opts *CreateServiceAccountUserOptions, options ...RequestOptionFunc) (*User, *Response, error) {
1570+
req, err := s.client.NewRequest(http.MethodPost, "service_accounts", opts, options)
15621571
if err != nil {
15631572
return nil, nil, err
15641573
}

users_test.go

+13-4
Original file line numberDiff line numberDiff line change
@@ -727,20 +727,29 @@ func TestCreateServiceAccountUser(t *testing.T) {
727727

728728
mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
729729
testMethod(t, r, http.MethodPost)
730+
if !strings.Contains(r.Header.Get("Content-Type"), "application/json") {
731+
t.Fatalf("Users.CreateServiceAccountUser request content-type %+v want application/json;", r.Header.Get("Content-Type"))
732+
}
733+
if r.ContentLength == -1 {
734+
t.Fatalf("Users.CreateServiceAccountUser request content-length is -1")
735+
}
730736
mustWriteHTTPResponse(t, w, "testdata/create_service_account_user.json")
731737
})
732738

733-
user, _, err := client.Users.CreateServiceAccountUser()
739+
user, _, err := client.Users.CreateServiceAccountUser(&CreateServiceAccountUserOptions{
740+
Name: Ptr("Test Service Account"),
741+
Username: Ptr("serviceaccount"),
742+
})
734743
require.NoError(t, err)
735744

736745
want := &User{
737746
ID: 999,
738-
Username: "service_account_94e556c44d40d5a710ca59e3a0f40a3d",
739-
Name: "Service account user",
747+
Username: "serviceaccount",
748+
Name: "Test Service Account",
740749
State: "active",
741750
Locked: false,
742751
AvatarURL: "http://localhost:3000/uploads/user/avatar/999/cd8.jpeg",
743-
WebURL: "http://localhost:3000/service_account_94e556c44d40d5a710ca59e3a0f40a3d",
752+
WebURL: "http://localhost:3000/serviceaccount",
744753
}
745754
require.Equal(t, want, user)
746755
}

0 commit comments

Comments
 (0)