mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
192 lines
4.5 KiB
Go
192 lines
4.5 KiB
Go
// Copyright 2018 Drone.IO Inc.
|
|
//
|
|
// 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 datastore
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
func TestFileFind(t *testing.T) {
|
|
store, closer := newTestStore(t, new(model.File), new(model.Proc))
|
|
defer closer()
|
|
|
|
if err := store.FileCreate(
|
|
&model.File{
|
|
BuildID: 2,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
); err != nil {
|
|
t.Errorf("Unexpected error: insert file: %s", err)
|
|
return
|
|
}
|
|
|
|
file, err := store.FileFind(&model.Proc{ID: 1}, "hello.txt")
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
if got, want := file.ID, int64(1); got != want {
|
|
t.Errorf("Want file id %d, got %d", want, got)
|
|
}
|
|
if got, want := file.BuildID, int64(2); got != want {
|
|
t.Errorf("Want file build id %d, got %d", want, got)
|
|
}
|
|
if got, want := file.ProcID, int64(1); got != want {
|
|
t.Errorf("Want file proc id %d, got %d", want, got)
|
|
}
|
|
if got, want := file.Name, "hello.txt"; got != want {
|
|
t.Errorf("Want file name %s, got %s", want, got)
|
|
}
|
|
if got, want := file.Mime, "text/plain"; got != want {
|
|
t.Errorf("Want file mime %s, got %s", want, got)
|
|
}
|
|
if got, want := file.Size, 11; got != want {
|
|
t.Errorf("Want file size %d, got %d", want, got)
|
|
}
|
|
|
|
rc, err := store.FileRead(&model.Proc{ID: 1}, "hello.txt")
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
out, _ := io.ReadAll(rc)
|
|
if got, want := string(out), "hello world"; got != want {
|
|
t.Errorf("Want file data %s, got %s", want, got)
|
|
}
|
|
}
|
|
|
|
func TestFileList(t *testing.T) {
|
|
store, closer := newTestStore(t, new(model.File), new(model.Build))
|
|
defer closer()
|
|
|
|
assert.NoError(t, store.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
))
|
|
assert.NoError(t, store.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hola.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hola mundo"),
|
|
))
|
|
|
|
files, err := store.FileList(&model.Build{ID: 1})
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: select files: %s", err)
|
|
return
|
|
}
|
|
|
|
if got, want := len(files), 2; got != want {
|
|
t.Errorf("Wanted %d files, got %d", want, got)
|
|
}
|
|
}
|
|
|
|
func TestFileIndexes(t *testing.T) {
|
|
store, closer := newTestStore(t, new(model.File), new(model.Build))
|
|
defer closer()
|
|
|
|
if err := store.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Size: 11,
|
|
Mime: "text/plain",
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
); err != nil {
|
|
t.Errorf("Unexpected error: insert file: %s", err)
|
|
return
|
|
}
|
|
|
|
// fail due to duplicate file name
|
|
if err := store.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
); err == nil {
|
|
t.Errorf("Unexpected error: duplicate pid")
|
|
}
|
|
}
|
|
|
|
func TestFileCascade(t *testing.T) {
|
|
store, closer := newTestStore(t, new(model.File), new(model.Proc), new(model.Build))
|
|
defer closer()
|
|
|
|
procOne := &model.Proc{
|
|
BuildID: 1,
|
|
PID: 1,
|
|
PGID: 1,
|
|
Name: "build",
|
|
State: "success",
|
|
}
|
|
err1 := store.ProcCreate([]*model.Proc{procOne})
|
|
assert.EqualValues(t, int64(1), procOne.ID)
|
|
|
|
err2 := store.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
)
|
|
|
|
if err1 != nil {
|
|
t.Errorf("Unexpected error: cannot insert proc: %s", err1)
|
|
} else if err2 != nil {
|
|
t.Errorf("Unexpected error: cannot insert file: %s", err2)
|
|
}
|
|
|
|
if _, err3 := store.ProcFind(&model.Build{ID: 1}, 1); err3 != nil {
|
|
t.Errorf("Unexpected error: cannot get inserted proc: %s", err3)
|
|
}
|
|
|
|
err := store.ProcClear(&model.Build{ID: 1, Procs: []*model.Proc{procOne}})
|
|
assert.NoError(t, err)
|
|
|
|
file, err4 := store.FileFind(&model.Proc{ID: 1}, "hello.txt")
|
|
if err4 == nil {
|
|
t.Errorf("Expected no rows in result set error")
|
|
t.Log(file)
|
|
}
|
|
}
|