mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
88 lines
3.4 KiB
Haskell
88 lines
3.4 KiB
Haskell
module Semantic.Stat.Spec (spec) where
|
|
|
|
import Control.Exception
|
|
import Network.Socket hiding (recv)
|
|
import Network.Socket.ByteString
|
|
import Semantic.Telemetry.Stat
|
|
import Semantic.Config
|
|
import System.Environment
|
|
|
|
import SpecHelpers
|
|
|
|
withSocketPair :: ((Socket, Socket) -> IO c) -> IO c
|
|
withSocketPair = bracket create release
|
|
where create = socketPair AF_UNIX Datagram defaultProtocol
|
|
release (client, server) = close client >> close server
|
|
|
|
withEnvironment :: String -> String -> (() -> IO ()) -> IO ()
|
|
withEnvironment key value = bracket (setEnv key value) (const (unsetEnv key))
|
|
|
|
-- NOTE: These cannot easily run in parallel because we test things like
|
|
-- setting/unsetting the environment.
|
|
spec :: Spec
|
|
spec = do
|
|
describe "defaultStatsClient" $ do
|
|
it "sets appropriate defaults" $ do
|
|
StatsClient{..} <- defaultStatsClient
|
|
statsClientNamespace `shouldBe` "semantic"
|
|
statsClientUDPHost `shouldBe` "127.0.0.1"
|
|
statsClientUDPPort `shouldBe` "28125"
|
|
|
|
around (withEnvironment "STATS_ADDR" "localhost:8125") $
|
|
it "takes STATS_ADDR from environment" $ do
|
|
StatsClient{..} <- defaultStatsClient
|
|
statsClientUDPHost `shouldBe` "localhost"
|
|
statsClientUDPPort `shouldBe` "8125"
|
|
|
|
around (withEnvironment "STATS_ADDR" "localhost") $
|
|
it "handles STATS_ADDR with just hostname" $ do
|
|
StatsClient{..} <- defaultStatsClient
|
|
statsClientUDPHost `shouldBe` "localhost"
|
|
statsClientUDPPort `shouldBe` "28125"
|
|
|
|
around (withEnvironment "DOGSTATSD_HOST" "0.0.0.0") $
|
|
it "takes DOGSTATSD_HOST from environment" $ do
|
|
StatsClient{..} <- defaultStatsClient
|
|
statsClientUDPHost `shouldBe` "0.0.0.0"
|
|
statsClientUDPPort `shouldBe` "28125"
|
|
|
|
describe "renderDatagram" $ do
|
|
let key = "app.metric"
|
|
|
|
describe "counters" $ do
|
|
it "renders increment" $
|
|
renderDatagram "" (increment key []) `shouldBe` "app.metric:1|c"
|
|
it "renders decrement" $
|
|
renderDatagram "" (decrement key []) `shouldBe` "app.metric:-1|c"
|
|
it "renders count" $
|
|
renderDatagram "" (count key 8 []) `shouldBe` "app.metric:8|c"
|
|
|
|
it "renders statsClientNamespace" $
|
|
renderDatagram "pre" (increment key []) `shouldBe` "pre.app.metric:1|c"
|
|
|
|
describe "tags" $ do
|
|
it "renders a tag" $ do
|
|
let inc = increment key [("key", "value")]
|
|
renderDatagram "" inc `shouldBe` "app.metric:1|c|#key:value"
|
|
it "renders a tag without value" $ do
|
|
let inc = increment key [("a", "")]
|
|
renderDatagram "" inc `shouldBe` "app.metric:1|c|#a"
|
|
it "renders tags" $ do
|
|
let inc = increment key [("key", "value"), ("a", "true")]
|
|
renderDatagram "" inc `shouldBe` "app.metric:1|c|#key:value,a:true"
|
|
it "renders tags without value" $ do
|
|
let inc = increment key [("key", "value"), ("a", "")]
|
|
renderDatagram "" inc `shouldBe` "app.metric:1|c|#key:value,a"
|
|
|
|
describe "sendStat" $
|
|
it "delivers datagram" $ do
|
|
client@StatsClient{..} <- defaultStatsClient
|
|
withSocketPair $ \(clientSoc, serverSoc) -> do
|
|
sendStat client { statsClientUDPSocket = clientSoc } (increment "app.metric" [])
|
|
info <- recv serverSoc 1024
|
|
info `shouldBe` "semantic.app.metric:1|c"
|
|
|
|
-- Defaults are all driven by defaultConfig.
|
|
defaultStatsClient :: IO StatsClient
|
|
defaultStatsClient = defaultConfig defaultOptions >>= \Config{..} -> statsClient configStatsHost configStatsPort configAppName
|