mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 09:18:07 -05:00
Merge pull request #21 from vittoriocurcio/master
Fix GetContent signature and add GetContent_0
This commit is contained in:
commit
f1ac505839
@ -3848,7 +3848,15 @@ func (a *DefaultApiService) GetCommits_8(pullRequestID int64, localVarOptionals
|
|||||||
@param "blame" (string) if present the blame will be returned for the file as well.
|
@param "blame" (string) if present the blame will be returned for the file as well.
|
||||||
@param "noContent" (string) if present and used with blame only the blame is retrieved instead of the contents.
|
@param "noContent" (string) if present and used with blame only the blame is retrieved instead of the contents.
|
||||||
@return */
|
@return */
|
||||||
func (a *DefaultApiService) GetContent(localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
func (a *DefaultApiService) GetContent(projectKey string, repositorySlug string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
|
return a.getContentWithPath(projectKey, repositorySlug, "", localVarOptionals)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *DefaultApiService) GetContent_0(projectKey string, repositorySlug string, path string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
|
return a.getContentWithPath(projectKey, repositorySlug, path, localVarOptionals)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *DefaultApiService) getContentWithPath(projectKey string, repositorySlug string, path string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
var (
|
var (
|
||||||
localVarHTTPMethod = strings.ToUpper("Get")
|
localVarHTTPMethod = strings.ToUpper("Get")
|
||||||
localVarPostBody interface{}
|
localVarPostBody interface{}
|
||||||
@ -3858,6 +3866,11 @@ func (a *DefaultApiService) GetContent(localVarOptionals map[string]interface{})
|
|||||||
|
|
||||||
// create path and map variables
|
// create path and map variables
|
||||||
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/browse"
|
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/browse"
|
||||||
|
localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1)
|
||||||
|
localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -1)
|
||||||
|
if path != "" {
|
||||||
|
localVarPath = localVarPath + "/" + path
|
||||||
|
}
|
||||||
|
|
||||||
localVarHeaderParams := make(map[string]string)
|
localVarHeaderParams := make(map[string]string)
|
||||||
localVarQueryParams := url.Values{}
|
localVarQueryParams := url.Values{}
|
||||||
|
@ -2099,6 +2099,8 @@ func TestDefaultApiService_GetContent(t *testing.T) {
|
|||||||
client *APIClient
|
client *APIClient
|
||||||
}
|
}
|
||||||
type args struct {
|
type args struct {
|
||||||
|
projectKey string
|
||||||
|
repositorySlug string
|
||||||
localVarOptionals map[string]interface{}
|
localVarOptionals map[string]interface{}
|
||||||
}
|
}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
@ -2115,7 +2117,7 @@ func TestDefaultApiService_GetContent(t *testing.T) {
|
|||||||
a := &DefaultApiService{
|
a := &DefaultApiService{
|
||||||
client: tt.fields.client,
|
client: tt.fields.client,
|
||||||
}
|
}
|
||||||
got, err := a.GetContent(tt.args.localVarOptionals)
|
got, err := a.GetContent(tt.args.projectKey, tt.args.repositorySlug, tt.args.localVarOptionals)
|
||||||
if (err != nil) != tt.wantErr {
|
if (err != nil) != tt.wantErr {
|
||||||
t.Errorf("DefaultApiService.GetContent() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("DefaultApiService.GetContent() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user