mirror of
https://github.com/interviewstreet/go-jira.git
synced 2024-11-24 08:22:42 +02:00
81 lines
1.8 KiB
Go
81 lines
1.8 KiB
Go
package jira
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestProjectGetAll(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
testAPIEdpoint := "/rest/api/2/project"
|
|
|
|
raw, err := ioutil.ReadFile("./mocks/all_projects.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))
|
|
})
|
|
|
|
projects, _, err := testClient.Project.GetList()
|
|
if projects == nil {
|
|
t.Error("Expected project list. Project list is nil")
|
|
}
|
|
if err != nil {
|
|
t.Errorf("Error given: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestProjectGet(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
testAPIEdpoint := "/rest/api/2/project/12310505"
|
|
|
|
raw, err := ioutil.ReadFile("./mocks/project.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))
|
|
})
|
|
|
|
projects, _, err := testClient.Project.Get("12310505")
|
|
if projects == nil {
|
|
t.Error("Expected project list. Project list is nil")
|
|
}
|
|
if err != nil {
|
|
t.Errorf("Error given: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestProjectGet_NoProject(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
testAPIEdpoint := "/rest/api/2/project/99999999"
|
|
|
|
testMux.HandleFunc(testAPIEdpoint, func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testRequestURL(t, r, testAPIEdpoint)
|
|
fmt.Fprint(w, nil)
|
|
})
|
|
|
|
projects, resp, err := testClient.Project.Get("99999999")
|
|
if projects != nil {
|
|
t.Errorf("Expected nil. Got %+v", projects)
|
|
}
|
|
|
|
if resp.Status == "404" {
|
|
t.Errorf("Expected status 404. Got %s", resp.Status)
|
|
}
|
|
if err == nil {
|
|
t.Errorf("Error given: %s", err)
|
|
}
|
|
}
|