-
-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from thales-e-security/master
Add filter support for Jira issues
- Loading branch information
Showing
5 changed files
with
203 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package jira | ||
|
||
import "github.com/google/go-querystring/query" | ||
import "fmt" | ||
|
||
// FilterService handles fields for the JIRA instance / API. | ||
// | ||
// JIRA API docs: https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-group-Filter | ||
type FilterService struct { | ||
client *Client | ||
} | ||
|
||
// Filter represents a Filter in Jira | ||
type Filter struct { | ||
Self string `json:"self"` | ||
ID string `json:"id"` | ||
Name string `json:"name"` | ||
Description string `json:"description"` | ||
Owner User `json:"owner"` | ||
Jql string `json:"jql"` | ||
ViewURL string `json:"viewUrl"` | ||
SearchURL string `json:"searchUrl"` | ||
Favourite bool `json:"favourite"` | ||
FavouritedCount int `json:"favouritedCount"` | ||
SharePermissions []interface{} `json:"sharePermissions"` | ||
Subscriptions struct { | ||
Size int `json:"size"` | ||
Items []interface{} `json:"items"` | ||
MaxResults int `json:"max-results"` | ||
StartIndex int `json:"start-index"` | ||
EndIndex int `json:"end-index"` | ||
} `json:"subscriptions"` | ||
} | ||
|
||
// GetList retrieves all filters from Jira | ||
func (fs *FilterService) GetList() ([]*Filter, *Response, error) { | ||
|
||
options := &GetQueryOptions{} | ||
apiEndpoint := "rest/api/2/filter" | ||
req, err := fs.client.NewRequest("GET", apiEndpoint, nil) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
if options != nil { | ||
q, err := query.Values(options) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
req.URL.RawQuery = q.Encode() | ||
} | ||
|
||
filters := []*Filter{} | ||
resp, err := fs.client.Do(req, &filters) | ||
if err != nil { | ||
jerr := NewJiraError(resp, err) | ||
return nil, resp, jerr | ||
} | ||
return filters, resp, err | ||
} | ||
|
||
// Get retrieves a single Filter from Jira | ||
func (fs *FilterService) Get(filterID int) (*Filter, *Response, error) { | ||
apiEndpoint := fmt.Sprintf("rest/api/2/filter/%d", filterID) | ||
req, err := fs.client.NewRequest("GET", apiEndpoint, nil) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
filter := new(Filter) | ||
resp, err := fs.client.Do(req, filter) | ||
if err != nil { | ||
jerr := NewJiraError(resp, err) | ||
return nil, resp, jerr | ||
} | ||
|
||
return filter, resp, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package jira | ||
|
||
import ( | ||
"fmt" | ||
"io/ioutil" | ||
"net/http" | ||
"testing" | ||
) | ||
|
||
func TestFilterService_GetList(t *testing.T) { | ||
setup() | ||
defer teardown() | ||
testAPIEdpoint := "/rest/api/2/filter" | ||
raw, err := ioutil.ReadFile("./mocks/all_filters.json") | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
testMux.HandleFunc(testAPIEdpoint, func(writer http.ResponseWriter, request *http.Request) { | ||
testMethod(t, request, "GET") | ||
testRequestURL(t, request, testAPIEdpoint) | ||
fmt.Fprint(writer, string(raw)) | ||
}) | ||
|
||
filters, _, err := testClient.Filter.GetList() | ||
if filters == nil { | ||
t.Error("Expected Filters list. Filters list is nil") | ||
} | ||
if err != nil { | ||
t.Errorf("Error given: %s", err) | ||
} | ||
} | ||
|
||
func TestFilterService_Get(t *testing.T) { | ||
setup() | ||
defer teardown() | ||
testAPIEdpoint := "/rest/api/2/filter/10000" | ||
raw, err := ioutil.ReadFile("./mocks/filter.json") | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
testMux.HandleFunc(testAPIEdpoint, func(writer http.ResponseWriter, request *http.Request) { | ||
testMethod(t, request, "GET") | ||
testRequestURL(t, request, testAPIEdpoint) | ||
fmt.Fprintf(writer, string(raw)) | ||
}) | ||
|
||
filter, _, err := testClient.Filter.Get(10000) | ||
if filter == nil { | ||
t.Errorf("Expected Filter, got nil") | ||
} | ||
if err != nil { | ||
t.Errorf("Error given: %s", err) | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[ | ||
{ | ||
"self": "http://your-domain.atlassian.net/rest/api/2/filter/10000", | ||
"id": "10000", | ||
"name": "All Open Bugs", | ||
"description": "Lists all open bugs", | ||
"owner": { | ||
"self": "http://your-domain.atlassian.net/rest/api/2/user?username=mia", | ||
"key": "mia", | ||
"accountId": "99:27935d01-92a7-4687-8272-a9b8d3b2ae2e", | ||
"name": "mia", | ||
"avatarUrls": { | ||
"48x48": "http://your-domain.atlassian.net/secure/useravatar?size=large&ownerId=mia", | ||
"24x24": "http://your-domain.atlassian.net/secure/useravatar?size=small&ownerId=mia", | ||
"16x16": "http://your-domain.atlassian.net/secure/useravatar?size=xsmall&ownerId=mia", | ||
"32x32": "http://your-domain.atlassian.net/secure/useravatar?size=medium&ownerId=mia" | ||
}, | ||
"displayName": "Mia Krystof", | ||
"active": false | ||
}, | ||
"jql": "type = Bug and resolution is empty", | ||
"viewUrl": "http://your-domain.atlassian.net/issues/?filter=10000", | ||
"searchUrl": "http://your-domain.atlassian.net/rest/api/2/search?jql=type%20%3D%20Bug%20and%20resolutino%20is%20empty", | ||
"favourite": true, | ||
"favouritedCount": 0, | ||
"sharePermissions": [], | ||
"subscriptions": { | ||
"size": 0, | ||
"items": [], | ||
"max-results": 0, | ||
"start-index": 0, | ||
"end-index": 0 | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"self": "http://your-domain.atlassian.net/rest/api/2/filter/10000", | ||
"id": "10000", | ||
"name": "All Open Bugs", | ||
"description": "Lists all open bugs", | ||
"owner": { | ||
"self": "http://your-domain.atlassian.net/rest/api/2/user?username=mia", | ||
"key": "mia", | ||
"accountId": "99:27935d01-92a7-4687-8272-a9b8d3b2ae2e", | ||
"name": "mia", | ||
"avatarUrls": { | ||
"48x48": "http://your-domain.atlassian.net/secure/useravatar?size=large&ownerId=mia", | ||
"24x24": "http://your-domain.atlassian.net/secure/useravatar?size=small&ownerId=mia", | ||
"16x16": "http://your-domain.atlassian.net/secure/useravatar?size=xsmall&ownerId=mia", | ||
"32x32": "http://your-domain.atlassian.net/secure/useravatar?size=medium&ownerId=mia" | ||
}, | ||
"displayName": "Mia Krystof", | ||
"active": false | ||
}, | ||
"jql": "type = Bug and resolution is empty", | ||
"viewUrl": "http://your-domain.atlassian.net/issues/?filter=10000", | ||
"searchUrl": "http://your-domain.atlassian.net/rest/api/2/search?jql=type%20%3D%20Bug%20and%20resolutino%20is%20empty", | ||
"favourite": true, | ||
"favouritedCount": 0, | ||
"sharePermissions": [], | ||
"subscriptions": { | ||
"size": 0, | ||
"items": [], | ||
"max-results": 0, | ||
"start-index": 0, | ||
"end-index": 0 | ||
} | ||
} |