126 lines
3.3 KiB
Go
126 lines
3.3 KiB
Go
|
// 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.
|
||
|
|
||
|
package repos
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"encoding/json"
|
||
|
"net/http/httptest"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/drone/drone/handler/api/errors"
|
||
|
"github.com/drone/drone/handler/api/request"
|
||
|
"github.com/drone/drone/mock"
|
||
|
"github.com/drone/drone/core"
|
||
|
|
||
|
"github.com/go-chi/chi"
|
||
|
"github.com/golang/mock/gomock"
|
||
|
"github.com/google/go-cmp/cmp"
|
||
|
)
|
||
|
|
||
|
func TestChown(t *testing.T) {
|
||
|
controller := gomock.NewController(t)
|
||
|
defer controller.Finish()
|
||
|
|
||
|
user := &core.User{
|
||
|
ID: 42,
|
||
|
}
|
||
|
repo := &core.Repository{
|
||
|
ID: 1,
|
||
|
UserID: 1,
|
||
|
}
|
||
|
|
||
|
checkChown := func(_ context.Context, updated *core.Repository) error {
|
||
|
if got, want := updated.UserID, user.ID; got != want {
|
||
|
t.Errorf("Want repository owner updated to %d, got %d", want, got)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
repos := mock.NewMockRepositoryStore(controller)
|
||
|
repos.EXPECT().FindName(gomock.Any(), "octocat", "hello-world").Return(repo, nil)
|
||
|
repos.EXPECT().Update(gomock.Any(), repo).Return(nil).Do(checkChown)
|
||
|
|
||
|
c := new(chi.Context)
|
||
|
c.URLParams.Add("owner", "octocat")
|
||
|
c.URLParams.Add("name", "hello-world")
|
||
|
|
||
|
w := httptest.NewRecorder()
|
||
|
r := httptest.NewRequest("POST", "/", nil)
|
||
|
r = r.WithContext(
|
||
|
context.WithValue(request.WithUser(r.Context(), user), chi.RouteCtxKey, c),
|
||
|
)
|
||
|
|
||
|
HandleChown(repos)(w, r)
|
||
|
if got, want := w.Code, 200; want != got {
|
||
|
t.Errorf("Want response code %d, got %d", want, got)
|
||
|
}
|
||
|
|
||
|
got, want := &core.Repository{}, repo
|
||
|
json.NewDecoder(w.Body).Decode(got)
|
||
|
if diff := cmp.Diff(got, want); len(diff) > 0 {
|
||
|
t.Errorf(diff)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestChown_RepoNotFound(t *testing.T) {
|
||
|
controller := gomock.NewController(t)
|
||
|
defer controller.Finish()
|
||
|
|
||
|
repos := mock.NewMockRepositoryStore(controller)
|
||
|
repos.EXPECT().FindName(gomock.Any(), "octocat", "hello-world").Return(nil, errors.ErrNotFound)
|
||
|
|
||
|
c := new(chi.Context)
|
||
|
c.URLParams.Add("owner", "octocat")
|
||
|
c.URLParams.Add("name", "hello-world")
|
||
|
|
||
|
w := httptest.NewRecorder()
|
||
|
r := httptest.NewRequest("POST", "/", nil)
|
||
|
r = r.WithContext(
|
||
|
context.WithValue(request.WithUser(r.Context(), &core.User{}), chi.RouteCtxKey, c),
|
||
|
)
|
||
|
|
||
|
HandleChown(repos)(w, r)
|
||
|
if got, want := w.Code, 404; 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)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestChown_Error(t *testing.T) {
|
||
|
controller := gomock.NewController(t)
|
||
|
defer controller.Finish()
|
||
|
|
||
|
repos := mock.NewMockRepositoryStore(controller)
|
||
|
repos.EXPECT().FindName(gomock.Any(), "octocat", "hello-world").Return(&core.Repository{}, nil)
|
||
|
repos.EXPECT().Update(gomock.Any(), gomock.Any()).Return(errors.ErrNotFound)
|
||
|
|
||
|
c := new(chi.Context)
|
||
|
c.URLParams.Add("owner", "octocat")
|
||
|
c.URLParams.Add("name", "hello-world")
|
||
|
|
||
|
w := httptest.NewRecorder()
|
||
|
r := httptest.NewRequest("POST", "/", nil)
|
||
|
r = r.WithContext(
|
||
|
context.WithValue(request.WithUser(r.Context(), &core.User{}), chi.RouteCtxKey, c),
|
||
|
)
|
||
|
|
||
|
HandleChown(repos)(w, r)
|
||
|
if got, want := w.Code, 500; 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)
|
||
|
}
|
||
|
}
|