packages feed

highlight-0.1.0.0: test/Test/Golden.hs

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RankNTypes #-}

module Test.Golden where

import Prelude ()
import Prelude.Compat

import Control.Exception (try)
import Control.Lens ((&), (.~))
import Control.Monad.IO.Class (MonadIO)
import Data.ByteString (ByteString)
import Data.ByteString.Lazy (fromStrict)
import qualified Data.ByteString.Lazy as LByteString
import Data.Foldable (fold)
import Data.Monoid ((<>))
import Pipes (Pipe, Producer, (>->))
import Pipes.Prelude (mapFoldable, toListM)
import System.Directory
       (Permissions, emptyPermissions, removeFile, setOwnerReadable,
        setOwnerSearchable, setOwnerWritable, setPermissions)
import System.IO (IOMode(WriteMode), hClose, openBinaryFile)
import System.IO.Error (isPermissionError)
import Test.Tasty (TestTree, testGroup, withResource)
import Test.Tasty.Golden (goldenVsString)

import Highlight.Common.Monad (Output(OutputStderr, OutputStdout))
import Highlight.Common.Options
       (CommonOptions, IgnoreCase(IgnoreCase), Recursive(Recursive),
        defaultCommonOptions, ignoreCaseLens, inputFilenamesLens,
        rawRegexLens, recursiveLens)
import Highlight.Highlight.Monad (HighlightM, runHighlightM)
import Highlight.Highlight.Options
       (ColorGrepFilenames(ColorGrepFilenames), Options,
        colorGrepFilenamesLens, defaultOptions)
import Highlight.Highlight.Run (highlightOutputProducer)
import Highlight.Hrep.Monad (HrepM, runHrepM)
import Highlight.Hrep.Run (hrepOutputProducer)
import Highlight.Pipes (fromFileLines, stdinLines)

runHighlightTestWithStdin
  :: Options
  -> Producer ByteString HighlightM ()
  -> (forall m. Monad m => Pipe Output ByteString m ())
  -> IO LByteString.ByteString
runHighlightTestWithStdin opts stdinPipe filterPipe = do
  eitherByteStrings <- runHighlightM opts $ do
    outputProducer <- highlightOutputProducer stdinPipe
    toListM $ outputProducer >-> filterPipe
  case eitherByteStrings of
    Left err -> error $ "unexpected error: " <> show err
    Right byteStrings -> return . fromStrict $ fold byteStrings

runHighlightTest
  :: Options
  -> (forall m. Monad m => Pipe Output ByteString m ())
  -> IO LByteString.ByteString
runHighlightTest opts =
  runHighlightTestWithStdin opts stdinLines

runHrepTestWithStdin
  :: CommonOptions
  -> (Producer ByteString HrepM ())
  -> (forall m. Monad m => Pipe Output ByteString m ())
  -> IO LByteString.ByteString
runHrepTestWithStdin opts stdinPipe filterPipe = do
  eitherByteStrings <- runHrepM opts $ do
    outputProducer <- hrepOutputProducer stdinPipe
    toListM $ outputProducer >-> filterPipe
  case eitherByteStrings of
    Left err -> error $ "unexpected error: " <> show err
    Right byteStrings -> return . fromStrict $ fold byteStrings

runHrepTest
  :: CommonOptions
  -> (forall m. Monad m => Pipe Output ByteString m ())
  -> IO LByteString.ByteString
runHrepTest opts =
  runHrepTestWithStdin opts stdinLines

filterStdout :: Monad m => Pipe Output ByteString m ()
filterStdout = mapFoldable f
  where
    f :: Output -> Maybe ByteString
    f (OutputStderr _) = Nothing
    f (OutputStdout byteString) = Just byteString

filterStderr :: Monad m => Pipe Output ByteString m ()
filterStderr = mapFoldable f
  where
    f :: Output -> Maybe ByteString
    f (OutputStderr byteString) = Just byteString
    f (OutputStdout _) = Nothing

getFileOutputProducer
  :: MonadIO m
  => FilePath -> IO (Producer ByteString m ())
getFileOutputProducer filePath = do
  eitherProducer <- fromFileLines filePath
  case eitherProducer of
    Left ioerr ->
      error $
        "ERROR: following error occured when trying to read \"" <>
        filePath <> "\": " <> show ioerr
    Right producer -> return producer

testStderrAndStdout
  :: String
  -> FilePath
  -> ( ( forall m. Monad m => Pipe Output ByteString m ())
      -> IO LByteString.ByteString
     )
  -> TestTree
testStderrAndStdout msg path runner =
  testGroup
    msg
    [ goldenVsString "stderr" (path <> ".stderr") (runner filterStderr)
    , goldenVsString "stdout" (path <> ".stdout") (runner filterStdout)
    ]

goldenTests :: TestTree
goldenTests =
  withResource createUnreadableFile (const deleteUnreadableFile) $
    const (testGroup "golden tests" [highlightGoldenTests, hrepGoldenTests])

createUnreadableFile :: IO ()
createUnreadableFile = do
  eitherHandle <- try $ openBinaryFile unreadableFilePath WriteMode
  case eitherHandle of
    Right handle -> do
      hClose handle
      makeFileUnreadable unreadableFilePath
    Left ioerr
      | isPermissionError ioerr ->
        -- assume that the file already exists, and just try to make sure that
        -- the permissions are null
        makeFileUnreadable unreadableFilePath
      | otherwise ->
        -- we shouldn't have gotten an error here, so just rethrow it
        ioError ioerr

makeFileUnreadable :: FilePath -> IO ()
makeFileUnreadable filePath = setPermissions filePath emptyPermissions

