woodpecker/server/store/datastore/proc_test.go

207 lines
4.6 KiB
Go
Raw Normal View History

// Copyright 2022 Woodpecker Authors
2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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.
2017-03-28 08:53:06 +00:00
package datastore
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/woodpecker-ci/woodpecker/server/model"
2017-03-28 08:53:06 +00:00
)
func TestProcFind(t *testing.T) {
store, closer := newTestStore(t, new(model.Proc), new(model.Pipeline))
defer closer()
2017-03-28 08:53:06 +00:00
procs := []*model.Proc{
2017-03-28 08:53:06 +00:00
{
PipelineID: 1000,
PID: 1,
PPID: 2,
PGID: 3,
Name: "build",
State: model.StatusSuccess,
Error: "pc load letter",
ExitCode: 255,
Machine: "localhost",
Platform: "linux/amd64",
Environ: map[string]string{"GOLANG": "tip"},
2017-03-28 08:53:06 +00:00
},
}
assert.NoError(t, store.ProcCreate(procs))
assert.EqualValues(t, 1, procs[0].ID)
assert.Error(t, store.ProcCreate(procs))
2017-03-28 08:53:06 +00:00
proc, err := store.ProcFind(&model.Pipeline{ID: 1000}, 1)
if !assert.NoError(t, err) {
2017-03-28 08:53:06 +00:00
return
}
assert.Equal(t, procs[0], proc)
2017-03-28 08:53:06 +00:00
}
func TestProcChild(t *testing.T) {
store, closer := newTestStore(t, new(model.Proc), new(model.Pipeline))
defer closer()
2017-03-28 08:53:06 +00:00
err := store.ProcCreate([]*model.Proc{
2017-03-28 08:53:06 +00:00
{
PipelineID: 1,
PID: 1,
PPID: 1,
PGID: 1,
State: "success",
2017-03-28 08:53:06 +00:00
},
{
PipelineID: 1,
PID: 2,
PGID: 2,
PPID: 1,
Name: "build",
State: "success",
2017-03-28 08:53:06 +00:00
},
})
if err != nil {
t.Errorf("Unexpected error: insert procs: %s", err)
return
}
proc, err := store.ProcChild(&model.Pipeline{ID: 1}, 1, "build")
2017-03-28 08:53:06 +00:00
if err != nil {
t.Error(err)
return
}
if got, want := proc.PID, 2; got != want {
t.Errorf("Want proc pid %d, got %d", want, got)
}
if got, want := proc.Name, "build"; got != want {
t.Errorf("Want proc name %s, got %s", want, got)
}
}
func TestProcList(t *testing.T) {
store, closer := newTestStore(t, new(model.Proc), new(model.Pipeline))
defer closer()
2017-03-28 08:53:06 +00:00
err := store.ProcCreate([]*model.Proc{
2017-03-28 08:53:06 +00:00
{
PipelineID: 2,
PID: 1,
PPID: 1,
PGID: 1,
State: "success",
2017-03-28 08:53:06 +00:00
},
{
PipelineID: 1,
PID: 1,
PPID: 1,
PGID: 1,
State: "success",
2017-03-28 08:53:06 +00:00
},
{
PipelineID: 1,
PID: 2,
PGID: 2,
PPID: 1,
Name: "build",
State: "success",
2017-03-28 08:53:06 +00:00
},
})
if err != nil {
t.Errorf("Unexpected error: insert procs: %s", err)
return
}
procs, err := store.ProcList(&model.Pipeline{ID: 1})
2017-03-28 08:53:06 +00:00
if err != nil {
t.Error(err)
return
}
if got, want := len(procs), 2; got != want {
t.Errorf("Want %d procs, got %d", want, got)
}
}
func TestProcUpdate(t *testing.T) {
store, closer := newTestStore(t, new(model.Proc), new(model.Pipeline))
defer closer()
2017-03-28 08:53:06 +00:00
proc := &model.Proc{
PipelineID: 1,
PID: 1,
PPID: 2,
PGID: 3,
Name: "build",
State: "pending",
Error: "pc load letter",
ExitCode: 255,
Machine: "localhost",
Platform: "linux/amd64",
Environ: map[string]string{"GOLANG": "tip"},
2017-03-28 08:53:06 +00:00
}
if err := store.ProcCreate([]*model.Proc{proc}); err != nil {
2017-03-28 08:53:06 +00:00
t.Errorf("Unexpected error: insert proc: %s", err)
return
}
proc.State = "running"
if err := store.ProcUpdate(proc); err != nil {
2017-03-28 08:53:06 +00:00
t.Errorf("Unexpected error: update proc: %s", err)
return
}
updated, err := store.ProcFind(&model.Pipeline{ID: 1}, 1)
2017-03-28 08:53:06 +00:00
if err != nil {
t.Error(err)
return
}
if got, want := updated.State, model.StatusRunning; got != want {
2017-03-28 08:53:06 +00:00
t.Errorf("Want proc name %s, got %s", want, got)
}
}
func TestProcIndexes(t *testing.T) {
store, closer := newTestStore(t, new(model.Proc), new(model.Pipeline))
defer closer()
2017-03-28 08:53:06 +00:00
if err := store.ProcCreate([]*model.Proc{
2017-03-28 08:53:06 +00:00
{
PipelineID: 1,
PID: 1,
PPID: 1,
PGID: 1,
State: "running",
Name: "build",
2017-03-28 08:53:06 +00:00
},
}); err != nil {
t.Errorf("Unexpected error: insert procs: %s", err)
return
}
// fail due to duplicate pid
if err := store.ProcCreate([]*model.Proc{
2017-03-28 08:53:06 +00:00
{
PipelineID: 1,
PID: 1,
PPID: 1,
PGID: 1,
State: "success",
Name: "clone",
2017-03-28 08:53:06 +00:00
},
}); err == nil {
t.Errorf("Unexpected error: duplicate pid")
2017-03-28 08:53:06 +00:00
}
}
// TODO: func TestProcCascade(t *testing.T) {}