blob: 497cd54f8836e5a1be84343fe95e04ab8723ca19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package tests
import (
"os"
"testing"
"github.com/spiral/roadrunner/v2/plugins/http"
"github.com/stretchr/testify/assert"
)
func TestFsConfig_Forbids(t *testing.T) {
cfg := http.UploadsConfig{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 TestFsConfig_TmpFallback(t *testing.T) {
cfg := http.UploadsConfig{Dir: "test"}
assert.Equal(t, "test", cfg.TmpDir())
cfg = http.UploadsConfig{Dir: ""}
assert.Equal(t, os.TempDir(), cfg.TmpDir())
}
|