diff options
author | Wolfy-J <[email protected]> | 2018-06-13 14:20:22 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-13 14:20:22 +0300 |
commit | fe01e08efcb154ad0f5d169eb4cae514b5507259 (patch) | |
tree | 13cb59da699cb2bfea4a8c7833aeba7fe10014cb /service | |
parent | 2848bdb1f72395340f9702f6614073a50b35fe2d (diff) |
forbids test
Diffstat (limited to 'service')
-rw-r--r-- | service/http/uploads_test.go | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/service/http/uploads_test.go b/service/http/uploads_test.go index deb5fa57..c3dad6be 100644 --- a/service/http/uploads_test.go +++ b/service/http/uploads_test.go @@ -139,6 +139,68 @@ func TestServer_Upload_File_NoTmpDir(t *testing.T) { assert.Equal(t, `{"upload":`+fs+`}`, string(b)) } + +func TestServer_Upload_File_Forbids(t *testing.T) { + st := &Handler{ + cfg: &Config{ + MaxRequest: 1024, + Uploads: &UploadsConfig{ + Dir: os.TempDir(), + Forbid: []string{".go"}, + }, + }, + rr: roadrunner.NewServer(&roadrunner.ServerConfig{ + Command: "php ../../php-src/tests/http/client.php upload pipes", + Relay: "pipes", + Pool: &roadrunner.Config{ + NumWorkers: 1, + AllocateTimeout: 10000000, + DestroyTimeout: 10000000, + }, + }), + } + + assert.NoError(t, st.rr.Start()) + defer st.rr.Stop() + + hs := &http.Server{Addr: ":8021", Handler: st,} + defer hs.Shutdown(context.Background()) + + go func() { hs.ListenAndServe() }() + time.Sleep(time.Millisecond * 10) + + var mb bytes.Buffer + w := multipart.NewWriter(&mb) + + f := mustOpen("uploads_test.go") + defer f.Close() + fw, err := w.CreateFormFile("upload", f.Name()) + assert.NotNil(t, fw) + assert.NoError(t, err) + io.Copy(fw, f) + + w.Close() + + req, err := http.NewRequest("POST", "http://localhost"+hs.Addr, &mb) + assert.NoError(t, err) + + req.Header.Set("Content-Type", w.FormDataContentType()) + + r, err := http.DefaultClient.Do(req) + assert.NoError(t, err) + defer r.Body.Close() + + b, err := ioutil.ReadAll(r.Body) + assert.NoError(t, err) + + assert.NoError(t, err) + assert.Equal(t, 200, r.StatusCode) + + fs := fileString("uploads_test.go", 7, "application/octet-stream") + + assert.Equal(t, `{"upload":`+fs+`}`, string(b)) +} + func Test_FileExists(t *testing.T) { assert.True(t, exists("uploads_test.go")) assert.False(t, exists("uploads_test.")) |