mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
34 lines
876 B
Go
34 lines
876 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_assetContentType(t *testing.T) {
|
|
samples := map[string]string{
|
|
"foo.html": "text/html; charset=utf-8",
|
|
"foo.css": "text/css; charset=utf-8",
|
|
"foo.js": "application/javascript",
|
|
"foo.icon": "image-x-icon",
|
|
"foo.png": "image/png",
|
|
"foo.jpg": "image/jpeg",
|
|
"foo.gif": "image/gif",
|
|
"foo.eot": "application/vnd.ms-fontobject",
|
|
"foo.svg": "image/svg+xml",
|
|
"foo.ttf": "application/x-font-ttf",
|
|
"foo.foo": "text/plain; charset=utf-8",
|
|
"foo": "text/plain; charset=utf-8",
|
|
}
|
|
|
|
for name, expected := range samples {
|
|
assert.Equal(t, expected, assetContentType(name))
|
|
}
|
|
|
|
result := assetContentType("foo.woff")
|
|
if result != "application/x-font-woff" && result != "application/font-woff" {
|
|
t.Errorf("Expected: application/x-font-woff, Got: %s", result)
|
|
}
|
|
}
|