1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2024-11-24 08:22:42 +02:00
go-jira/status_test.go
2019-08-19 07:51:49 -07:00

36 lines
672 B
Go

package jira
import (
"fmt"
"io/ioutil"
"net/http"
"testing"
)
func TestStatusService_GetAllStatuses(t *testing.T) {
setup()
defer teardown()
testAPIEdpoint := "/rest/api/2/status"
raw, err := ioutil.ReadFile("./mocks/all_statuses.json")
if err != nil {
t.Error(err.Error())
}
testMux.HandleFunc(testAPIEdpoint, func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testRequestURL(t, r, testAPIEdpoint)
fmt.Fprint(w, string(raw))
})
statusList, _, err := testClient.Status.GetAllStatuses()
if statusList == nil {
t.Error("Expected statusList. statusList is nill")
}
if err != nil {
t.Errorf("Error given: %s", err)
}
}