packages feed

boxes-0.1.4: Text/PrettyPrint/Tests.hs

import Test.QuickCheck
import Text.PrettyPrint.Boxes

import Control.Monad
import System.Exit (exitFailure, exitSuccess)

instance Arbitrary Alignment where
  arbitrary = elements [ AlignFirst
                       , AlignCenter1
                       , AlignCenter2
                       , AlignLast
                       ]

instance Arbitrary Box where
  arbitrary = do
    (NonNegative r) <- arbitrary
    (NonNegative c) <- arbitrary
    liftM (Box r c) arbitrary

instance Arbitrary Content where
  arbitrary = oneof [ return Blank
                    , liftM Text arbitrary
                    , liftM Row arbitrary
                    , liftM Col arbitrary
                    , liftM3 SubBox arbitrary arbitrary arbitrary
                    ]

-- extensional equivalence for Boxes
b1 ==== b2 = render b1 == render b2

prop_render_text s = render (text s) == (s ++ "\n")

{-
TODO: Find a way to enable these tests without time and space
explosion.

--prop_empty_right_id b = b <> nullBox ==== b
--prop_empty_left_id b  = nullBox <> b ==== b
--prop_empty_top_id b   = nullBox // b ==== b
--prop_empty_bot_id b   = b // nullBox ==== b
-}

main = quickCheckResult prop_render_text >>= \result ->
          case result of
            Success{} -> exitSuccess
            _ -> exitFailure