blob: ce31348a1849762056e5157438fdb6d4f017e4a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package static
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfig_Forbids(t *testing.T) {
cfg := Config{Forbid: []string{".php"}}
assert.True(t, cfg.Forbids("index.php"))
assert.True(t, cfg.Forbids("index.PHP"))
assert.True(t, cfg.Forbids("phpadmin/index.bak.php"))
assert.False(t, cfg.Forbids("index.html"))
}
func TestConfig_Valid(t *testing.T) {
assert.NoError(t, (&Config{Dir: "./"}).Valid())
assert.Error(t, (&Config{Dir: "./config.go"}).Valid())
assert.Error(t, (&Config{Dir: "./dir/"}).Valid())
}
|