mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
61 lines
1.1 KiB
Go
61 lines
1.1 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"path/filepath"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/kataras/iris"
|
||
|
"github.com/kataras/iris/httptest"
|
||
|
)
|
||
|
|
||
|
type resource string
|
||
|
|
||
|
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()
|
||
|
|
||
|
filename = r.strip("/static")
|
||
|
|
||
|
fullpath := filepath.Join(dir, filename)
|
||
|
|
||
|
b, err := ioutil.ReadFile(fullpath)
|
||
|
if err != nil {
|
||
|
panic(fullpath + " failed with error: " + err.Error())
|
||
|
}
|
||
|
|
||
|
return string(b)
|
||
|
}
|
||
|
|
||
|
var urls = []resource{
|
||
|
"/static/css/bootstrap.min.css",
|
||
|
"/static/js/jquery-2.1.1.js",
|
||
|
"/static/favicon.ico",
|
||
|
}
|
||
|
|
||
|
// if bindata's values matches with the assets/... contents
|
||
|
// and secondly if the StaticEmbedded had successfully registered
|
||
|
// the routes and gave the correct response.
|
||
|
func TestEmbeddingFilesIntoApp(t *testing.T) {
|
||
|
app := newApp()
|
||
|
e := httptest.New(t, app)
|
||
|
|
||
|
for _, u := range urls {
|
||
|
url := u.String()
|
||
|
contents := u.loadFromBase("./assets")
|
||
|
|
||
|
e.GET(url).Expect().
|
||
|
Status(iris.StatusOK).
|
||
|
Body().Equal(contents)
|
||
|
}
|
||
|
}
|