2016-09-13 18:35:10 +03:00
|
|
|
module Source.Spec where
|
|
|
|
|
|
|
|
import Prologue
|
2016-09-13 18:39:27 +03:00
|
|
|
import Range
|
2016-09-13 18:35:10 +03:00
|
|
|
import Source
|
2016-09-13 19:09:18 +03:00
|
|
|
import SourceSpan
|
2016-09-13 18:35:10 +03:00
|
|
|
import Test.Hspec
|
2016-09-13 18:39:27 +03:00
|
|
|
import Test.Hspec.QuickCheck
|
2016-09-13 18:35:10 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
2016-09-13 18:39:27 +03:00
|
|
|
spec = parallel $ do
|
|
|
|
describe "actualLineRanges" $ do
|
|
|
|
prop "produces 1 more range than there are newlines" $
|
|
|
|
\ s -> length (actualLineRanges (totalRange s) (fromList s)) `shouldBe` succ (length (filter (== '\n') s))
|
2016-09-13 18:56:43 +03:00
|
|
|
|
|
|
|
prop "produces exhaustive ranges" $
|
|
|
|
\ s -> let source = fromList s in
|
|
|
|
foldMap (`slice` source) (actualLineRanges (totalRange s) source) `shouldBe` source
|
2016-09-13 18:59:46 +03:00
|
|
|
|
2016-09-13 19:09:18 +03:00
|
|
|
describe "sourceSpanToRange" $ do
|
2016-09-13 19:37:59 +03:00
|
|
|
prop "computes the range covering a span in some source" $
|
|
|
|
\ s -> let source = fromList s
|
|
|
|
spans = zipWith (\ i Range {..} -> SourceSpan "" (SourcePos i 0) (SourcePos i (end - start))) [0..] ranges
|
|
|
|
ranges = actualLineRanges (totalRange source) source in
|
2016-09-13 20:14:02 +03:00
|
|
|
sourceSpanToRange source <$> spans `shouldBe` ranges
|