184 lines
3.8 KiB
Go
184 lines
3.8 KiB
Go
package datastore
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"github.com/drone/drone/model"
|
|
)
|
|
|
|
func TestFileFind(t *testing.T) {
|
|
s := newTest()
|
|
defer func() {
|
|
s.Exec("delete from files")
|
|
s.Close()
|
|
}()
|
|
|
|
if err := s.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 := s.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 := s.FileRead(&model.Proc{ID: 1}, "hello.txt")
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
out, _ := ioutil.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) {
|
|
s := newTest()
|
|
defer func() {
|
|
s.Exec("delete from files")
|
|
s.Close()
|
|
}()
|
|
|
|
s.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hello.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hello world"),
|
|
)
|
|
s.FileCreate(
|
|
&model.File{
|
|
BuildID: 1,
|
|
ProcID: 1,
|
|
Name: "hola.txt",
|
|
Mime: "text/plain",
|
|
Size: 11,
|
|
},
|
|
bytes.NewBufferString("hola mundo"),
|
|
)
|
|
|
|
files, err := s.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) {
|
|
s := newTest()
|
|
defer func() {
|
|
s.Exec("delete from files")
|
|
s.Close()
|
|
}()
|
|
|
|
if err := s.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 := s.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: dupliate pid")
|
|
}
|
|
}
|
|
|
|
// func TestFileCascade(t *testing.T) {
|
|
// s := newTest()
|
|
// defer s.Close()
|
|
//
|
|
//
|
|
// err1 := s.ProcCreate([]*model.Proc{
|
|
// {
|
|
// BuildID: 1,
|
|
// PID: 1,
|
|
// PGID: 1,
|
|
// Name: "build",
|
|
// State: "success",
|
|
// },
|
|
// })
|
|
// err2 := s.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 := s.ProcFind(&model.Build{ID: 1}, 1); err3 != nil {
|
|
// t.Errorf("Unexpected error: cannot get inserted proc: %s", err3)
|
|
// }
|
|
//
|
|
// db.Exec("delete from procs where proc_id = 1")
|
|
//
|
|
// file, err4 := s.FileFind(&model.Proc{ID: 1}, "hello.txt")
|
|
// if err4 == nil {
|
|
// t.Errorf("Expected no rows in result set error")
|
|
// t.Log(file)
|
|
// }
|
|
// }
|