summaryrefslogtreecommitdiff
path: root/config_test.go
blob: e51cb2c44020a0dd542162b323dda5e5aa6fc8e2 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package roadrunner

import (
	"github.com/stretchr/testify/assert"
	"testing"
	"time"
)

func Test_NumWorkers(t *testing.T) {
	cfg := Config{
		AllocateTimeout: time.Second,
		DestroyTimeout:  time.Second * 10,
	}
	err := cfg.Valid()

	assert.NotNil(t, err)
	assert.Equal(t, "pool.NumWorkers must be set", err.Error())
}

func Test_NumWorkers_Default(t *testing.T) {
	cfg := Config{
		AllocateTimeout: time.Second,
		DestroyTimeout:  time.Second * 10,
	}

	assert.NoError(t, cfg.InitDefaults())
	err := cfg.Valid()
	assert.Nil(t, err)
}

func Test_AllocateTimeout(t *testing.T) {
	cfg := Config{
		NumWorkers:     10,
		DestroyTimeout: time.Second * 10,
	}
	err := cfg.Valid()

	assert.NotNil(t, err)
	assert.Equal(t, "pool.AllocateTimeout must be set", err.Error())
}

func Test_DestroyTimeout(t *testing.T) {
	cfg := Config{
		NumWorkers:      10,
		AllocateTimeout: time.Second,
	}
	err := cfg.Valid()

	assert.NotNil(t, err)
	assert.Equal(t, "pool.DestroyTimeout must be set", err.Error())
}