darcs-2.14.0: harness/Darcs/Test/Patch/Info.hs
-- Copyright (C) 2009 Reinier Lamers
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2, or (at your option)
-- any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; see the file COPYING. If not, write to
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.
-- | This module contains tests for the code in Darcs.Patch.Info. Most of them
-- are about the UTF-8-encoding of patch metadata.
module Darcs.Test.Patch.Info ( testSuite ) where
import Prelude hiding ( pi )
import qualified Data.ByteString as B ( ByteString, pack )
import qualified Data.ByteString.Char8 as BC ( unpack )
import Data.List ( sort , isPrefixOf )
import Data.Maybe ( isNothing )
import Data.Text as T ( find, any )
import Data.Text.Encoding ( decodeUtf8With )
import Data.Text.Encoding.Error ( lenientDecode )
import Test.QuickCheck ( Arbitrary(arbitrary), oneof, listOf, choose, shrink
, Gen, suchThat, scale )
import Test.Framework.Providers.QuickCheck2 ( testProperty )
import Test.Framework (Test, testGroup)
-- import Text.Show.Pretty ( ppShow )
import Darcs.Patch.Info
( PatchInfo(..), rawPatchInfo, showPatchInfo, readPatchInfo
, piLog, piAuthor, piName, validDate, validLog, validAuthor
, validDatePS, validLogPS, validAuthorPS
)
import Darcs.Patch.ReadMonads ( parseStrictly )
import Darcs.Patch.Show ( ShowPatchFor(..) )
import Darcs.Util.ByteString
( decodeLocale, packStringToUTF8, unpackPSFromUTF8, linesPS )
import Darcs.Util.Printer ( renderPS )
testSuite :: Test
testSuite = testGroup "Darcs.Patch.Info"
[ metadataDecodingTest
, metadataEncodingTest
, packUnpackTest
, parseUnparseTest
]
-- | A newtype wrapping String so we can make our own random generator for it.
newtype UnicodeString = UnicodeString { asString :: String }
deriving (Show, Eq, Ord)
-- | A newtype wrapping PatchInfo that has a random generator that generates
-- both UTF-8-encoded and non-encoded PatchInfo's.
newtype UTF8OrNotPatchInfo = UTF8OrNotPatchInfo PatchInfo deriving (Eq, Ord)
-- | A newtype wrapping PatchInfo, which has a random generator that generates
-- only UTF-8-encoded PatchInfo's.
newtype UTF8PatchInfo = UTF8PatchInfo PatchInfo deriving (Eq, Ord)
-- Note that this instance only creates valid unicode strings. It does not
-- generate lone surrogates, for instance, as these would fail the
-- packUnpackTest below.
instance Arbitrary UnicodeString where
-- 0x10ffff is the highest Unicode code point ; 0xd800 - 0xdfff are
-- surrogates. '\xfffd' is excluded because it is used as a marker
-- for UTF-8 test failure.
arbitrary = UnicodeString `fmap` listOf (oneof [choose ('\0', '\xd799')
,choose ('\xe000', '\xfffc')
,choose ('\xfffe', '\x10ffff')])
instance Show UTF8PatchInfo where
show = withUTF8PatchInfo rawPatchInfoShow
instance Show UTF8OrNotPatchInfo where
show = withUTF8OrNotPatchInfo rawPatchInfoShow
-- | Shows a PatchInfo, outputting every byte and clearly marking what is what
rawPatchInfoShow :: PatchInfo -> String
rawPatchInfoShow = {- ppShow -} show
instance Arbitrary UTF8PatchInfo where
arbitrary = UTF8PatchInfo `fmap` arbitraryUTF8PatchInfo
shrink upi = flip withUTF8PatchInfo upi $ \pi -> do
sn <- shrink (piName pi)
sa <- shrink (piAuthor pi)
sl <- shrink (filter (not . isPrefixOf "Ignore-this:") (piLog pi))
i <- shrink (isInverted pi)
return (UTF8PatchInfo (rawPatchInfo sn (BC.unpack (_piDate pi)) sa sl i))
instance Arbitrary UTF8OrNotPatchInfo where
arbitrary = UTF8OrNotPatchInfo `fmap` oneof ([arbitraryUTF8PatchInfo,
arbitraryUnencodedPatchInfo])
-- | Generate arbitrary patch metadata.
-- Note : We must NOT use 'patchinfo' from Darcs.Patch.Info
-- with unsafePerformIO here because this breaks the parse/unparse test
-- (the added junk will be different on each call).
arbitraryUTF8PatchInfo :: Gen PatchInfo
arbitraryUTF8PatchInfo = do
d <- arbitrary `suchThat` validDate
n <- (asString `fmap` arbitrary) `suchThat` validLog
a <- (asString `fmap` arbitrary) `suchThat` validAuthor
l <- lines `fmap` scale (* 2) arbitrary
i <- return False
return $ rawPatchInfo d n a l i
-- | Generate arbitrary patch metadata that has totally arbitrary byte strings
-- as its name, date, author and log.
arbitraryUnencodedPatchInfo :: Gen PatchInfo
arbitraryUnencodedPatchInfo = do
d <- arbitraryByteString `suchThat` validDatePS
n <- arbitraryByteString `suchThat` validLogPS
a <- arbitraryByteString `suchThat` validAuthorPS
l <- linesPS `fmap` scale (* 2) arbitraryByteString
i <- return False
return (PatchInfo d n a l i)
arbitraryByteString :: Gen B.ByteString
arbitraryByteString = B.pack <$> listOf arbitrary
-- | Test that anything produced by the 'patchinfo' function is valid UTF-8
metadataEncodingTest :: Test
metadataEncodingTest =
testProperty "Testing patch metadata encoding" propMetadataEncoding
propMetadataEncoding :: UTF8PatchInfo -> Bool
propMetadataEncoding (UTF8PatchInfo patchInfo) =
encodingOK (_piAuthor patchInfo)
&& encodingOK (_piName patchInfo)
&& all encodingOK (_piLog patchInfo)
where
encodingOK = isNothing . T.find (=='\xfffd') . decodeUtf8With lenientDecode
-- | Test that metadata in patches are decoded as UTF-8 or locale depending on
-- whether they're valid UTF-8.
metadataDecodingTest :: Test
metadataDecodingTest = testProperty "Testing patch metadata decoding" propMetadataDecoding
propMetadataDecoding :: UTF8OrNotPatchInfo -> Bool
propMetadataDecoding (UTF8OrNotPatchInfo patchInfo) =
utf8OrLocale (_piAuthor patchInfo) == piAuthor patchInfo
&& utf8OrLocale (_piName patchInfo) == piName patchInfo
&& map utf8OrLocale (_piLog patchInfo) `superset` piLog patchInfo
where
utf8OrLocale bs =
if isValidUTF8 bs then unpackPSFromUTF8 bs else decodeLocale bs
isValidUTF8 :: B.ByteString -> Bool
isValidUTF8 = not . T.any (=='\xfffd') . decodeUtf8With lenientDecode
packUnpackTest :: Test
packUnpackTest = testProperty "Testing UTF-8 packing and unpacking" $
\uString -> asString uString == (unpackPSFromUTF8 . packStringToUTF8) (asString uString)
superset :: (Eq a, Ord a) => [a] -> [a] -> Bool
superset a b = sorted_superset (sort a) (sort b)
where sorted_superset (x:xs) (y:ys) | x == y = sorted_superset xs ys
| x < y = sorted_superset xs (y:ys)
| otherwise = False
sorted_superset [] (_:_) = False
sorted_superset _ [] = True
withUTF8PatchInfo :: (PatchInfo -> a) -> UTF8PatchInfo -> a
withUTF8PatchInfo f mpi = case mpi of
UTF8PatchInfo pinf -> f pinf
withUTF8OrNotPatchInfo :: (PatchInfo -> a) -> UTF8OrNotPatchInfo -> a
withUTF8OrNotPatchInfo f mpi = case mpi of
UTF8OrNotPatchInfo pinf -> f pinf
parseUnparseTest :: Test
parseUnparseTest = testProperty "parse . show == id" propParseUnparse
parsePatchInfo :: B.ByteString -> Maybe PatchInfo
parsePatchInfo = fmap fst . parseStrictly readPatchInfo
unparsePatchInfo :: PatchInfo -> B.ByteString
unparsePatchInfo = renderPS . showPatchInfo ForStorage
instance Arbitrary PatchInfo where
arbitrary = arbitraryUnencodedPatchInfo
propParseUnparse :: PatchInfo -> Bool
propParseUnparse pi = Just pi == parsePatchInfo (unparsePatchInfo pi)