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.
|
|
|
|
|
2015-10-21 23:14:02 +00:00
|
|
|
package datastore
|
2015-09-30 01:21:17 +00:00
|
|
|
|
2017-04-03 09:34:37 +00:00
|
|
|
import (
|
|
|
|
"bytes"
|
2022-08-29 23:14:07 +00:00
|
|
|
"io"
|
2017-04-03 09:34:37 +00:00
|
|
|
"testing"
|
|
|
|
|
2021-09-27 17:51:55 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2017-04-03 09:34:37 +00:00
|
|
|
)
|
|
|
|
|
2017-07-20 20:34:52 +00:00
|
|
|
func TestLogCreateFind(t *testing.T) {
|
2021-11-13 19:18:06 +00:00
|
|
|
store, closer := newTestStore(t, new(model.Proc), new(model.Logs))
|
|
|
|
defer closer()
|
2017-07-20 20:34:52 +00:00
|
|
|
|
|
|
|
proc := model.Proc{
|
|
|
|
ID: 1,
|
|
|
|
}
|
|
|
|
buf := bytes.NewBufferString("echo hi")
|
2021-11-13 19:18:06 +00:00
|
|
|
err := store.LogSave(&proc, buf)
|
2017-07-20 20:34:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: log create: %s", err)
|
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
rc, err := store.LogFind(&proc)
|
2017-07-20 20:34:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: log create: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer rc.Close()
|
2022-08-29 23:14:07 +00:00
|
|
|
out, _ := io.ReadAll(rc)
|
2017-07-20 20:34:52 +00:00
|
|
|
if got, want := string(out), "echo hi"; got != want {
|
|
|
|
t.Errorf("Want log data %s, got %s", want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLogUpdate(t *testing.T) {
|
2021-11-13 19:18:06 +00:00
|
|
|
store, closer := newTestStore(t, new(model.Proc), new(model.Logs))
|
|
|
|
defer closer()
|
2017-07-20 20:34:52 +00:00
|
|
|
|
|
|
|
proc := model.Proc{
|
|
|
|
ID: 1,
|
|
|
|
}
|
|
|
|
buf1 := bytes.NewBufferString("echo hi")
|
|
|
|
buf2 := bytes.NewBufferString("echo allo?")
|
2021-11-13 19:18:06 +00:00
|
|
|
err1 := store.LogSave(&proc, buf1)
|
|
|
|
err2 := store.LogSave(&proc, buf2)
|
2017-07-20 20:34:52 +00:00
|
|
|
if err1 != nil {
|
|
|
|
t.Errorf("Unexpected error: log create: %s", err1)
|
|
|
|
}
|
|
|
|
if err2 != nil {
|
|
|
|
t.Errorf("Unexpected error: log update: %s", err2)
|
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
rc, err := store.LogFind(&proc)
|
2017-07-20 20:34:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: log create: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer rc.Close()
|
2022-08-29 23:14:07 +00:00
|
|
|
out, _ := io.ReadAll(rc)
|
2017-07-20 20:34:52 +00:00
|
|
|
if got, want := string(out), "echo allo?"; got != want {
|
|
|
|
t.Errorf("Want log data %s, got %s", want, got)
|
|
|
|
}
|
2017-04-03 09:34:37 +00:00
|
|
|
}
|