2017-07-28 21:48:15 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/nomad/mock"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHTTP_ResourcesWithIllegalMethod(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
httpTest(t, nil, func(s *TestAgent) {
|
|
|
|
req, err := http.NewRequest("DELETE", "/v1/resources", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
respW := httptest.NewRecorder()
|
|
|
|
|
|
|
|
_, err = s.Server.ResourcesRequest(respW, req)
|
|
|
|
assert.NotNil(t, err, "HTTP DELETE should not be accepted for this endpoint")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func createJobForTest(jobID string, s *TestAgent, t *testing.T) {
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = jobID
|
|
|
|
job.TaskGroups[0].Count = 1
|
|
|
|
args := structs.JobRegisterRequest{
|
|
|
|
Job: job,
|
|
|
|
WriteRequest: structs.WriteRequest{Region: "global"},
|
|
|
|
}
|
|
|
|
var resp structs.JobRegisterResponse
|
|
|
|
if err := s.Agent.RPC("Job.Register", &args, &resp); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHTTP_ResourcesWithSingleJob(t *testing.T) {
|
|
|
|
testJob := "aaaaaaaa-e8f7-fd38-c855-ab94ceb89706"
|
2017-08-01 19:33:40 +00:00
|
|
|
testJobPrefix := "aaaaaaaa-e8f7-fd38"
|
2017-07-28 21:48:15 +00:00
|
|
|
t.Parallel()
|
|
|
|
httpTest(t, nil, func(s *TestAgent) {
|
|
|
|
createJobForTest(testJob, s, t)
|
|
|
|
|
2017-08-01 19:59:19 +00:00
|
|
|
endpoint := fmt.Sprintf("/v1/resources?context=job&prefix=%s&context=job", testJobPrefix)
|
2017-07-28 21:48:15 +00:00
|
|
|
req, err := http.NewRequest("GET", endpoint, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
respW := httptest.NewRecorder()
|
|
|
|
|
|
|
|
resp, err := s.Server.ResourcesRequest(respW, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-08-01 22:20:03 +00:00
|
|
|
res := resp.(structs.ResourcesResponse)
|
2017-07-28 21:48:15 +00:00
|
|
|
if len(res.Matches) != 1 {
|
|
|
|
t.Fatalf("No expected key values in resources list")
|
|
|
|
}
|
|
|
|
|
|
|
|
j := res.Matches["jobs"]
|
|
|
|
if j == nil || len(j) != 1 {
|
|
|
|
t.Fatalf("The number of jobs that were returned does not equal the number of jobs we expected (1)", j)
|
|
|
|
}
|
|
|
|
|
2017-08-01 19:33:40 +00:00
|
|
|
assert.Equal(t, j[0], testJob)
|
2017-07-28 21:48:15 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-08-01 19:59:19 +00:00
|
|
|
func TestHTTP_ResourcesWithMultipleJobs(t *testing.T) {
|
|
|
|
testJobA := "aaaaaaaa-e8f7-fd38-c855-ab94ceb89706"
|
|
|
|
testJobB := "aaaaaaaa-e8f7-fd38-c855-ab94ceb89707"
|
|
|
|
testJobC := "bbbbbbbb-e8f7-fd38-c855-ab94ceb89707"
|
|
|
|
|
|
|
|
testJobPrefix := "aaaaaaaa-e8f7-fd38"
|
|
|
|
|
|
|
|
t.Parallel()
|
|
|
|
httpTest(t, nil, func(s *TestAgent) {
|
|
|
|
createJobForTest(testJobA, s, t)
|
|
|
|
createJobForTest(testJobB, s, t)
|
|
|
|
createJobForTest(testJobC, s, t)
|
|
|
|
|
|
|
|
endpoint := fmt.Sprintf("/v1/resources?context=job&prefix=%s&context=job", testJobPrefix)
|
|
|
|
req, err := http.NewRequest("GET", endpoint, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
respW := httptest.NewRecorder()
|
|
|
|
|
|
|
|
resp, err := s.Server.ResourcesRequest(respW, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-08-01 22:20:03 +00:00
|
|
|
res := resp.(structs.ResourcesResponse)
|
2017-08-01 19:59:19 +00:00
|
|
|
if len(res.Matches) != 1 {
|
|
|
|
t.Fatalf("No expected key values in resources list")
|
|
|
|
}
|
|
|
|
|
|
|
|
j := res.Matches["jobs"]
|
|
|
|
if j == nil || len(j) != 2 {
|
|
|
|
t.Fatalf("The number of jobs that were returned does not equal the number of jobs we expected (2)", j)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Contains(t, j, testJobA)
|
|
|
|
assert.Contains(t, j, testJobB)
|
|
|
|
assert.NotContains(t, j, testJobC)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-28 21:48:15 +00:00
|
|
|
//
|
|
|
|
//func TestHTTP_ResourcesWithNoJob(t *testing.T) {
|
|
|
|
//}
|