packages feed

docopt-0.7.0.4: test/LangAgnosticTests.hs

{-# LANGUAGE FlexibleInstances #-}

import Control.Monad ( (>=>) )
import System.Exit
import System.Console.ANSI

import System.Console.Docopt
import System.Console.Docopt.Types
import System.Console.Docopt.ParseUtils
import System.Console.Docopt.UsageParse (pDocopt)
import System.Console.Docopt.OptParse (getArguments)

import           Data.Map (Map)
import qualified Data.Map as M

import Data.List.Split
import Data.Aeson
import qualified Data.ByteString.Lazy.Char8 as BS

import Test.HUnit
import Paths_docopt (getDataFileName)


instance ToJSON ArgValue where
  toJSON x = case x of
    MultiValue vs -> toJSON $ reverse vs
    Value v       -> toJSON v
    NoValue       -> toJSON Null
    Counted n     -> toJSON n
    Present       -> toJSON True
    NotPresent    -> toJSON False

instance ToJSON (Map Option ArgValue) where
  toJSON argmap =
    let argmap' = M.mapKeys humanize argmap
    in  toJSON argmap'

coloredString :: Color -> String -> String
coloredString c str = setSGRCode [SetColor Foreground Dull c]
                    ++ str
                    ++ setSGRCode [Reset]

green, red, yellow, blue, magenta :: String -> String
green   = coloredString Green
red     = coloredString Red
yellow  = coloredString Yellow
blue    = coloredString Blue
magenta = coloredString Magenta


main :: IO ()
main = do
  f <- (getDataFileName >=> readFile) "test/testcases.docopt"
  tests <- testsFromDocoptSpecFile "testcases.docopt" f blacklist
  counts <- runTestTT $ TestList tests
  exitWith $ if failures counts > 0
                then ExitFailure 1
                else ExitSuccess

blacklist :: (Int, Int) -> Bool
-- Short/long option synonym equality (will fix)
blacklist (4, 1) = True
blacklist (4, 3) = True
blacklist (7, 1) = True
blacklist (8, 1) = True
blacklist (8, 2) = True
blacklist (64, 1) = True
-- Partial-option disambiguation
blacklist (4, 2) = True
blacklist (6, 3) = True
blacklist (6, 4) = True
blacklist (12, 4) = True
-- Stacked short options/flags disambiguation
blacklist (14, 1) = True
blacklist (70, 1) = True
-- Option order insensitivity
blacklist (15, 2) = True
blacklist (16, 2) = True
blacklist (17, 2) = True
blacklist (18, 2) = True
-- Argument lookup key ("<arg>" v. "arg"; should fix)
blacklist (21, 1) = True
blacklist (22, 1) = True
blacklist (22, 3) = True
blacklist (23, 1) = True
blacklist (24, 1) = True
blacklist (24, 2) = True
blacklist (25, 2) = True
blacklist (25, 3) = True
blacklist (26, 1) = True
blacklist (26, 2) = True
blacklist (27, 1) = True
blacklist (27, 2) = True
blacklist (27, 3) = True
blacklist (28, 1) = True
blacklist (28, 3) = True
blacklist (35, 1) = True
blacklist (60, 1) = True
blacklist (60, 2) = True
blacklist (61, 1) = True
blacklist (66, 1) = True
blacklist (72, 1) = True
-- Weirdly broken (argument capture; should fix)
blacklist (33, 2) = True
blacklist (33, 3) = True
blacklist (34, 3) = True
-- [options] expansion pruning (should fix)
blacklist (67, 1) = True
blacklist _ = False

testsFromDocoptSpecFile :: String
                        -> String
                        -> ((Int, Int) -> Bool)
                        -> IO [Test]
testsFromDocoptSpecFile name testFile ignore =
  let notCommentLine x = null x || ('#' /= head x)
      testFileClean = unlines $ filter notCommentLine $ lines testFile
      caseGroups = filter (not . null) $ splitOn "r\"\"\"" testFileClean

  in
  return . (:[]) . TestLabel name . test $ zip caseGroups [(1 :: Int)..] >>= \(caseGroup, icg) -> do

    let [usage, rawCases] = splitOn "\"\"\"" caseGroup
        cases = filter (/= "\n") $ splitOn "$ " rawCases

    let (optFormat, docParseMsg) = case runParser pDocopt M.empty "Usage" usage of
          Left e -> ((Sequence [], M.empty), "Couldn't parse usage text")
          Right o -> (o, "")

    let groupDescLines = [
            docParseMsg,
            "Docopt:",
            blue usage,
            "Pattern:",
            magenta (show optFormat)
          ]

    zip cases [(1::Int)..] >>= \(testcase, itc) -> do

      let (cmdline, rawTarget_) = break (== '\n') testcase
          rawTarget = filter (/= '\n') rawTarget_
          maybeTargetJSON = decode (BS.pack rawTarget) :: Maybe Value
          rawArgs = tail $ words cmdline

      let (parsedArgs, argParseMsg) = case getArguments optFormat rawArgs of
            Left e -> (M.empty, "Parse Error: " ++ red (show e) ++ "\n")
            Right a -> (a, "")

      let parsedArgsJSON = toJSON parsedArgs
          testCaseEquality = if rawTarget == "\"user-error\""
            then M.null parsedArgs
            else maybeTargetJSON == Just parsedArgsJSON
          blacklisted = blacklist (icg, itc)
          testCaseSuccess = if blacklisted
            then not testCaseEquality
            else testCaseEquality

      let testDescLines = [
              "Cmd: " ++ yellow cmdline,
              "Target: " ++ (if testCaseSuccess then green else magenta) rawTarget
            ]

      let testMsg = unlines . filter (not . null) $
                      groupDescLines
                      ++ testDescLines
                      ++ ["(Blacklisted)" | blacklisted]
                      ++ ["Failure: " ++ red (BS.unpack $ encode parsedArgsJSON)]

      let ti = TestCase $ testCaseSuccess @? testMsg

      return $ TestLabel ("group-" ++ show icg ++ "-case-" ++ show itc) ti