makeFileReadable :: FilePath -> IO ()
makeFileReadable filePath =
  setPermissions filePath fullPermissions
  where
    fullPermissions :: Permissions
    fullPermissions =
      setOwnerWritable True .
      setOwnerSearchable True .
      setOwnerReadable True $
      emptyPermissions

deleteUnreadableFile :: IO ()
deleteUnreadableFile = do
  makeFileReadable unreadableFilePath
  eitherRes <- try $ removeFile unreadableFilePath
  either ioError return eitherRes

unreadableFilePath :: FilePath
unreadableFilePath = "test/golden/test-files/dir2/unreadable-file"

---------------------
-- Highlight Tests --
---------------------

highlightGoldenTests :: TestTree
highlightGoldenTests =
  testGroup
    "highlight"
    [ testHighlightSingleFile
    , testHighlightMultiFile
    , testHighlightFromGrep
    ]

testHighlightSingleFile :: TestTree
testHighlightSingleFile =
  let opts =
        defaultOptions
          & rawRegexLens .~ "or"
          & inputFilenamesLens .~ ["test/golden/test-files/file1"]
  in testStderrAndStdout
      "`highlight or 'test/golden/test-files/file1'`"
      "test/golden/golden-files/highlight/single-file"
      (runHighlightTest opts)

testHighlightMultiFile :: TestTree
testHighlightMultiFile =
  let opts =
        defaultOptions
          & rawRegexLens .~ "and"
          & ignoreCaseLens .~ IgnoreCase
          & recursiveLens .~ Recursive
          & inputFilenamesLens .~
              [ "test/golden/test-files/dir1"
              , "test/golden/test-files/empty-file"
              , "test/golden/test-files/dir2"
              ]
      testName =
        "`touch 'test/golden/test-files/dir2/unreadable-file' ; " <>
        "chmod 0 'test/golden/test-files/dir2/unreadable-file' ; " <>
        "highlight --ignore-case --recursive and " <>
          "'test/golden/test-files/dir1' " <>
          "'test/golden/test-files/empty-file' " <>
          "'test/golden/test-files/dir2' ; " <>
        "rm -rf 'test/golden/test-files/dir2/unreadable-file'`"
  in testStderrAndStdout
      testName
      "test/golden/golden-files/highlight/multi-file"
      (runHighlightTest opts)

testHighlightFromGrep :: TestTree
testHighlightFromGrep =
  let opts =
        defaultOptions
          & rawRegexLens .~ "and"
          & colorGrepFilenamesLens .~ ColorGrepFilenames
      testName =
        "`cat test/golden/test-files/from-grep | " <>
        "highlight --from-grep and`"
  in testStderrAndStdout
      testName
      "test/golden/golden-files/highlight/from-grep"
      (go opts)
  where
    go
      :: Options
      -> (forall m. Monad m => Pipe Output ByteString m ())
      -> IO LByteString.ByteString
    go opts outputPipe = do
      -- This is the output file from @grep@ to use for the test
      -- 'testHighlightFromGrep'.
      --
      -- This file was created with the following command:
      -- > $ grep --recursive and 'test/golden/test-files/dir1'
      let grepOutputTestFile = "test/golden/test-files/from-grep"
      grepOutputProducer <- getFileOutputProducer grepOutputTestFile
      runHighlightTestWithStdin opts grepOutputProducer outputPipe

----------------
-- Hrep Tests --
----------------

hrepGoldenTests :: TestTree
hrepGoldenTests =
  testGroup
    "hrep"
    [ testHrepSingleFile
    , testHrepMultiFile
    , testHrepFromStdin
    ]

testHrepSingleFile :: TestTree
testHrepSingleFile =
  let opts =
        defaultCommonOptions
          & rawRegexLens .~ "another"
          & inputFilenamesLens .~ ["test/golden/test-files/file1"]
  in testStderrAndStdout
      "`hrep another 'test/golden/test-files/file1'`"
      "test/golden/golden-files/hrep/single-file"
      (runHrepTest opts)

testHrepMultiFile :: TestTree
testHrepMultiFile =
  let opts =
        defaultCommonOptions
          & rawRegexLens .~ "as"
          & ignoreCaseLens .~ IgnoreCase
          & recursiveLens .~ Recursive
          & inputFilenamesLens .~
              [ "test/golden/test-files/dir1"
              , "test/golden/test-files/empty-file"
              , "test/golden/test-files/dir2"
              ]
      testName =
        "`touch 'test/golden/test-files/dir2/unreadable-file' ; " <>
        "chmod 0 'test/golden/test-files/dir2/unreadable-file' ; " <>
        "hrep --ignore-case --recursive as " <>
          "'test/golden/test-files/dir1' " <>
          "'test/golden/test-files/empty-file' " <>
          "'test/golden/test-files/dir2' ; " <>
        "rm -rf 'test/golden/test-files/dir2/unreadable-file'`"
  in testStderrAndStdout
      testName
      "test/golden/golden-files/hrep/multi-file"
      (runHrepTest opts)

testHrepFromStdin :: TestTree
testHrepFromStdin =
  let opts =
        defaultCommonOptions & rawRegexLens .~ "co."
      stdinInputFile = "test/golden/test-files/file2"
      testName =
        "`cat '" <> stdinInputFile <> "' | hrep 'co.'`"
  in testStderrAndStdout
      testName
      "test/golden/golden-files/hrep/from-stdin"
      (go opts stdinInputFile)
  where
    go
      :: CommonOptions
      -> FilePath
      -> (forall m. Monad m => Pipe Output ByteString m ())
      -> IO LByteString.ByteString
    go opts stdinInputFile outputPipe = do
      stdinProducer <- getFileOutputProducer stdinInputFile
      runHrepTestWithStdin opts stdinProducer outputPipe