aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Crypto/Macaroon/Verifier/Tests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Crypto/Macaroon/Verifier/Tests.hs')
-rw-r--r--test/Crypto/Macaroon/Verifier/Tests.hs30
1 files changed, 19 insertions, 11 deletions
diff --git a/test/Crypto/Macaroon/Verifier/Tests.hs b/test/Crypto/Macaroon/Verifier/Tests.hs
index 92a8a21..f87f192 100644
--- a/test/Crypto/Macaroon/Verifier/Tests.hs
+++ b/test/Crypto/Macaroon/Verifier/Tests.hs
@@ -15,6 +15,7 @@ module Crypto.Macaroon.Verifier.Tests where
15import qualified Data.ByteString.Char8 as B8 15import qualified Data.ByteString.Char8 as B8
16import Test.Tasty 16import Test.Tasty
17import Test.Tasty.HUnit 17import Test.Tasty.HUnit
18import Test.Tasty.QuickCheck
18 19
19import Crypto.Macaroon 20import Crypto.Macaroon
20import Crypto.Macaroon.Verifier 21import Crypto.Macaroon.Verifier
@@ -25,6 +26,9 @@ tests :: TestTree
25tests = testGroup "Crypto.Macaroon.Verifier" [ sigs 26tests = testGroup "Crypto.Macaroon.Verifier" [ sigs
26 ] 27 ]
27 28
29{-
30 - Test fixtures
31 -}
28sec = B8.pack "this is our super secret key; only we should know it" 32sec = B8.pack "this is our super secret key; only we should know it"
29 33
30m :: Macaroon 34m :: Macaroon
@@ -39,21 +43,25 @@ m2 = addFirstPartyCaveat "test = caveat" m
39m3 :: Macaroon 43m3 :: Macaroon
40m3 = addFirstPartyCaveat "test = acaveat" m 44m3 = addFirstPartyCaveat "test = acaveat" m
41 45
46{-
47 - Tests
48 -}
42sigs = testGroup "Signatures" [ basic 49sigs = testGroup "Signatures" [ basic
43 , minted 50 , one
51 , two
44 ] 52 ]
45 53
46basic = testCase "Basic Macaroon Signature" $ 54basic = testGroup "Basic Macaroon" [ none , sigQC ]
47 Success @=? verifySig sec m
48 55
56none = testCase "No caveat" $
57 VSuccess @=? verifySig sec m
49 58
50minted :: TestTree 59sigQC = testProperty "Random" $
51minted = testGroup "Macaroon with first party caveats" [ one 60 \sm -> verifySig (secret sm) (macaroon sm) == VSuccess
52 , two
53 ]
54one = testCase "One caveat" $
55 Success @=? verifySig sec m2
56 61
57two = testCase "Two caveats" $ 62one = testCase "Macaroon with one caveat" $
58 Success @=? verifySig sec m3 63 VSuccess @=? verifySig sec m2
64
65two = testCase "Macaroon with two caveats" $
66 VSuccess @=? verifySig sec m3
59 67