Skip to content

Commit

Permalink
Merge pull request #57 from maxcnunes/deps-pkgs
Browse files Browse the repository at this point in the history
Move checkers with external deps into sub packages
  • Loading branch information
dselans authored Nov 26, 2018
2 parents d8238da + 26212ad commit 0a91287
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 50 deletions.
11 changes: 6 additions & 5 deletions checkers/disk_usage.go → checkers/disk/disk_usage.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package checkers
package diskchk

import (
"fmt"

"github.com/shirou/gopsutil/disk"
)

Expand All @@ -13,8 +14,8 @@ import (
// "CriticalThreshold" is _required_; set percent (more than 0 and less 100) of free space at specified path,
// which triggers critical.
type DiskUsageConfig struct {
Path string
WarningThreshold float64
Path string
WarningThreshold float64
CriticalThreshold float64
}

Expand All @@ -23,7 +24,7 @@ type DiskUsage struct {
Config *DiskUsageConfig
}

func NewDiskUsage(cfg *DiskUsageConfig) (*DiskUsage, error) {
func NewDiskUsage(cfg *DiskUsageConfig) (*DiskUsage, error) {
if cfg == nil {
return nil, fmt.Errorf("Passed in config cannot be nil")
}
Expand Down Expand Up @@ -77,4 +78,4 @@ func validateDiskUsageConfig(cfg *DiskUsageConfig) error {
}

return nil
}
}
34 changes: 17 additions & 17 deletions checkers/disk_usage_test.go → checkers/disk/disk_usage_test.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
package checkers
package diskchk

import (
. "github.com/onsi/gomega"
"os"
"testing"

. "github.com/onsi/gomega"
)

func TestNewDiskUsage(t *testing.T) {
RegisterTestingT(t)

t.Run("Happy path and set thresholds", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: 5,
Path: os.TempDir(),
WarningThreshold: 5,
CriticalThreshold: 5,
}

Expand Down Expand Up @@ -58,8 +59,8 @@ func TestValidateDiskUsageConfig(t *testing.T) {

t.Run("Should error if warning threshold value set out of bounds", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: -1,
Path: os.TempDir(),
WarningThreshold: -1,
CriticalThreshold: 100,
}

Expand All @@ -70,8 +71,8 @@ func TestValidateDiskUsageConfig(t *testing.T) {

t.Run("Should error if critical threshold value set out of bounds", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: 10,
Path: os.TempDir(),
WarningThreshold: 10,
CriticalThreshold: 101,
}

Expand All @@ -87,8 +88,8 @@ func TestDiskUsageStatus(t *testing.T) {

t.Run("Should error when critical threshold reached", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: "/unknown/path",
WarningThreshold: 50.0,
Path: "/unknown/path",
WarningThreshold: 50.0,
CriticalThreshold: 50.0,
}

Expand All @@ -104,8 +105,8 @@ func TestDiskUsageStatus(t *testing.T) {

t.Run("Should error when critical threshold reached", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: 90,
Path: os.TempDir(),
WarningThreshold: 90,
CriticalThreshold: 1,
}

Expand All @@ -119,11 +120,10 @@ func TestDiskUsageStatus(t *testing.T) {
Expect(err.Error()).To(ContainSubstring("Critical: disk usage too high"))
})


t.Run("Should error when warning threshold reached", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: 1,
Path: os.TempDir(),
WarningThreshold: 1,
CriticalThreshold: 99,
}

Expand All @@ -138,8 +138,8 @@ func TestDiskUsageStatus(t *testing.T) {

t.Run("Shouldn't return error when everything is ok", func(t *testing.T) {
cfg := &DiskUsageConfig{
Path: os.TempDir(),
WarningThreshold: 99,
Path: os.TempDir(),
WarningThreshold: 99,
CriticalThreshold: 99,
}

Expand Down
24 changes: 13 additions & 11 deletions checkers/memcached.go → checkers/memcache/memcached.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package checkers
package memcachechk

import (
"bytes"
"fmt"
"github.com/bradfitz/gomemcache/memcache"
"net"
"net/url"

"github.com/bradfitz/gomemcache/memcache"
)

const (
Expand All @@ -20,11 +21,11 @@ const (
// "Timeout" defines timeout for socket write/read (useful for servers hosted on different machine)
// "Ping" is optional; Ping establishes tcp connection to memcached server.
type MemcachedConfig struct {
Url string
Timeout int32
Ping bool
Set *MemcachedSetOptions
Get *MemcachedGetOptions
Url string
Timeout int32
Ping bool
Set *MemcachedSetOptions
Get *MemcachedGetOptions
}

type MemcachedClient interface {
Expand All @@ -33,7 +34,7 @@ type MemcachedClient interface {
}

type Memcached struct {
Config *MemcachedConfig
Config *MemcachedConfig
wrapper *MemcachedClientWrapper
}

Expand Down Expand Up @@ -77,7 +78,7 @@ func NewMemcached(cfg *MemcachedConfig) (*Memcached, error) {
mcWrapper := &MemcachedClientWrapper{memcache.New(cfg.Url)}

return &Memcached{
Config: cfg,
Config: cfg,
wrapper: mcWrapper,
}, nil
}
Expand All @@ -98,7 +99,7 @@ func (mc *Memcached) Status() (interface{}, error) {
}

if mc.Config.Get != nil {
val, err := mc.wrapper.GetClient().Get(mc.Config.Get.Key);
val, err := mc.wrapper.GetClient().Get(mc.Config.Get.Key)
if err != nil {
if err == memcache.ErrCacheMiss {
if !mc.Config.Get.NoErrorMissingKey {
Expand Down Expand Up @@ -158,11 +159,12 @@ func validateMemcachedConfig(cfg *MemcachedConfig) error {

return nil
}

// Used to simplify testing routines
type MemcachedClientWrapper struct {
MemcachedClient
}

func (mcw MemcachedClientWrapper) GetClient() MemcachedClient {
return mcw.MemcachedClient
}
}
21 changes: 11 additions & 10 deletions checkers/memcached_test.go → checkers/memcache/memcached_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package checkers
package memcachechk

import (
"fmt"
"github.com/bradfitz/gomemcache/memcache"
. "github.com/onsi/gomega"
"math/rand"
"strconv"
"testing"

"github.com/bradfitz/gomemcache/memcache"
. "github.com/onsi/gomega"
)

const (
Expand All @@ -21,7 +22,7 @@ func TestNewMemcached(t *testing.T) {
t.Run("Happy path", func(t *testing.T) {
url := testUrl
cfg := &MemcachedConfig{
Url: url,
Url: url,
Ping: true,
}
mc, server, err := setupMemcached(cfg)
Expand All @@ -43,7 +44,7 @@ func TestNewMemcached(t *testing.T) {
t.Run("Memcached should contain Client and Config", func(t *testing.T) {
url := testUrl
cfg := &MemcachedConfig{
Url: url,
Url: url,
Ping: true,
}
mc, err := NewMemcached(cfg)
Expand Down Expand Up @@ -118,7 +119,7 @@ func TestValidateMemcachedConfig(t *testing.T) {
cfg := &MemcachedConfig{
Url: testUrl,
Get: &MemcachedGetOptions{
Key: "should_return_valid",
Key: "should_return_valid",
Expect: []byte("should_return_valid"),
},
}
Expand Down Expand Up @@ -210,7 +211,7 @@ func TestMemcachedStatus(t *testing.T) {
t.Run("should use default .Value if .Value is set to empty string", func(t *testing.T) {
cfg := &MemcachedConfig{
Set: &MemcachedSetOptions{
Key: "should_return_default",
Key: "should_return_default",
Value: "",
},
}
Expand Down Expand Up @@ -337,13 +338,13 @@ func setupMemcached(cfg *MemcachedConfig) (*Memcached, *MockServer, error) {
cfg.Url = testUrl
checker := &Memcached{
wrapper: &MemcachedClientWrapper{&MockMemcachedClient{}},
Config: cfg,
Config: cfg,
}

return checker, server, nil
}

type MockServer struct {}
type MockServer struct{}

func (s *MockServer) Close() {
emulateServerShutdown = true
Expand All @@ -353,7 +354,7 @@ func (s *MockServer) Reset() {
emulateServerShutdown = false
}

type MockMemcachedClient struct {}
type MockMemcachedClient struct{}

func (m *MockMemcachedClient) Get(key string) (item *memcache.Item, err error) {
if emulateServerShutdown {
Expand Down
5 changes: 3 additions & 2 deletions checkers/mongo.go → checkers/mongo/mongo.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package checkers
package mongochk

import (
"fmt"
"github.com/globalsign/mgo"
"time"

"github.com/globalsign/mgo"
)

const (
Expand Down
7 changes: 4 additions & 3 deletions checkers/mongo_test.go → checkers/mongo/mongo_test.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package checkers
package mongochk

import (
"fmt"
. "github.com/onsi/gomega"
"github.com/zaffka/mongodb-boltdb-mock/db"
"testing"
"time"

. "github.com/onsi/gomega"
"github.com/zaffka/mongodb-boltdb-mock/db"
)

func TestNewMongo(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion checkers/redis.go → checkers/redis/redis.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package checkers
package redischk

import (
"crypto/tls"
Expand Down
2 changes: 1 addition & 1 deletion checkers/redis_test.go → checkers/redis/redis_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package checkers
package redischk

import (
"fmt"
Expand Down

0 comments on commit 0a91287

Please sign in to comment.