You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"os"
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/zenazn/goji"
|
|
)
|
|
|
|
var testCSPHeaders = map[string]string{
|
|
"Content-Security-Policy": "default-src 'none'; style-src 'self';",
|
|
"X-Frame-Options": "SAMEORIGIN",
|
|
}
|
|
|
|
func TestContentSecurityPolicy(t *testing.T) {
|
|
Config.siteURL = "http://linx.example.org/"
|
|
Config.filesDir = path.Join(os.TempDir(), generateBarename())
|
|
Config.metaDir = Config.filesDir + "_meta"
|
|
Config.maxSize = 1024 * 1024 * 1024
|
|
Config.noLogs = true
|
|
Config.siteName = "linx"
|
|
Config.contentSecurityPolicy = "default-src 'none'; style-src 'self';"
|
|
Config.xFrameOptions = "SAMEORIGIN"
|
|
mux := setup()
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
req, err := http.NewRequest("GET", "/", nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
goji.Use(ContentSecurityPolicy(CSPOptions{
|
|
policy: testCSPHeaders["Content-Security-Policy"],
|
|
frame: testCSPHeaders["X-Frame-Options"],
|
|
}))
|
|
|
|
mux.ServeHTTP(w, req)
|
|
|
|
for k, v := range testCSPHeaders {
|
|
if w.HeaderMap[k][0] != v {
|
|
t.Fatalf("%s header did not match expected value set by middleware", k)
|
|
}
|
|
}
|
|
}
|