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 (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"testing"
|
|
|
|
|
2019-04-04 18:51:20 +00:00
|
|
|
"github.com/laszlocph/drone-oss-08/model"
|
2017-03-28 08:53:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFileFind(t *testing.T) {
|
2017-03-28 09:13:13 +00:00
|
|
|
s := newTest()
|
2017-04-01 11:17:04 +00:00
|
|
|
defer func() {
|
|
|
|
s.Exec("delete from files")
|
|
|
|
s.Close()
|
|
|
|
}()
|
2017-03-28 08:53:06 +00:00
|
|
|
|
|
|
|
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) {
|
2017-03-28 09:13:13 +00:00
|
|
|
s := newTest()
|
2017-04-01 11:17:04 +00:00
|
|
|
defer func() {
|
|
|
|
s.Exec("delete from files")
|
|
|
|
s.Close()
|
|
|
|
}()
|
2017-03-28 08:53:06 +00:00
|
|
|
|
|
|
|
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) {
|
2017-03-28 09:13:13 +00:00
|
|
|
s := newTest()
|
2017-04-01 11:17:04 +00:00
|
|
|
defer func() {
|
|
|
|
s.Exec("delete from files")
|
|
|
|
s.Close()
|
|
|
|
}()
|
2017-03-28 08:53:06 +00:00
|
|
|
|
|
|
|
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) {
|
2017-03-28 09:13:13 +00:00
|
|
|
// s := newTest()
|
|
|
|
// defer s.Close()
|
|
|
|
//
|
2017-03-28 08:53:06 +00:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
// }
|
|
|
|
// }
|