2017-03-02 01:06:58 +03:00
|
|
|
module GitmonClientSpec where
|
|
|
|
|
|
|
|
import Data.Aeson
|
|
|
|
import Data.Aeson.Types
|
|
|
|
import Data.ByteString.Char8 (split, ByteString)
|
2017-03-02 03:53:13 +03:00
|
|
|
import Data.Foldable
|
2017-03-02 01:06:58 +03:00
|
|
|
import Data.Maybe (fromJust)
|
|
|
|
import Data.Text hiding (split, take)
|
|
|
|
import Git.Libgit2
|
|
|
|
import Git.Repository
|
|
|
|
import Git.Types hiding (Object)
|
|
|
|
import GitmonClient
|
|
|
|
import Network.Socket hiding (recv)
|
|
|
|
import Network.Socket.ByteString
|
2017-03-02 01:48:39 +03:00
|
|
|
import Prelude hiding (lookup)
|
2017-03-02 03:57:32 +03:00
|
|
|
import Prologue (liftIO)
|
2017-03-02 01:48:39 +03:00
|
|
|
import System.Environment (setEnv)
|
2017-03-02 03:53:13 +03:00
|
|
|
import Test.Hspec hiding (shouldBe, shouldSatisfy)
|
2017-03-02 01:06:58 +03:00
|
|
|
import Test.Hspec.Expectations.Pretty
|
2017-03-02 21:22:18 +03:00
|
|
|
import Control.Exception
|
2017-03-02 01:06:58 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
2017-03-02 21:22:18 +03:00
|
|
|
spec =
|
2017-03-02 01:06:58 +03:00
|
|
|
describe "gitmon" $ do
|
2017-03-02 03:57:32 +03:00
|
|
|
let wd = "test/fixtures/git/examples/all-languages.git"
|
2017-03-02 21:22:18 +03:00
|
|
|
it "receives commands in order" . withSocketPair $ \(client, server) ->
|
2017-03-02 03:57:32 +03:00
|
|
|
withRepository lgFactory wd $ do
|
2017-03-02 01:06:58 +03:00
|
|
|
object <- parseObjOid (pack "dfac8fd681b0749af137aebf3203e77a06fbafc2")
|
|
|
|
commit <- reportGitmon' client "cat-file" $ lookupCommit object
|
|
|
|
info <- liftIO $ recv server 1024
|
|
|
|
|
|
|
|
let [update, schedule, finish] = infoToCommands info
|
|
|
|
|
|
|
|
liftIO $ shouldBe (commitOid commit) object
|
|
|
|
liftIO $ shouldBe update (Just "update")
|
|
|
|
liftIO $ shouldBe schedule (Just "schedule")
|
|
|
|
liftIO $ shouldBe finish (Just "finish")
|
|
|
|
|
2017-03-02 21:22:18 +03:00
|
|
|
it "receives update command with correct data" . withSocketPair $ \(client, server) ->
|
2017-03-02 01:48:39 +03:00
|
|
|
withRepository lgFactory wd $ do
|
|
|
|
liftIO $ setEnv "GIT_DIR" wd
|
|
|
|
liftIO $ setEnv "GIT_SOCKSTAT_VAR_real_ip" "127.0.0.1"
|
|
|
|
liftIO $ setEnv "GIT_SOCKSTAT_VAR_user_id" "1"
|
|
|
|
liftIO $ setEnv "GIT_SOCKSTAT_VAR_repo_id" "2"
|
|
|
|
liftIO $ setEnv "GIT_SOCKSTAT_VAR_repo_name" "examples/all-languages"
|
|
|
|
|
|
|
|
object <- parseObjOid (pack "dfac8fd681b0749af137aebf3203e77a06fbafc2")
|
|
|
|
commit <- reportGitmon' client "cat-file" $ lookupCommit object
|
|
|
|
info <- liftIO $ recv server 1024
|
|
|
|
|
2017-03-02 03:53:13 +03:00
|
|
|
let [updateData, _, finishData] = infoToData info
|
2017-03-02 01:48:39 +03:00
|
|
|
|
|
|
|
liftIO $ shouldBe (commitOid commit) object
|
2017-03-02 03:53:13 +03:00
|
|
|
liftIO $ shouldBe (either id gitDir updateData) wd
|
|
|
|
liftIO $ shouldBe (either id program updateData) "cat-file"
|
2017-03-02 03:57:32 +03:00
|
|
|
liftIO $ shouldBe (either Just realIP updateData) (Just "127.0.0.1")
|
|
|
|
liftIO $ shouldBe (either Just repoID updateData) (Just "2")
|
2017-03-02 03:53:13 +03:00
|
|
|
liftIO $ shouldBe (either Just repoName updateData) (Just "examples/all-languages")
|
2017-03-02 03:57:32 +03:00
|
|
|
liftIO $ shouldBe (either Just userID updateData) (Just "1")
|
2017-03-02 03:53:13 +03:00
|
|
|
liftIO $ shouldBe (either id via updateData) "semantic-diff"
|
|
|
|
|
|
|
|
liftIO $ shouldSatisfy (either (const (-1)) cpu finishData) (>= 0)
|
|
|
|
liftIO $ shouldSatisfy (either (const (-1)) diskReadBytes finishData) (>= 0)
|
|
|
|
liftIO $ shouldSatisfy (either (const (-1)) diskWriteBytes finishData) (>= 0)
|
|
|
|
liftIO $ shouldSatisfy (either (const (-1)) resultCode finishData) (>= 0)
|
2017-03-02 01:48:39 +03:00
|
|
|
|
2017-03-02 21:22:18 +03:00
|
|
|
it "returns the correct git result if the socket is unavailable" . withSocketPair $ \(client, server) ->
|
2017-03-02 04:24:43 +03:00
|
|
|
withRepository lgFactory wd $ do
|
|
|
|
liftIO $ close client
|
|
|
|
|
|
|
|
object <- parseObjOid (pack "dfac8fd681b0749af137aebf3203e77a06fbafc2")
|
|
|
|
commit <- reportGitmon' client "cat-file" $ lookupCommit object
|
|
|
|
info <- liftIO $ recv server 1024
|
|
|
|
|
|
|
|
liftIO $ shouldBe (commitOid commit) object
|
|
|
|
liftIO $ shouldBe "" info
|
|
|
|
|
2017-03-02 21:22:18 +03:00
|
|
|
withSocketPair :: ((Socket, Socket) -> IO c) -> IO c
|
|
|
|
withSocketPair =
|
|
|
|
bracket
|
|
|
|
(socketPair AF_UNIX Stream defaultProtocol)
|
|
|
|
(\(client, server) -> do
|
|
|
|
close client
|
|
|
|
close server)
|
|
|
|
|
2017-03-02 01:06:58 +03:00
|
|
|
infoToCommands :: ByteString -> [Maybe Text]
|
|
|
|
infoToCommands input = command' . toObject <$> Prelude.take 3 (split '\n' input)
|
|
|
|
where
|
|
|
|
command' :: Object -> Maybe Text
|
|
|
|
command' = parseMaybe (.: "command")
|
|
|
|
|
2017-03-02 03:53:13 +03:00
|
|
|
infoToData :: ByteString -> [Either String ProcessData]
|
2017-03-02 01:48:39 +03:00
|
|
|
infoToData input = data' . toObject <$> Prelude.take 3 (split '\n' input)
|
2017-03-02 03:53:13 +03:00
|
|
|
where data' = parseEither parser
|
|
|
|
parser o = do
|
|
|
|
dataO <- o .: "data"
|
|
|
|
asum [ ProcessUpdateData <$> (dataO .: "git_dir") <*> (dataO .: "program") <*> (dataO .:? "real_ip") <*> (dataO .:? "repo_id") <*> (dataO .:? "repo_name") <*> (dataO .:? "user_id") <*> (dataO .: "via")
|
|
|
|
, ProcessFinishData <$> (dataO .: "cpu") <*> (dataO .: "disk_read_bytes") <*> (dataO .: "disk_write_bytes") <*> (dataO .: "result_code")
|
|
|
|
, pure ProcessScheduleData
|
|
|
|
]
|
2017-03-02 01:06:58 +03:00
|
|
|
|
2017-03-02 01:48:39 +03:00
|
|
|
toObject :: ByteString -> Object
|
|
|
|
toObject = fromJust . decodeStrict
|