aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Crypto/Macaroon/Verifier/Tests.hs59
-rw-r--r--test/main.hs2
2 files changed, 61 insertions, 0 deletions
diff --git a/test/Crypto/Macaroon/Verifier/Tests.hs b/test/Crypto/Macaroon/Verifier/Tests.hs
new file mode 100644
index 0000000..92a8a21
--- /dev/null
+++ b/test/Crypto/Macaroon/Verifier/Tests.hs
@@ -0,0 +1,59 @@
1{-# LANGUAGE OverloadedStrings #-}
2{-|
3Copyright : (c) 2015 Julien Tanguy
4License : BSD3
5
6Maintainer : julien.tanguy@jhome.fr
7
8
9This test suite is based on the pymacaroons test suite:
10<https://github.com/ecordell/pymacaroons>
11-}
12module Crypto.Macaroon.Verifier.Tests where
13
14
15import qualified Data.ByteString.Char8 as B8
16import Test.Tasty
17import Test.Tasty.HUnit
18
19import Crypto.Macaroon
20import Crypto.Macaroon.Verifier
21
22import Crypto.Macaroon.Instances
23
24tests :: TestTree
25tests = testGroup "Crypto.Macaroon.Verifier" [ sigs
26 ]
27
28sec = B8.pack "this is our super secret key; only we should know it"
29
30m :: Macaroon
31m = create sec key loc
32 where
33 key = B8.pack "we used our sec key"
34 loc = B8.pack "http://mybank/"
35
36m2 :: Macaroon
37m2 = addFirstPartyCaveat "test = caveat" m
38
39m3 :: Macaroon
40m3 = addFirstPartyCaveat "test = acaveat" m
41
42sigs = testGroup "Signatures" [ basic
43 , minted
44 ]
45
46basic = testCase "Basic Macaroon Signature" $
47 Success @=? verifySig sec m
48
49
50minted :: TestTree
51minted = testGroup "Macaroon with first party caveats" [ one
52 , two
53 ]
54one = testCase "One caveat" $
55 Success @=? verifySig sec m2
56
57two = testCase "Two caveats" $
58 Success @=? verifySig sec m3
59
diff --git a/test/main.hs b/test/main.hs
index 48519b9..3edbe54 100644
--- a/test/main.hs
+++ b/test/main.hs
@@ -6,6 +6,7 @@ import Test.Tasty.HUnit
6import qualified Sanity 6import qualified Sanity
7import qualified Crypto.Macaroon.Tests 7import qualified Crypto.Macaroon.Tests
8import qualified Crypto.Macaroon.Serializer.Base64.Tests 8import qualified Crypto.Macaroon.Serializer.Base64.Tests
9import qualified Crypto.Macaroon.Verifier.Tests
9 10
10main = defaultMain tests 11main = defaultMain tests
11 12
@@ -13,5 +14,6 @@ tests :: TestTree
13tests = testGroup "Tests" [ Sanity.tests 14tests = testGroup "Tests" [ Sanity.tests
14 , Crypto.Macaroon.Tests.tests 15 , Crypto.Macaroon.Tests.tests
15 , Crypto.Macaroon.Serializer.Base64.Tests.tests 16 , Crypto.Macaroon.Serializer.Base64.Tests.tests
17 , Crypto.Macaroon.Verifier.Tests.tests
16 ] 18 ]
17 19