mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
f75ec4e67c
Former-commit-id: 761be7901fff65ef0ca6e3ea4339ff59f569cf75
80 lines
1.5 KiB
Go
80 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/kataras/iris/v12/httptest"
|
|
)
|
|
|
|
type resource string
|
|
|
|
func (r resource) contentType() string {
|
|
switch filepath.Ext(r.String()) {
|
|
case ".js":
|
|
return "text/javascript"
|
|
case ".css":
|
|
return "text/css"
|
|
default:
|
|
return "text/html"
|
|
}
|
|
}
|
|
|
|
func (r resource) String() string {
|
|
return string(r)
|
|
}
|
|
|
|
func (r resource) strip(strip string) string {
|
|
s := r.String()
|
|
return strings.TrimPrefix(s, strip)
|
|
}
|
|
|
|
func (r resource) loadFromBase(dir string) string {
|
|
filename := r.String()
|
|
|
|
if strings.HasSuffix(filename, "/") {
|
|
filename = filename + "index.html"
|
|
}
|
|
|
|
fullpath := filepath.Join(dir, filename)
|
|
|
|
b, err := ioutil.ReadFile(fullpath)
|
|
if err != nil {
|
|
panic(fullpath + " failed with error: " + err.Error())
|
|
}
|
|
result := string(b)
|
|
if runtime.GOOS != "windows" {
|
|
result = strings.Replace(result, "\n", "\r\n", -1)
|
|
result = strings.Replace(result, "\r\r", "", -1)
|
|
}
|
|
return result
|
|
}
|
|
|
|
var urls = []resource{
|
|
"/",
|
|
"/index.html",
|
|
"/app.js",
|
|
"/css/main.css",
|
|
"/app2/",
|
|
"/app2/index.html",
|
|
}
|
|
|
|
func TestSPAEmbedded(t *testing.T) {
|
|
app := newApp()
|
|
e := httptest.New(t, app)
|
|
|
|
for _, u := range urls {
|
|
url := u.String()
|
|
contents := u.loadFromBase("./public")
|
|
contents = strings.Replace(contents, "{{ .Page.Title }}", page.Title, 1)
|
|
|
|
e.GET(url).Expect().
|
|
Status(httptest.StatusOK).
|
|
ContentType(u.contentType(), app.ConfigurationReadOnly().GetCharset()).
|
|
Body().Equal(contents)
|
|
}
|
|
}
|