Beego/staticfile_test.go

74 lines
1.7 KiB
Go
Raw Normal View History

2015-11-11 08:22:05 +00:00
package beego
import (
"bytes"
"compress/gzip"
2015-12-18 01:28:40 +00:00
"compress/zlib"
2015-11-11 08:22:05 +00:00
"io"
"io/ioutil"
"os"
2016-01-27 04:26:37 +00:00
"path/filepath"
2016-02-12 03:36:59 +00:00
"testing"
2015-11-11 08:22:05 +00:00
)
2016-01-27 04:26:37 +00:00
var currentWorkDir, _ = os.Getwd()
var licenseFile = filepath.Join(currentWorkDir, "LICENSE")
2015-11-11 08:22:05 +00:00
func testOpenFile(encoding string, content []byte, t *testing.T) {
fi, _ := os.Stat(licenseFile)
2018-05-07 07:27:13 +00:00
b, n, sch, reader, err := openFile(licenseFile, fi, encoding)
2015-11-11 08:22:05 +00:00
if err != nil {
t.Log(err)
t.Fail()
}
t.Log("open static file encoding "+n, b)
2018-05-07 07:27:13 +00:00
assetOpenFileAndContent(sch, reader, content, t)
2015-11-11 08:22:05 +00:00
}
func TestOpenStaticFile_1(t *testing.T) {
file, _ := os.Open(licenseFile)
content, _ := ioutil.ReadAll(file)
testOpenFile("", content, t)
}
func TestOpenStaticFileGzip_1(t *testing.T) {
file, _ := os.Open(licenseFile)
var zipBuf bytes.Buffer
fileWriter, _ := gzip.NewWriterLevel(&zipBuf, gzip.BestCompression)
io.Copy(fileWriter, file)
fileWriter.Close()
content, _ := ioutil.ReadAll(&zipBuf)
testOpenFile("gzip", content, t)
}
func TestOpenStaticFileDeflate_1(t *testing.T) {
file, _ := os.Open(licenseFile)
var zipBuf bytes.Buffer
2015-12-18 01:28:40 +00:00
fileWriter, _ := zlib.NewWriterLevel(&zipBuf, zlib.BestCompression)
2015-11-11 08:22:05 +00:00
io.Copy(fileWriter, file)
fileWriter.Close()
content, _ := ioutil.ReadAll(&zipBuf)
testOpenFile("deflate", content, t)
}
2018-05-07 07:27:13 +00:00
func assetOpenFileAndContent(sch *serveContentHolder, reader *serveContentReader, content []byte, t *testing.T) {
2015-11-11 08:22:05 +00:00
t.Log(sch.size, len(content))
if sch.size != int64(len(content)) {
t.Log("static content file size not same")
t.Fail()
}
2018-05-07 07:27:13 +00:00
bs, _ := ioutil.ReadAll(reader)
2015-11-11 08:22:05 +00:00
for i, v := range content {
if v != bs[i] {
t.Log("content not same")
t.Fail()
}
}
if len(staticFileMap) == 0 {
t.Log("men map is empty")
t.Fail()
}
}