Skip to content

Commit

Permalink
Add process stream error test
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanCacqueray committed Sep 19, 2023
1 parent fba3554 commit 9ce14a6
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 7 deletions.
39 changes: 32 additions & 7 deletions src/Macroscope/Test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ import Monocle.Backend.Documents qualified as D
import Monocle.Backend.Index qualified as I
import Monocle.Backend.Provisioner qualified
import Monocle.Backend.Queries qualified as Q
import Monocle.Backend.Test (withTenantConfig)
import Monocle.Backend.Test (fakeChangePB, withTenantConfig)
import Monocle.Backend.Test qualified as BT (fakeChange, fakeDate, fakeDateAlt)
import Monocle.Client
import Monocle.Config qualified as Config
import Monocle.Effects
import Monocle.Entity (CrawlerName (..))
import Monocle.Entity (CrawlerName (..), Entity (Project))
import Monocle.Env
import Monocle.Prelude
import Monocle.Protob.Crawler qualified as CrawlerPB
import Streaming.Prelude qualified as Streaming
import Test.Tasty
import Test.Tasty.HUnit
Expand All @@ -45,12 +46,36 @@ testCrawlingPoint = do
fakeChange2 = fakeChange1 {D.echangeId = "efake2", D.echangeUpdatedAt = BT.fakeDateAlt}
I.indexChanges [fakeChange1, fakeChange2]
withTestApi (mkAppEnv fakeConfig) $ \client -> do
let stream date name
| date == BT.fakeDateAlt && name == "opendev/neutron" = pure mempty
| otherwise = error "Bad crawling point"
void $ runLentilleM client $ Macroscope.runStream apiKey indexName (CrawlerName crawlerName) (Macroscope.Changes stream)
assertEqual "Fetched at expected crawling point" True True
void $ runLentilleM client do
(oldestAge, oldestEntity) <- getOldest
liftIO $ assertEqual "Oldest entity is correct" oldestEntity (Project "opendev/neutron")

Macroscope.runStream apiKey indexName (CrawlerName crawlerName) (Macroscope.Changes badStream)

(currentOldestAge, _) <- getOldest
liftIO $ assertEqual "Commit date is not updated on failure" oldestAge currentOldestAge

Macroscope.runStream apiKey indexName (CrawlerName crawlerName) (Macroscope.Changes goodStream)

(newOldestAge, _) <- getOldest
liftIO $ assertBool "Commit date updated" (newOldestAge > oldestAge)
where
-- A document stream that yield an error
badStream date name
| date == BT.fakeDateAlt && name == "opendev/neutron" = do
Streaming.yield $ Right (fakeChangePB, [])
Streaming.yield $ Left (DecodeError ["Oops"])
| otherwise = error "Bad crawling point"

-- A document stream that yield a change
goodStream date name
| date == BT.fakeDateAlt && name == "opendev/neutron" = do
Streaming.yield $ Right (fakeChangePB, [])
| otherwise = error "Bad crawling point"

-- Helper function to get the oldest entity age
getOldest = fromMaybe (error "no entity!") <$> Macroscope.getStreamOldestEntity indexName (from crawlerName) projectEntity 0
projectEntity = CrawlerPB.EntityTypeENTITY_TYPE_PROJECT
fakeConfig =
(mkConfig (from indexName))
{ Config.crawlers_api_key = Just (from apiKey)
Expand Down
2 changes: 2 additions & 0 deletions src/Macroscope/Worker.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
module Macroscope.Worker (
runStream,
DocumentStream (..),
-- test helper
getStreamOldestEntity,
) where

import Data.Vector qualified as V
Expand Down
38 changes: 38 additions & 0 deletions src/Monocle/Backend/Test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ import Monocle.Config qualified as Config
import Monocle.Entity
import Monocle.Env
import Monocle.Prelude
import Monocle.Protob.Change qualified as ChangePB
import Monocle.Protob.Crawler qualified as CrawlerPB
import Monocle.Protob.Metric qualified as MetricPB
import Monocle.Protob.Search qualified as MetricPB
import Monocle.Protob.Search qualified as SearchPB
import Monocle.Search.Query (defaultQueryFlavor)
import Monocle.Search.Query qualified as Q
import Proto3.Suite (Enumerated (Enumerated))
import Relude.Unsafe ((!!))
import Streaming.Prelude qualified as Streaming
import Test.Tasty.HUnit ((@?=))
Expand All @@ -45,6 +47,42 @@ eve = Author "eve" "e"
fakeAuthor = Author "John" "John"
fakeAuthorAlt = Author "John Doe/12" "review.opendev.org/John Doe/12"

fakeChangePB :: ChangePB.Change
fakeChangePB =
ChangePB.Change
{ changeId = mempty
, changeNumber = 42
, changeChangeId = mempty
, changeTitle = mempty
, changeText = mempty
, changeUrl = mempty
, changeCommitCount = 1
, changeAdditions = 2
, changeDeletions = 0
, changeChangedFilesCount = 1
, changeChangedFiles = mempty
, changeCommits = mempty
, changeRepositoryPrefix = mempty
, changeRepositoryFullname = mempty
, changeRepositoryShortname = mempty
, changeAuthor = Nothing
, changeOptionalMergedBy = Nothing
, changeBranch = mempty
, changeTargetBranch = mempty
, changeCreatedAt = Just (from fakeDate)
, changeOptionalMergedAt = Nothing
, changeUpdatedAt = Just (from fakeDate)
, changeOptionalClosedAt = Nothing
, changeState = Enumerated (Right ChangePB.Change_ChangeStateOpen)
, changeOptionalDuration = Nothing
, changeMergeable = mempty
, changeLabels = mempty
, changeAssignees = mempty
, changeApprovals = mempty
, changeDraft = False
, changeOptionalSelfMerged = Nothing
}

fakeChange :: EChange
fakeChange =
EChange
Expand Down

0 comments on commit 9ce14a6

Please sign in to comment.