diff options
Diffstat (limited to 'service/http/config_test.go')
-rw-r--r-- | service/http/config_test.go | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/service/http/config_test.go b/service/http/config_test.go index 44c58f35..cb804f4a 100644 --- a/service/http/config_test.go +++ b/service/http/config_test.go @@ -64,6 +64,47 @@ func Test_Config_NoWorkers(t *testing.T) { assert.Error(t, cfg.Valid()) } +func Test_Config_NoPool(t *testing.T) { + cfg := &Config{ + Enable: true, + Address: ":8080", + MaxRequest: 1024, + Uploads: &UploadsConfig{ + Dir: os.TempDir(), + Forbid: []string{".go"}, + }, + Workers: &roadrunner.ServerConfig{ + Command: "php php-src/tests/client.php echo pipes", + Relay: "pipes", + Pool: &roadrunner.Config{ + NumWorkers: 0, + AllocateTimeout: time.Second, + DestroyTimeout: time.Second, + }, + }, + } + + assert.Error(t, cfg.Valid()) +} + +func Test_Config_DeadPool(t *testing.T) { + cfg := &Config{ + Enable: true, + Address: ":8080", + MaxRequest: 1024, + Uploads: &UploadsConfig{ + Dir: os.TempDir(), + Forbid: []string{".go"}, + }, + Workers: &roadrunner.ServerConfig{ + Command: "php php-src/tests/client.php echo pipes", + Relay: "pipes", + }, + } + + assert.Error(t, cfg.Valid()) +} + func Test_Config_InvalidAddress(t *testing.T) { cfg := &Config{ Enable: true, |