harbor/src/controller/task/execution_controller_test.go

87 lines
2.4 KiB
Go

// Copyright Project Harbor Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package task
import (
"testing"
"github.com/stretchr/testify/suite"
"github.com/goharbor/harbor/src/lib/q"
model "github.com/goharbor/harbor/src/pkg/task"
"github.com/goharbor/harbor/src/testing/mock"
"github.com/goharbor/harbor/src/testing/pkg/task"
)
type executionControllerTestSuite struct {
suite.Suite
ctl *executionController
mgr *task.ExecutionManager
}
// TestExecutionControllerTestSuite tests controller.
func TestExecutionControllerTestSuite(t *testing.T) {
suite.Run(t, &executionControllerTestSuite{})
}
// SetupTest setups the testing env.
func (ec *executionControllerTestSuite) SetupTest() {
ec.mgr = &task.ExecutionManager{}
ec.ctl = &executionController{
mgr: ec.mgr,
}
}
// TestCount tests count.
func (ec *executionControllerTestSuite) TestCount() {
ec.mgr.On("Count", mock.Anything, mock.Anything).Return(int64(10), nil)
total, err := ec.ctl.Count(nil, &q.Query{})
ec.NoError(err)
ec.Equal(int64(10), total)
}
// TestStop tests stop.
func (ec *executionControllerTestSuite) TestStop() {
ec.mgr.On("Stop", mock.Anything, mock.Anything).Return(nil)
err := ec.ctl.Stop(nil, 1)
ec.NoError(err)
}
// TestDelete tests delete.
func (ec *executionControllerTestSuite) TestDelete() {
ec.mgr.On("Delete", mock.Anything, mock.Anything).Return(nil)
err := ec.ctl.Delete(nil, 1)
ec.NoError(err)
}
// TestGet tests get.
func (ec *executionControllerTestSuite) TestGet() {
ec.mgr.On("Get", mock.Anything, mock.Anything).Return(&model.Execution{ID: 1}, nil)
e, err := ec.ctl.Get(nil, 1)
ec.NoError(err)
ec.Equal(int64(1), e.ID)
}
// TestList tests list.
func (ec *executionControllerTestSuite) TestList() {
ec.mgr.On("List", mock.Anything, mock.Anything).Return([]*model.Execution{
{ID: 1},
{ID: 2},
}, nil)
es, err := ec.ctl.List(nil, nil)
ec.NoError(err)
ec.Len(es, 2)
}