|
| 1 | +// |
| 2 | +// Copyright 2023, James Hong |
| 3 | +// |
| 4 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +// you may not use this file except in compliance with the License. |
| 6 | +// You may obtain a copy of the License at |
| 7 | +// |
| 8 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +// |
| 10 | +// Unless required by applicable law or agreed to in writing, software |
| 11 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +// See the License for the specific language governing permissions and |
| 14 | +// limitations under the License. |
| 15 | +// |
| 16 | + |
| 17 | +package gitlab |
| 18 | + |
| 19 | +import ( |
| 20 | + "fmt" |
| 21 | + "net/http" |
| 22 | + "reflect" |
| 23 | + "testing" |
| 24 | + "time" |
| 25 | +) |
| 26 | + |
| 27 | +func TestCreateServiceAccount(t *testing.T) { |
| 28 | + mux, client := setup(t) |
| 29 | + |
| 30 | + mux.HandleFunc("/api/v4/groups/1/service_accounts", func(w http.ResponseWriter, r *http.Request) { |
| 31 | + testMethod(t, r, http.MethodPost) |
| 32 | + fmt.Fprint(w, ` |
| 33 | +{ |
| 34 | + "id": 57, |
| 35 | + "username": "service_account_group_345_6018816a18e515214e0c34c2b33523fc", |
| 36 | + "name": "Service account user" |
| 37 | +}`) |
| 38 | + }) |
| 39 | + |
| 40 | + sa, _, err := client.Groups.CreateServiceAccount(1) |
| 41 | + if err != nil { |
| 42 | + t.Error(err) |
| 43 | + } |
| 44 | + |
| 45 | + want := &GroupServiceAccount{ |
| 46 | + ID: 57, |
| 47 | + UserName: "service_account_group_345_6018816a18e515214e0c34c2b33523fc", |
| 48 | + Name: "Service account user", |
| 49 | + } |
| 50 | + |
| 51 | + if !reflect.DeepEqual(sa, want) { |
| 52 | + t.Errorf("CreateServiceAccount returned \ngot:\n%v\nwant:\n%v", Stringify(sa), Stringify(want)) |
| 53 | + } |
| 54 | +} |
| 55 | + |
| 56 | +func TestAddServiceAccountsPATServiceAccount(t *testing.T) { |
| 57 | + mux, client := setup(t) |
| 58 | + |
| 59 | + mux.HandleFunc("/api/v4/groups/1/service_accounts/57/personal_access_tokens", func(w http.ResponseWriter, r *http.Request) { |
| 60 | + testMethod(t, r, http.MethodPost) |
| 61 | + fmt.Fprint(w, ` |
| 62 | +{ |
| 63 | + "id":6, |
| 64 | + "name":"service_accounts_token", |
| 65 | + "revoked":false, |
| 66 | + "created_at":"2023-06-13T07:47:13.000Z", |
| 67 | + "scopes":["api"], |
| 68 | + "user_id":71, |
| 69 | + "last_used_at":null, |
| 70 | + "active":true, |
| 71 | + "expires_at":"2024-06-12", |
| 72 | + "token":"random_token" |
| 73 | +}`) |
| 74 | + }) |
| 75 | + datePointer := time.Date(2023, 06, 13, 07, 47, 13, 0, time.UTC) |
| 76 | + saPAT, _, err := client.Groups.AddServiceAccountsPAT(1, 57, &AddServiceAccountsPATOptions{Scopes: []string{"api"}, Name: "service_accounts_token"}) |
| 77 | + if err != nil { |
| 78 | + t.Error(err) |
| 79 | + } |
| 80 | + |
| 81 | + want := &GroupServiceAccountPAT{ |
| 82 | + ID: 6, |
| 83 | + Name: "service_accounts_token", |
| 84 | + Revoked: false, |
| 85 | + CreatedAt: &datePointer, |
| 86 | + Scopes: []string{"api"}, |
| 87 | + UserID: 71, |
| 88 | + LastUsedAt: nil, |
| 89 | + Active: true, |
| 90 | + ExpiresAt: "2024-06-12", |
| 91 | + Token: "random_token", |
| 92 | + } |
| 93 | + |
| 94 | + if !reflect.DeepEqual(saPAT, want) { |
| 95 | + t.Errorf("AddServiceAccountsPAT returned \ngot:\n%v\nwant:\n%v", Stringify(saPAT), Stringify(want)) |
| 96 | + } |
| 97 | +} |
| 98 | + |
| 99 | +func TestRotateServiceAccountsPATServiceAccount(t *testing.T) { |
| 100 | + mux, client := setup(t) |
| 101 | + |
| 102 | + mux.HandleFunc("/api/v4/groups/1/service_accounts/57/personal_access_tokens/6/rotate", func(w http.ResponseWriter, r *http.Request) { |
| 103 | + testMethod(t, r, http.MethodPost) |
| 104 | + fmt.Fprint(w, ` |
| 105 | +{ |
| 106 | + "id":7, |
| 107 | + "name":"service_accounts_token", |
| 108 | + "revoked":false, |
| 109 | + "created_at":"2023-06-13T07:54:49.000Z", |
| 110 | + "scopes":["api"], |
| 111 | + "user_id":71, |
| 112 | + "last_used_at":null, |
| 113 | + "active":true, |
| 114 | + "expires_at":"2025-06-20", |
| 115 | + "token":"random_token_2" |
| 116 | +}`) |
| 117 | + }) |
| 118 | + datePointer := time.Date(2023, 06, 13, 07, 54, 49, 0, time.UTC) |
| 119 | + saPAT, _, err := client.Groups.RotateServiceAccountsPAT(1, 57, 6) |
| 120 | + if err != nil { |
| 121 | + t.Error(err) |
| 122 | + } |
| 123 | + |
| 124 | + want := &GroupServiceAccountPAT{ |
| 125 | + ID: 7, |
| 126 | + Name: "service_accounts_token", |
| 127 | + Revoked: false, |
| 128 | + CreatedAt: &datePointer, |
| 129 | + Scopes: []string{"api"}, |
| 130 | + UserID: 71, |
| 131 | + LastUsedAt: nil, |
| 132 | + Active: true, |
| 133 | + ExpiresAt: "2025-06-20", |
| 134 | + Token: "random_token_2", |
| 135 | + } |
| 136 | + |
| 137 | + if !reflect.DeepEqual(saPAT, want) { |
| 138 | + t.Errorf("RotateServiceAccountsPAT returned \ngot:\n%v\nwant:\n%v", Stringify(saPAT), Stringify(want)) |
| 139 | + } |
| 140 | +} |
0 commit comments