136 lines
3.4 KiB
Go
136 lines
3.4 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.
|
|
|
|
// +build !oss
|
|
|
|
package trigger
|
|
|
|
// import (
|
|
// "testing"
|
|
|
|
// "github.com/drone/drone/core"
|
|
// "github.com/drone/drone/mock"
|
|
// "github.com/drone/go-scm/scm"
|
|
|
|
// "github.com/golang/mock/gomock"
|
|
// "github.com/google/go-cmp/cmp"
|
|
// )
|
|
|
|
// func Test_listChanges_None(t *testing.T) {
|
|
// controller := gomock.NewController(t)
|
|
// defer controller.Finish()
|
|
|
|
// mockRepo := &core.Repository{
|
|
// Slug: "octocat/hello-world",
|
|
// }
|
|
// mockBuild := &core.Build{
|
|
// Event: core.EventTag,
|
|
// Ref: "refs/tags/v1.0.0",
|
|
// }
|
|
// paths, err := listChanges(nil, mockRepo, mockBuild)
|
|
// if err != nil {
|
|
// t.Error(err)
|
|
// }
|
|
// if len(paths) != 0 {
|
|
// t.Errorf("Expect empty changeset for Tag events")
|
|
// }
|
|
// }
|
|
|
|
// func Test_listChanges_Push(t *testing.T) {
|
|
// controller := gomock.NewController(t)
|
|
// defer controller.Finish()
|
|
|
|
// mockRepo := &core.Repository{
|
|
// Slug: "octocat/hello-world",
|
|
// }
|
|
// mockBuild := &core.Build{
|
|
// Event: core.EventPush,
|
|
// After: "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
|
|
// }
|
|
// mockChanges := []*scm.Change{
|
|
// {Path: "README.md"},
|
|
// }
|
|
|
|
// mockGit := mock.NewMockGitService(controller)
|
|
// mockGit.EXPECT().ListChanges(gomock.Any(), mockRepo.Slug, mockBuild.After, gomock.Any()).Return(mockChanges, nil, nil)
|
|
|
|
// mockClient := new(scm.Client)
|
|
// mockClient.Git = mockGit
|
|
|
|
// got, err := listChanges(mockClient, mockRepo, mockBuild)
|
|
// if err != nil {
|
|
// t.Error(err)
|
|
// }
|
|
// want := []string{"README.md"}
|
|
// if diff := cmp.Diff(got, want); diff != "" {
|
|
// t.Errorf(diff)
|
|
// }
|
|
// }
|
|
|
|
// func Test_listChanges_PullRequest(t *testing.T) {
|
|
// controller := gomock.NewController(t)
|
|
// defer controller.Finish()
|
|
|
|
// mockRepo := &core.Repository{
|
|
// Slug: "octocat/hello-world",
|
|
// }
|
|
// mockBuild := &core.Build{
|
|
// Event: core.EventPullRequest,
|
|
// Ref: "refs/pulls/12/head",
|
|
// }
|
|
// mockChanges := []*scm.Change{
|
|
// {Path: "README.md"},
|
|
// }
|
|
|
|
// mockPR := mock.NewMockPullRequestService(controller)
|
|
// mockPR.EXPECT().ListChanges(gomock.Any(), mockRepo.Slug, 12, gomock.Any()).Return(mockChanges, nil, nil)
|
|
|
|
// mockClient := new(scm.Client)
|
|
// mockClient.PullRequests = mockPR
|
|
|
|
// got, err := listChanges(mockClient, mockRepo, mockBuild)
|
|
// if err != nil {
|
|
// t.Error(err)
|
|
// }
|
|
// want := []string{"README.md"}
|
|
// if diff := cmp.Diff(got, want); diff != "" {
|
|
// t.Errorf(diff)
|
|
// }
|
|
// }
|
|
|
|
// func Test_listChanges_PullRequest_ParseError(t *testing.T) {
|
|
// controller := gomock.NewController(t)
|
|
// defer controller.Finish()
|
|
|
|
// mockRepo := &core.Repository{
|
|
// Slug: "octocat/hello-world",
|
|
// }
|
|
// mockBuild := &core.Build{
|
|
// Event: core.EventPullRequest,
|
|
// Ref: "refs/pulls/foo/head",
|
|
// }
|
|
// _, err := listChanges(nil, mockRepo, mockBuild)
|
|
// if err == nil {
|
|
// t.Errorf("Expect error parsing invalid pull request number")
|
|
// }
|
|
// }
|
|
|
|
// func Test_parsePullRequest(t *testing.T) {
|
|
// var tests = []struct {
|
|
// ref string
|
|
// num int
|
|
// }{
|
|
// {"refs/pulls/1/merge", 1},
|
|
// {"refs/pulls/12/merge", 12},
|
|
// }
|
|
// for _, test := range tests {
|
|
// pr, err := parsePullRequest(test.ref)
|
|
// if err != nil {
|
|
// t.Error(err)
|
|
// }
|
|
// if got, want := pr, test.num; got != want {
|
|
// t.Errorf("Want pull request number %d, got %d", want, got)
|
|
// }
|
|
// }
|
|
// }
|