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-04-14 11:32:36 +00:00
|
|
|
package datastore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
2017-04-14 11:32:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestTaskList(t *testing.T) {
|
2021-11-13 19:18:06 +00:00
|
|
|
store, closer := newTestStore(t, new(model.Task))
|
|
|
|
defer closer()
|
2017-04-14 11:32:36 +00:00
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
assert.NoError(t, store.TaskInsert(&model.Task{
|
2023-03-11 00:58:28 +00:00
|
|
|
ID: "some_random_id",
|
|
|
|
Data: []byte("foo"),
|
|
|
|
Labels: map[string]string{"foo": "bar"},
|
2023-03-20 03:50:56 +00:00
|
|
|
DepStatus: map[string]model.StatusValue{"test": "dep"},
|
2021-11-13 19:18:06 +00:00
|
|
|
}))
|
2017-04-14 11:32:36 +00:00
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
list, err := store.TaskList()
|
2024-01-14 18:33:58 +00:00
|
|
|
assert.NoError(t, err)
|
2023-03-11 00:58:28 +00:00
|
|
|
assert.Len(t, list, 1, "Expected one task in list")
|
|
|
|
assert.Equal(t, "some_random_id", list[0].ID)
|
|
|
|
assert.Equal(t, "foo", string(list[0].Data))
|
2023-03-20 03:50:56 +00:00
|
|
|
assert.EqualValues(t, map[string]model.StatusValue{"test": "dep"}, list[0].DepStatus)
|
2017-04-14 11:32:36 +00:00
|
|
|
|
2024-01-14 18:33:58 +00:00
|
|
|
assert.NoError(t, store.TaskDelete("some_random_id"))
|
2017-04-14 11:32:36 +00:00
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
list, err = store.TaskList()
|
2024-01-14 18:33:58 +00:00
|
|
|
assert.NoError(t, err)
|
2023-03-11 00:58:28 +00:00
|
|
|
assert.Len(t, list, 0, "Want empty task list after delete")
|
2017-04-14 11:32:36 +00:00
|
|
|
}
|