699d3d6060
Increase golangci timeout Fix installing golangci-lint in ci Remove mage targets replaced by golangci Run golint in ci Add goheader linter Enable & fix more linters Fix lint issues Add mage target to automagically fix issues found by golangci golangci-lint run --fix Add golangci config Add golangci mage target Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/676 Co-Authored-By: konrad <konrad@kola-entertainments.de> Co-Committed-By: konrad <konrad@kola-entertainments.de>
85 lines
2.3 KiB
Go
85 lines
2.3 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package files
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"code.vikunja.io/api/pkg/config"
|
|
"code.vikunja.io/api/pkg/db"
|
|
"code.vikunja.io/api/pkg/log"
|
|
"github.com/spf13/afero"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// This file handles storing and retrieving a file for different backends
|
|
var fs afero.Fs
|
|
var afs *afero.Afero
|
|
|
|
// InitFileHandler creates a new file handler for the file backend we want to use
|
|
func InitFileHandler() {
|
|
fs = afero.NewOsFs()
|
|
afs = &afero.Afero{Fs: fs}
|
|
}
|
|
|
|
// InitTestFileHandler initializes a new memory file system for testing
|
|
func InitTestFileHandler() {
|
|
fs = afero.NewMemMapFs()
|
|
afs = &afero.Afero{Fs: fs}
|
|
}
|
|
|
|
func initFixtures(t *testing.T) {
|
|
// DB fixtures
|
|
db.LoadAndAssertFixtures(t)
|
|
// File fixtures
|
|
InitTestFileFixtures(t)
|
|
}
|
|
|
|
// InitTestFileFixtures initializes file fixtures
|
|
func InitTestFileFixtures(t *testing.T) {
|
|
// Init fixture files
|
|
filename := config.FilesBasePath.GetString() + "/1"
|
|
err := afero.WriteFile(afs, filename, []byte("testfile1"), 0644)
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
// InitTests handles the actual bootstrapping of the test env
|
|
func InitTests() {
|
|
var err error
|
|
x, err = db.CreateTestEngine()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
err = x.Sync2(GetTables()...)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
err = db.InitTestFixtures("files")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
InitTestFileHandler()
|
|
}
|
|
|
|
// FileStat stats a file. This is an exported function to be able to test this from outide of the package
|
|
func FileStat(filename string) (os.FileInfo, error) {
|
|
return afs.Stat(filename)
|
|
}
|