How to use performRefresh method of api Package

Best Gauge code snippet using api.performRefresh

refresh_test.go

Source:refresh_test.go Github

copy

Full Screen

...52 if err != nil {53 t.Fatalf("admin API client error: %v", err)54 }55 r := newRefresher(cl, time.Hour, 30*time.Second, 2, "some-id")56 res, err := r.performRefresh(context.Background(), cn, RSAKey)57 if err != nil {58 t.Fatalf("performRefresh unexpectedly failed with error: %v", err)59 }60 if got := res.instanceIPAddr; wantIP != got {61 t.Fatalf("metadata IP mismatch, want = %v, got = %v", wantIP, got)62 }63 if got := res.expiry; wantExpiry != got {64 t.Fatalf("expiry mismatch, want = %v, got = %v", wantExpiry, got)65 }66}67func TestRefreshFailsFast(t *testing.T) {68 wantInstURI := "/projects/my-project/locations/my-region/clusters/my-cluster/instances/my-instance"69 cn, err := parseInstURI(wantInstURI)70 if err != nil {71 t.Fatalf("parseConnName(%s)failed : %v", cn, err)72 }73 inst := mock.NewFakeInstance(74 "my-project", "my-region", "my-cluster", "my-instance",75 )76 mc, url, cleanup := mock.HTTPClient(77 mock.InstanceGetSuccess(inst, 1),78 mock.CreateEphemeralSuccess(inst, 1),79 )80 defer func() {81 if err := cleanup(); err != nil {82 t.Fatalf("%v", err)83 }84 }()85 cl, err := alloydbapi.NewClient(86 context.Background(),87 option.WithHTTPClient(mc),88 option.WithEndpoint(url),89 )90 if err != nil {91 t.Fatalf("admin API client error: %v", err)92 }93 r := newRefresher(cl, time.Hour, 30*time.Second, 1, "some-id")94 _, err = r.performRefresh(context.Background(), cn, RSAKey)95 if err != nil {96 t.Fatalf("expected no error, got = %v", err)97 }98 ctx, cancel := context.WithCancel(context.Background())99 cancel()100 // context is canceled101 _, err = r.performRefresh(ctx, cn, RSAKey)102 if !errors.Is(err, context.Canceled) {103 t.Fatalf("expected context.Canceled error, got = %v", err)104 }105 // force the rate limiter to throttle with a timed out context106 ctx, _ = context.WithTimeout(context.Background(), time.Millisecond)107 _, err = r.performRefresh(ctx, cn, RSAKey)108 var wantErr *errtype.DialError109 if !errors.As(err, &wantErr) {110 t.Fatalf("when refresh is throttled, want = %T, got = %v", wantErr, err)111 }112}...

Full Screen

Full Screen

access_token.go

Source:access_token.go Github

copy

Full Screen

1package auth2import (3 "bytes"4 "encoding/json"5 "errors"6 "fmt"7 "log"8 "net/http"9 "net/url"10)11// AccessToken is the Oauth access token used for authorization of requests12type AccessToken struct {13 Token string14 Kind string15 ExpiresIn int6416 Refresh string17 Scope string18 CreatedAt int6419}20// SignRequest adds the appropriate Authorization header to the request.21func (a *AccessToken) SignRequest(req *http.Request) {22 req.Header.Set("Authorization", fmt.Sprintf("%s %s", a.Kind, a.Token))23}24// PerformRefreshInput contains the required information from the refresh token25type PerformRefreshInput struct {26 // The Oauth client id from api.planningcenteronline.com27 ClientID string `validate:"required,client_token"`28 // The Oauth client secret from api.planningcenteronline.com29 ClientSecret string `validate:"required,client_token"`30 logger *log.Logger31}32// PerformRefresh refreshes the access token and returns a new one.33func (a *AccessToken) PerformRefresh(input *PerformRefreshInput) (*AccessToken, error) {34 if input.logger == nil {35 input.logger = newDefaultLogger()36 }37 err := Validator().Struct(input)38 if err != nil {39 return nil, err40 }41 input.logger.Printf("Performing token refresh")42 body, err := json.Marshal(map[string]string{43 "grant_type": "refresh_token",44 "client_id": input.ClientID,45 "client_secret": input.ClientSecret,46 "refresh_token": a.Refresh,47 })48 if err != nil {49 return nil, err50 }51 return sendAccessTokenRequest(body, input.logger)52}53type inboundAccessToken struct {54 Token string `json:"access_token"`55 Kind string `json:"token_type"`56 ExpiresIn int64 `json:"expires_in"`57 Refresh string `json:"refresh_token"`58 Scope string `json:"scope"`59 CreatedAt int64 `json:"created_at"`60}61// AccessTokenFromCallbackInput is the required parameters for a call to AccessTokenFromCallback62type AccessTokenFromCallbackInput struct {63 CallbackURL *url.URL `validate:"required"`64 ClientID string `validate:"required"`65 ClientSecret string `validate:"required"`66 RedirectURL *url.URL `validate:"required"`67 logger *log.Logger68}69// AccessTokenFromCallback returns a new access token using the callback URL70func AccessTokenFromCallback(input *AccessTokenFromCallbackInput) (*AccessToken, error) {71 if input.logger == nil {72 input.logger = newDefaultLogger()73 }74 err := Validator().Struct(input)75 if err != nil {76 return nil, err77 }78 if input.CallbackURL.Query().Get("code") == "" {79 return nil, errors.New("callback url missing 'code' parameter")80 }81 input.logger.Printf("Fetching access token")82 body, err := json.Marshal(map[string]string{83 "grant_type": "authorization_code",84 "code": input.CallbackURL.Query().Get("code"),85 "client_id": input.ClientID,86 "client_secret": input.ClientSecret,87 "redirect_uri": input.RedirectURL.String(),88 })89 if err != nil {90 return nil, err91 }92 return sendAccessTokenRequest(body, input.logger)93}94func sendAccessTokenRequest(body []byte, logger *log.Logger) (*AccessToken, error) {95 uri := apiURL("/oauth/token")96 req, err := http.NewRequest("POST", uri.String(), bytes.NewBuffer(body))97 if err != nil {98 return nil, err99 }100 req.Header.Set("Content-Type", "application/json")101 body, err = sendRequest(req, logger)102 if err != nil {103 return nil, err104 }105 it := inboundAccessToken{}106 err = json.Unmarshal(body, &it)107 if err != nil {108 return nil, err109 }110 token := AccessToken(it)111 return &token, nil112}...

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1func performRefresh() {2}3func performRefresh() {4}5func performRefresh() {6}7func performRefresh() {8}9func performRefresh() {10}11func performRefresh() {12}13func performRefresh() {14}15func performRefresh() {16}17func performRefresh() {18}19func performRefresh() {20}21func performRefresh() {22}23func performRefresh() {24}25func performRefresh() {26}27func performRefresh() {28}

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1var api = new api();2api.performRefresh();3var api = new api();4api.performRefresh();5var api = new api();6api.performRefresh();7var api = new api();8api.performRefresh();9var api = new api();10api.performRefresh();11var api = new api();12api.performRefresh();13var api = new api();14api.performRefresh();15var api = new api();16api.performRefresh();17var api = new api();18api.performRefresh();19var api = new api();20api.performRefresh();21var api = new api();22api.performRefresh();23var api = new api();24api.performRefresh();25var api = new api();26api.performRefresh();

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1func main() {2 api := NewAPI()3 api.performRefresh()4 fmt.Println(api.token)5}6func main() {7 api := NewAPI()8 api.performRefresh()9 fmt.Println(api.token)10}11func main() {12 api := NewAPI()13 api.performRefresh()14 fmt.Println(api.token)15}16func main() {17 api := NewAPI()18 api.performRefresh()19 fmt.Println(api.token)20}21func main() {22 api := NewAPI()23 api.performRefresh()24 fmt.Println(api.token)25}26func main() {27 api := NewAPI()28 api.performRefresh()29 fmt.Println(api.token)30}31func main() {32 api := NewAPI()33 api.performRefresh()34 fmt.Println(api.token)35}36func main() {37 api := NewAPI()38 api.performRefresh()39 fmt.Println(api.token)40}41func main() {42 api := NewAPI()43 api.performRefresh()44 fmt.Println(api.token)45}46func main() {47 api := NewAPI()48 api.performRefresh()49 fmt.Println(api.token)50}51func main() {52 api := NewAPI()53 api.performRefresh()54 fmt.Println(api.token)55}56func main() {57 api := NewAPI()58 api.performRefresh()59 fmt.Println(api.token)60}61func main() {62 api := NewAPI()63 api.performRefresh()

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 fmt.Println("Hello, playground")4 api.PerformRefresh()5}6import (7func main() {8 fmt.Println("Hello, playground")9 api.PerformRefresh()10}11import (12func PerformRefresh() {13 fmt.Println("Hello, playground")14}15import (16func PerformRefresh() {17 fmt.Println("Hello, playground")18}

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 fmt.Println("Hello World!")4 api := myapi.Api{}5 api.PerformRefresh()6}7import (8func main() {9 fmt.Println("Hello World!")10 api := myapi.Api{}11 api.PerformRefresh()12}13import (14func main() {15 fmt.Println("Hello World!")16 api := myapi.Api{}17 api.PerformRefresh()18}19import (20func main() {21 fmt.Println("Hello World!")22 api := myapi.Api{}23 api.PerformRefresh()24}25import (26func main() {27 fmt.Println("Hello World!")28 api := myapi.Api{}29 api.PerformRefresh()30}31import (32func main() {33 fmt.Println("Hello World!")34 api := myapi.Api{}35 api.PerformRefresh()36}37import (38func main() {39 fmt.Println("Hello World!")40 api := myapi.Api{}41 api.PerformRefresh()42}43import (44func main() {45 fmt.Println("Hello World!")46 api := myapi.Api{}47 api.PerformRefresh()48}49import (50func main() {51 fmt.Println("Hello World!")52 api := myapi.Api{}53 api.PerformRefresh()54}55import (56func main() {57 fmt.Println("

Full Screen

Full Screen

performRefresh

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 bookshelf.PerformRefresh()4 fmt.Println("Hello, playground")5}6import (7func main() {8 bookshelf.NewAPI()9 fmt.Println("Hello, playground")10}11getting-started/bookshelf/api.go:34: cannot use &API literal (type *API) as type API in return argument:12getting-started/bookshelf/api.go:34: cannot use &API literal (type *API) as type API in return argument:13import (

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful