aboutsummaryrefslogtreecommitdiff
path: root/tests/Data/Digest/HashTests.hs
blob: 379bfcc967533e9ef3535005c2d37dcd32f3f625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
-- Copyright 2017 Google LLC
--
-- Licensed under the Apache License, Version 2.0 (the "License"); you may not
-- use this file except in compliance with the License. You may obtain a copy of
-- the License at
--
--     https://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-- License for the specific language governing permissions and limitations under
-- the License.

{-# LANGUAGE OverloadedStrings #-}

module Data.Digest.HashTests
  ( tableTestCase
  , testAgainstCoreutils
  , testAgainstOpenssl
  ) where

import Data.ByteString (ByteString)
import qualified Data.ByteString as ByteString
import System.IO (hClose, hGetContents, hSetBinaryMode)
import System.Process
       (CreateProcess(std_in, std_out), StdStream(CreatePipe),
        createProcess_, proc)
import qualified Test.SmallCheck.Series.ByteString
       as ByteString.Series
import Test.Tasty (TestTree)
import Test.Tasty.HUnit ((@?=), testCase)
import Test.Tasty.SmallCheck (Property, monadic, over)

tableTestCase :: (ByteString -> String) -> (String, ByteString) -> TestTree
tableTestCase f (output, input) = testCase description (f input @?= output)
  where
    description =
      let (x, y) = ByteString.splitAt 11 input
      in show (x `ByteString.append` if ByteString.null y then "" else "...")

testAgainstCoreutils :: (ByteString -> String) -> FilePath -> Property IO
testAgainstCoreutils f prog =
  over ByteString.Series.enumW8s $ \s ->
    monadic $ do
      theirs <- runExternal (proc prog ["-b"]) s
      return (f s == head (words theirs))

-- | Runs an external hashing command with the specified standard input. Assumes
-- that the process will exit when its standard input is closed.
runExternal :: CreateProcess -> ByteString -> IO String
runExternal p s = do
  (Just stdin, Just stdout, _, _) <-
    createProcess_ "runExternal" (p {std_in = CreatePipe, std_out = CreatePipe})
  hSetBinaryMode stdin True
  ByteString.hPut stdin s
  hClose stdin -- causes process to exit
  hGetContents stdout

testAgainstOpenssl :: (ByteString -> String) -> String -> Property IO
testAgainstOpenssl f flag =
  over ByteString.Series.enumW8s $ \s ->
    monadic $ do
      theirs <- runExternal (proc "openssl" ["dgst", '-' : flag]) s
      return (f s == words theirs !! 1)