hscim-0.3.6: test/Test/Schema/AuthenticationSchemeSpec.hs
-- This file is part of the Wire Server implementation.
--
-- Copyright (C) 2020 Wire Swiss GmbH <opensource@wire.com>
--
-- This program is free software: you can redistribute it and/or modify it under
-- the terms of the GNU Affero General Public License as published by the Free
-- Software Foundation, either version 3 of the License, or (at your option) any
-- later version.
--
-- This program is distributed in the hope that it will be useful, but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-- FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
-- details.
--
-- You should have received a copy of the GNU Affero General Public License along
-- with this program. If not, see <https://www.gnu.org/licenses/>.
module Test.Schema.AuthenticationSchemeSpec
( spec,
)
where
import Data.Aeson
import HaskellWorks.Hspec.Hedgehog (require)
import Hedgehog
import qualified Hedgehog.Gen as Gen
import Test.Hspec
import Test.Schema.Util (genUri, mk_prop_caseInsensitive)
import qualified Web.Scim.Schema.AuthenticationScheme as AS
prop_roundtrip :: Property
prop_roundtrip = property $ do
user <- forAll genAuthenticationSchemeEncoding
tripping user toJSON fromJSON
spec :: Spec
spec = do
it "roundtrip" $ do
require prop_roundtrip
it "case-insensitive" $ do
require $ mk_prop_caseInsensitive genAuthenticationSchemeEncoding
genAuthenticationSchemeEncoding :: Gen AS.AuthenticationSchemeEncoding
genAuthenticationSchemeEncoding =
AS.AuthenticationSchemeEncoding
<$> Gen.element ["typ1", "typ2"]
<*> Gen.element ["name1", "name2", "name3"]
<*> Gen.element ["desc ription"]
<*> Gen.maybe genUri
<*> Gen.maybe genUri