text-2.1.3: tests/Tests/Regressions.hs
-- | Regression tests for specific bugs.
--
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
module Tests.Regressions
(
tests
) where
import Control.Exception (ErrorCall, SomeException, handle, evaluate, displayException, try)
import Data.Char (isLetter, chr)
import GHC.Exts (Int(..), sizeofByteArray#)
import System.IO
import System.IO.Temp (withSystemTempFile)
import Test.Tasty.HUnit (assertBool, assertEqual, assertFailure, (@?=))
import qualified Data.ByteString as B
import Data.ByteString.Char8 ()
import qualified Data.ByteString.Lazy as LB
import Data.Semigroup (stimes)
import qualified Data.Text as T
import qualified Data.Text.Array as TA
import qualified Data.Text.Encoding as TE
import qualified Data.Text.Encoding.Error as E
import qualified Data.Text.Internal as T
import qualified Data.Text.Internal.Lazy.Encoding.Fusion as E
import qualified Data.Text.Internal.Lazy.Fusion as LF
import qualified Data.Text.IO as T
import qualified Data.Text.Lazy as LT
import qualified Data.Text.Lazy.Builder as TB
import qualified Data.Text.Lazy.Encoding as LE
import qualified Data.Text.Unsafe as T
import qualified Test.Tasty as F
import qualified Test.Tasty.HUnit as F
import Tests.Utils (withTempFile)
import System.IO.Error (isFullError)
-- Reported by Michael Snoyman: UTF-8 encoding a large lazy bytestring
-- caused either a segfault or attempt to allocate a negative number
-- of bytes.
lazy_encode_crash :: IO ()
lazy_encode_crash = withTempFile $ \ _ h -> do
putRes <- try $ LB.hPut h $ LE.encodeUtf8 $ LT.pack $ replicate 100000 'a'
case putRes of
Left e
-- If disk is full (as it happens on some of our CI runners), it's not our issue, skip it
| isFullError e -> pure ()
| otherwise -> assertFailure $ "hPut crashed because of " ++ displayException e
Right () -> pure ()
-- Reported by Pieter Laeremans: attempting to read an incorrectly
-- encoded file can result in a crash in the RTS (i.e. not merely an
-- exception).
hGetContents_crash :: IO ()
hGetContents_crash = withSystemTempFile "crashy.txt" $ \path h -> do
putRes <- try $ B.hPut h (B.pack [0x78, 0xc4 ,0x0a])
case putRes of
Left e
-- If disk is full (as it happens on some of our CI runners), it's not our issue, skip it
| isFullError e -> pure ()
| otherwise -> assertFailure $ "hPut crashed because of " ++ displayException e
Right () -> do
hClose h
h' <- openFile path ReadMode
hSetEncoding h' utf8
handle (\(_::SomeException) -> pure ()) $
T.hGetContents h' >> assertFailure "T.hGetContents should crash"
hClose h'
-- Reported by Ian Lynagh: attempting to allocate a sufficiently large
-- string (via either Array.new or Text.replicate) could result in an
-- integer overflow.
replicate_crash :: IO ()
replicate_crash = handle (\(_::SomeException) -> return ()) $
T.replicate (2^power) "0123456789abcdef" `seq`
assertFailure "T.replicate should crash"
where
power | maxBound == (2147483647::Int) = 28
| otherwise = 60 :: Int
-- Reported by John Millikin: a UTF-8 decode error handler could
-- return a bogus substitution character, which we would write without
-- checking.
utf8_decode_unsafe :: IO ()
utf8_decode_unsafe = do
let t = TE.decodeUtf8With (\_ _ -> Just '\xdc00') "\x80"
assertBool "broken error recovery shouldn't break us" (t == "\xfffd")
-- Reported by Eric Seidel: we mishandled mapping Chars that fit in a
-- single Word16 to Chars that require two.
mapAccumL_resize :: IO ()
mapAccumL_resize = do
let f a _ = (a, '\65536')
count = 5
val = T.mapAccumL f (0::Int) (T.replicate count "a")
assertEqual "mapAccumL should correctly fill buffers for four-byte results"
(0, T.replicate count "\65536") val
assertEqual "mapAccumL should correctly size buffers for four-byte results"
(count * 4) (T.lengthWord8 (snd val))
-- See GitHub #197
t197 :: IO ()
t197 =
assertBool "length (filter (==',') \"0,00\") should be 1" (currencyParser "0,00")
where
currencyParser x = cond == 1
where
cond = length fltr
fltr = filter (== ',') x
t221 :: IO ()
t221 =
assertEqual "toLower of large input shouldn't crash"
(T.toLower (T.replicate 200000 "0") `seq` ())
()
t227 :: IO ()
t227 =
assertEqual "take (-3) shouldn't crash with overflow"
(T.length $ T.filter isLetter $ T.take (-3) "Hello! How are you doing today?")
0
t280_fromString :: IO ()
t280_fromString =
assertEqual "TB.fromString performs replacement on invalid scalar values"
(TB.toLazyText (TB.fromString "\xD800"))
(LT.pack "\xFFFD")
t280_singleton :: IO ()
t280_singleton =
assertEqual "TB.singleton performs replacement on invalid scalar values"
(TB.toLazyText (TB.singleton '\xD800'))
(LT.pack "\xFFFD")
-- See GitHub issue #301
-- This tests whether the "TEXT take . drop -> unfused" rule is applied to the
-- slice function. When the slice function is fused, a new array will be
-- constructed that is shorter than the original array. Without fusion the
-- array remains unmodified.
t301 :: IO ()
t301 = do
assertEqual "The length of the array remains the same despite slicing"
(I# (sizeofByteArray# originalArr))
(I# (sizeofByteArray# newArr))
assertEqual "The new array still contains the original value"
(T.Text (TA.ByteArray newArr) originalOff originalLen)
original
where
!original@(T.Text (TA.ByteArray originalArr) originalOff originalLen) = T.pack "1234567890"
!(T.Text (TA.ByteArray newArr) _off _len) = T.take 1 $ T.drop 1 original
t330 :: IO ()
t330 = do
let decodeL = LE.decodeUtf8With E.lenientDecode
assertEqual "The lenient decoding of lazy bytestrings should not depend on how they are chunked"
(decodeL (LB.fromChunks [B.pack [194], B.pack [97, 98, 99]]))
(decodeL (LB.fromChunks [B.pack [194, 97, 98, 99]]))
-- Stream decoders should not loop on incomplete code points
t525 :: IO ()
t525 = do
let decodeUtf8With onErr bs = LF.unstream (E.streamUtf8 onErr bs)
decodeUtf8With E.lenientDecode "\xC0" @?= "\65533"
LE.decodeUtf16BEWith E.lenientDecode "\0" @?= "\65533"
LE.decodeUtf16LEWith E.lenientDecode "\0" @?= "\65533"
LE.decodeUtf32BEWith E.lenientDecode "\0" @?= "\65533"
LE.decodeUtf32LEWith E.lenientDecode "\0" @?= "\65533"
-- Stream decoders skip one invalid byte at a time
t528 :: IO ()
t528 = do
let decodeUtf8With onErr bs = LF.unstream (E.streamUtf8 onErr bs)
decodeUtf8With E.lenientDecode "\xC0\xF0\x90\x80\x80" @?= "\65533\65536"
LE.decodeUtf16BEWith E.lenientDecode "\xD8\xD8\x00\xDC\x00" @?= "\65533\65536"
LE.decodeUtf16LEWith E.lenientDecode "\xD8\xD8\x00\xD8\x00\xDC" @?= "\65533\65533\65536"
LE.decodeUtf32BEWith E.lenientDecode "\xFF\x00\x00\x00\x00" @?= "\65533\0"
LE.decodeUtf32LEWith E.lenientDecode "\x00\x00\xFF\x00\x00" @?= "\65533\65280"
t529 :: IO ()
t529 = do
let decode = TE.decodeUtf8With E.lenientDecode
-- https://github.com/haskell/bytestring/issues/575
assertEqual "Data.ByteString.isValidUtf8 should work correctly"
(T.pack (chr 33 : replicate 31 (chr 0) ++ [chr 65533, chr 0]))
(decode (B.pack (33 : replicate 31 0 ++ [128, 0])))
-- See Github #559
-- filter/filter fusion rules should apply predicates in the right order.
t559 :: IO ()
t559 = do
T.filter undefined (T.filter (const False) "a") @?= ""
LT.filter undefined (LT.filter (const False) "a") @?= ""
-- Github #633
-- stimes checked for an `a` to `Int` to `a` roundtrip, but the `a` and `Int` values could represent different integers.
t633 :: IO ()
t633 =
handle (\(_ :: ErrorCall) -> return ()) $ do
_ <- evaluate (stimes (maxBound :: Word) "a" :: T.Text)
assertFailure "should fail"
t648 :: IO ()
t648 = withTempFile $ \_ h -> do
hSetEncoding h utf8
hSetNewlineMode h (NewlineMode LF CRLF)
hSetBuffering h (BlockBuffering $ Just 4)
let line = T.replicate 2047 "_"
T.hPutStrLn h line
hSeek h AbsoluteSeek 0
line' <- T.hGetLine h
T.append line "\r" @?= line'
tests :: F.TestTree
tests = F.testGroup "Regressions"
[ F.testCase "hGetContents_crash" hGetContents_crash
, F.testCase "lazy_encode_crash" lazy_encode_crash
, F.testCase "mapAccumL_resize" mapAccumL_resize
, F.testCase "replicate_crash" replicate_crash
, F.testCase "utf8_decode_unsafe" utf8_decode_unsafe
, F.testCase "t197" t197
, F.testCase "t221" t221
, F.testCase "t227" t227
, F.testCase "t280/fromString" t280_fromString
, F.testCase "t280/singleton" t280_singleton
, F.testCase "t301" t301
, F.testCase "t330" t330
, F.testCase "t525" t525
, F.testCase "t528" t528
, F.testCase "t529" t529
, F.testCase "t559" t559
, F.testCase "t633" t633
, F.testCase "t648" t648
]