1
0
mirror of https://codeberg.org/crowci/crow.git synced 2025-04-19 15:22:22 +03:00
crow/server/pipeline/pipeline_status_test.go
pat-s cecfb22099 refactor: mocking (#38)
- `mockery` can now be run in one call instead of multiple ones
- Use the recommended "packages" approach which will be the new default moving forward
- Enforce consistent naming of mock files
- Remove warnings when invoking `mockery`
- Get rid of *many* linter warnings 🎉️

Reviewed-on: https://codeberg.org/crowci/crow/pulls/38
Co-authored-by: pat-s <patrick.schratz@gmail.com>
Co-committed-by: pat-s <patrick.schratz@gmail.com>
2025-02-15 10:23:47 +00:00

103 lines
2.9 KiB
Go

// Copyright 2022 Woodpecker Authors
// Copyright 2019 mhmxs.
//
// 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 pipeline
import (
"errors"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"codeberg.org/crowci/crow/v3/server/model"
"codeberg.org/crowci/crow/v3/server/store"
store_mocks "codeberg.org/crowci/crow/v3/server/store/mocks"
)
func mockStorePipeline() store.Store {
s := new(store_mocks.MockStore)
s.On("UpdatePipeline", mock.Anything).Return(nil)
return s
}
func TestUpdateToStatusRunning(t *testing.T) {
t.Parallel()
pipeline, _ := UpdateToStatusRunning(mockStorePipeline(), model.Pipeline{}, int64(1))
assert.Equal(t, model.StatusRunning, pipeline.Status)
assert.EqualValues(t, 1, pipeline.Started)
}
func TestUpdateToStatusPending(t *testing.T) {
t.Parallel()
now := time.Now().Unix()
pipeline, _ := UpdateToStatusPending(mockStorePipeline(), model.Pipeline{}, "Reviewer")
assert.Equal(t, model.StatusPending, pipeline.Status)
assert.Equal(t, "Reviewer", pipeline.Reviewer)
assert.LessOrEqual(t, now, pipeline.Reviewed)
}
func TestUpdateToStatusDeclined(t *testing.T) {
t.Parallel()
now := time.Now().Unix()
pipeline, _ := UpdateToStatusDeclined(mockStorePipeline(), model.Pipeline{}, "Reviewer")
assert.Equal(t, model.StatusDeclined, pipeline.Status)
assert.Equal(t, "Reviewer", pipeline.Reviewer)
assert.LessOrEqual(t, now, pipeline.Reviewed)
}
func TestUpdateToStatusToDone(t *testing.T) {
t.Parallel()
pipeline, _ := UpdateStatusToDone(mockStorePipeline(), model.Pipeline{}, "status", int64(1))
assert.Equal(t, model.StatusValue("status"), pipeline.Status)
assert.EqualValues(t, 1, pipeline.Finished)
}
func TestUpdateToStatusError(t *testing.T) {
t.Parallel()
now := time.Now().Unix()
pipeline, _ := UpdateToStatusError(mockStorePipeline(), model.Pipeline{}, errors.New("this is an error"))
assert.Len(t, pipeline.Errors, 1)
assert.Equal(t, "[generic] this is an error", pipeline.Errors[0].Error())
assert.Equal(t, model.StatusError, pipeline.Status)
assert.Equal(t, pipeline.Started, pipeline.Finished)
assert.LessOrEqual(t, now, pipeline.Started)
assert.Equal(t, pipeline.Started, pipeline.Finished)
}
func TestUpdateToStatusKilled(t *testing.T) {
t.Parallel()
now := time.Now().Unix()
pipeline, _ := UpdateToStatusKilled(mockStorePipeline(), model.Pipeline{})
assert.Equal(t, model.StatusKilled, pipeline.Status)
assert.LessOrEqual(t, now, pipeline.Finished)
}