mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-19 06:11:51 +03:00
ac99fc0fac
This should improve experience of users who use Megaparsec with Alex and Happy. The commit also introduces some minor changes in ‘Text.Megaparsec.Pos’ module (improving argument order).
159 lines
6.0 KiB
Haskell
159 lines
6.0 KiB
Haskell
--
|
||
-- QuickCheck tests for Megaparsec's textual source positions.
|
||
--
|
||
-- Copyright © 2015–2016 Megaparsec contributors
|
||
--
|
||
-- Redistribution and use in source and binary forms, with or without
|
||
-- modification, are permitted provided that the following conditions are
|
||
-- met:
|
||
--
|
||
-- * Redistributions of source code must retain the above copyright notice,
|
||
-- this list of conditions and the following disclaimer.
|
||
--
|
||
-- * Redistributions in binary form must reproduce the above copyright
|
||
-- notice, this list of conditions and the following disclaimer in the
|
||
-- documentation and/or other materials provided with the distribution.
|
||
--
|
||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS “AS IS” AND ANY
|
||
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||
-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||
-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||
-- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||
-- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||
-- POSSIBILITY OF SUCH DAMAGE.
|
||
|
||
{-# OPTIONS -fno-warn-orphans #-}
|
||
|
||
module Pos (tests) where
|
||
|
||
import Control.Exception (try, evaluate)
|
||
import Data.Char (isAlphaNum)
|
||
import Data.List (intercalate, isInfixOf, elemIndices)
|
||
|
||
import Test.Framework
|
||
import Test.Framework.Providers.QuickCheck2 (testProperty)
|
||
import Test.QuickCheck
|
||
|
||
import Text.Megaparsec.Pos
|
||
import Util (updatePosString)
|
||
|
||
#if !MIN_VERSION_base(4,8,0)
|
||
import Control.Applicative ((<$>), (<*>), pure)
|
||
#endif
|
||
|
||
tests :: Test
|
||
tests = testGroup "Textual source positions"
|
||
[ testProperty "components" prop_components
|
||
, testProperty "exception on invalid position" prop_exception
|
||
, testProperty "show file name in source positions" prop_showFileName
|
||
, testProperty "show line in source positions" prop_showLine
|
||
, testProperty "show column in source positions" prop_showColumn
|
||
, testProperty "initial position" prop_initialPos
|
||
, testProperty "increment source line" prop_incSourceLine
|
||
, testProperty "increment source column" prop_incSourceColumn
|
||
, testProperty "set source name" prop_setSourceName
|
||
, testProperty "set source line" prop_setSourceLine
|
||
, testProperty "set source column" prop_setSourceColumn
|
||
, testProperty "position updating" prop_updating ]
|
||
|
||
instance Arbitrary SourcePos where
|
||
arbitrary = newPos <$> fileName <*> choose (1, 1000) <*> choose (1, 100)
|
||
|
||
fileName :: Gen String
|
||
fileName = do
|
||
delimiter <- pure <$> elements "/\\"
|
||
dirs <- listOf1 simpleName
|
||
extension <- simpleName
|
||
frequency [ (1, return [])
|
||
, (7, return $ intercalate delimiter dirs ++ "." ++ extension)]
|
||
where simpleName = listOf1 (arbitrary `suchThat` isAlphaNum)
|
||
|
||
prop_components :: SourcePos -> Bool
|
||
prop_components pos = pos == copy
|
||
where copy = newPos (sourceName pos) (sourceLine pos) (sourceColumn pos)
|
||
|
||
prop_exception :: String -> Int -> Int -> Property
|
||
prop_exception file l c = ioProperty $ do
|
||
result <- try . evaluate $ newPos file l c
|
||
return $ r === result
|
||
where r | l < 1 || c < 1 = Left $ InvalidTextualPosition file l c
|
||
| otherwise = Right $ newPos file l c
|
||
|
||
prop_showFileName :: SourcePos -> Bool
|
||
prop_showFileName pos = sourceName pos `isInfixOf` show pos
|
||
|
||
prop_showLine :: SourcePos -> Bool
|
||
prop_showLine pos = show (sourceLine pos) `isInfixOf` show pos
|
||
|
||
prop_showColumn :: SourcePos -> Bool
|
||
prop_showColumn pos = show (sourceColumn pos) `isInfixOf` show pos
|
||
|
||
prop_initialPos :: String -> Bool
|
||
prop_initialPos n =
|
||
sourceName ipos == n &&
|
||
sourceLine ipos == 1 &&
|
||
sourceColumn ipos == 1
|
||
where ipos = initialPos n
|
||
|
||
prop_incSourceLine :: SourcePos -> NonNegative Int -> Bool
|
||
prop_incSourceLine pos l' =
|
||
d sourceName id pos incp &&
|
||
d sourceLine (+ l) pos incp &&
|
||
d sourceColumn id pos incp
|
||
where l = getNonNegative l'
|
||
incp = incSourceLine l pos
|
||
|
||
prop_incSourceColumn :: SourcePos -> NonNegative Int -> Bool
|
||
prop_incSourceColumn pos c' =
|
||
d sourceName id pos incp &&
|
||
d sourceLine id pos incp &&
|
||
d sourceColumn (+ c) pos incp
|
||
where c = getNonNegative c'
|
||
incp = incSourceColumn c pos
|
||
|
||
prop_setSourceName :: SourcePos -> String -> Bool
|
||
prop_setSourceName pos n =
|
||
d sourceName (const n) pos setp &&
|
||
d sourceLine id pos setp &&
|
||
d sourceColumn id pos setp
|
||
where setp = setSourceName n pos
|
||
|
||
prop_setSourceLine :: SourcePos -> Positive Int -> Bool
|
||
prop_setSourceLine pos l' =
|
||
d sourceName id pos setp &&
|
||
d sourceLine (const l) pos setp &&
|
||
d sourceColumn id pos setp
|
||
where l = getPositive l'
|
||
setp = setSourceLine l pos
|
||
|
||
prop_setSourceColumn :: SourcePos -> Positive Int -> Bool
|
||
prop_setSourceColumn pos c' =
|
||
d sourceName id pos setp &&
|
||
d sourceLine id pos setp &&
|
||
d sourceColumn (const c) pos setp
|
||
where c = getPositive c'
|
||
setp = setSourceColumn c pos
|
||
|
||
prop_updating :: Int -> SourcePos -> String -> Bool
|
||
prop_updating w pos "" = updatePosString w pos "" == pos
|
||
prop_updating w' pos s =
|
||
d sourceName id pos updated &&
|
||
d sourceLine (+ inclines) pos updated &&
|
||
cols >= mincols && ((last s /= '\t') || ((cols - 1) `rem` w == 0))
|
||
where w = if w' < 1 then defaultTabWidth else w'
|
||
updated = updatePosString w' pos s
|
||
cols = sourceColumn updated
|
||
newlines = elemIndices '\n' s
|
||
inclines = length newlines
|
||
total = length s
|
||
mincols = if null newlines
|
||
then total + sourceColumn pos
|
||
else total - maximum newlines
|
||
|
||
d :: Eq b => (a -> b) -> (b -> b) -> a -> a -> Bool
|
||
d f g x y = g (f x) == f y
|