2021-05-28 15:59:00 +00:00
|
|
|
package template
|
|
|
|
|
2021-05-20 12:55:26 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2021-05-20 15:02:38 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2021-06-01 09:29:58 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
2021-05-20 15:02:38 +00:00
|
|
|
"github.com/drone/drone/handler/api/errors"
|
|
|
|
"github.com/drone/drone/mock"
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
)
|
2021-05-20 12:55:26 +00:00
|
|
|
|
2021-05-20 15:02:38 +00:00
|
|
|
func TestHandleList(t *testing.T) {
|
|
|
|
controller := gomock.NewController(t)
|
|
|
|
defer controller.Finish()
|
|
|
|
|
|
|
|
templates := mock.NewMockTemplateStore(controller)
|
2021-05-28 15:59:00 +00:00
|
|
|
templates.EXPECT().List(gomock.Any(), dummyTemplate.Namespace).Return(dummyTemplateList, nil)
|
2021-05-20 15:02:38 +00:00
|
|
|
|
|
|
|
c := new(chi.Context)
|
2021-05-28 15:59:00 +00:00
|
|
|
c.URLParams.Add("namespace", "my_org")
|
2021-05-20 15:02:38 +00:00
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest("GET", "/", nil)
|
|
|
|
r = r.WithContext(
|
|
|
|
context.WithValue(context.Background(), chi.RouteCtxKey, c),
|
|
|
|
)
|
|
|
|
|
|
|
|
HandleList(templates).ServeHTTP(w, r)
|
|
|
|
if got, want := w.Code, http.StatusOK; want != got {
|
|
|
|
t.Errorf("Want response code %d, got %d", want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleList_TemplateListErr(t *testing.T) {
|
|
|
|
controller := gomock.NewController(t)
|
|
|
|
defer controller.Finish()
|
|
|
|
|
|
|
|
templates := mock.NewMockTemplateStore(controller)
|
2021-05-28 15:59:00 +00:00
|
|
|
templates.EXPECT().List(gomock.Any(), dummyTemplate.Namespace).Return(nil, errors.ErrNotFound)
|
2021-05-20 15:02:38 +00:00
|
|
|
|
|
|
|
c := new(chi.Context)
|
2021-05-28 15:59:00 +00:00
|
|
|
c.URLParams.Add("namespace", "my_org")
|
2021-05-20 15:02:38 +00:00
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest("GET", "/", nil)
|
|
|
|
r = r.WithContext(
|
|
|
|
context.WithValue(context.Background(), chi.RouteCtxKey, c),
|
|
|
|
)
|
|
|
|
|
|
|
|
HandleList(templates).ServeHTTP(w, r)
|
|
|
|
if got, want := w.Code, http.StatusNotFound; want != got {
|
|
|
|
t.Errorf("Want response code %d, got %d", want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
got, want := new(errors.Error), errors.ErrNotFound
|
|
|
|
json.NewDecoder(w.Body).Decode(got)
|
|
|
|
if diff := cmp.Diff(got, want); len(diff) != 0 {
|
|
|
|
t.Errorf(diff)
|
|
|
|
}
|
|
|
|
}
|