packages feed

data-diverse-4.2.0.0: test/Data/Diverse/WhichSpec.hs

{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}

module Data.Diverse.WhichSpec (main, spec) where

import Data.Diverse
import Data.Int
import Data.Tagged
import Data.Typeable
import Test.Hspec

data Foo
data Bar
data Hi
data Bye

-- `main` is here so that this module can be run from GHCi on its own.  It is
-- not needed for automatic spec discovery.
main :: IO ()
main = hspec spec

-- | Utility to convert Either to Maybe
hush :: Either a b -> Maybe b
hush = either (const Nothing) Just

spec :: Spec
spec = do
    describe "Which" $ do

        it "is a Show" $ do
            let x = pickN @0 5 :: Which '[Int, Bool]
            show x `shouldBe` "pickN @0 5"

        it "is a Read and Show" $ do
            let s1 = "pickN @0 5"
                x1 = read s1 :: Which '[Int, Bool]
            show x1 `shouldBe` s1
            let s2 = "pickN @1 True"
                x2 = read s2 :: Which '[Int, Bool]
            show x2 `shouldBe` s2
            -- "zilch" `shouldBe` show zilch
            -- "zilch" `shouldBe` show (read "zilch" :: Which '[])

        it "is an Eq" $ do
            let y = pick (5 :: Int) :: Which '[Int, Bool]
            let y' = pick (5 :: Int) :: Which '[Int, Bool]
            y `shouldBe` y'

        it "is an Ord" $ do
            let y5 = pick (5 :: Int) :: Which '[Int, Bool]
            let y6 = pick (6 :: Int) :: Which '[Int, Bool]
            compare y5 y5 `shouldBe` EQ
            compare y5 y6 `shouldBe` LT
            compare y6 y5 `shouldBe` GT

        it "can be constructed by type with 'pick' and destructed with 'trial'" $ do
            let y = pick (5 :: Int) :: Which '[Bool, Int, Char]
                x = hush $ trial @Int y
            x `shouldBe` (Just 5)

        it "can be constructed by label with 'pickL' and destructed with 'trialL'" $ do
            let y = pickL @Foo (Tagged (5 :: Int)) :: Which '[Bool, Tagged Foo Int, Tagged Bar Char]
                x = hush $ trialL @Foo y
            x `shouldBe` (Just (Tagged 5))

        it "may contain possiblities of duplicate types" $ do
            let y = pick (5 :: Int) :: Which '[Bool, Int, Char, Bool, Char]
                x = hush $ trial @Int y
            x `shouldBe` (Just 5)

        it "can be constructed conveniently with 'pick'' and destructed with 'trial0'" $ do
            let y = pickOnly (5 :: Int)
                x = hush $ trial0 y
            x `shouldBe` (Just 5)

        it "can be constructed by index with 'pickN' and destructed with 'trialN" $ do
            let y = pickN @4 (5 :: Int) :: Which '[Bool, Int, Char, Bool, Int, Char]
                x = hush $ trialN @4 y
            x `shouldBe` (Just 5)

        it "can be 'trial'led until its final 'obvious' value" $ do
            let a = pick @_ @'[Char, Int, Bool, String] (5 :: Int)
                b = pick @_ @'[Char, Int, String] (5 :: Int)
                c = pick @_ @'[Int, String] (5 :: Int)
                d = pick @_ @'[Int] (5 :: Int)
            trial @Int a `shouldBe` Right 5
            trial @Bool a `shouldBe` Left b
            trial @Int b `shouldBe` Right 5
            trial @Char b `shouldBe` Left c
            trial @Int c `shouldBe` Right 5
            trial @String c `shouldBe` Left d
            trial @Int d `shouldBe` Right 5
            -- trial @Int d `shouldNotBe` Left zilch
            obvious d `shouldBe` 5

        it "can be 'trialN'led until its final 'obvious' value" $ do
            let a = pickN @2 @_ @'[Char, Bool, Int, Bool, Char, String] (5 :: Int)
                b = pickN @2 @_ @'[Char, Bool, Int, Char, String] (5 :: Int)
                c = pickN @2 @_ @'[Char, Bool, Int, String] (5 :: Int)
                d = pickN @1 @_ @'[Bool, Int, String] (5 :: Int)
                e = pickN @1 @_ @'[Bool, Int] (5 :: Int)
                f = pickN @0 @_ @'[Int] (5 :: Int)
            trial @Int a `shouldBe` Right 5
            trialN @2 a `shouldBe` Right 5
            trialN @3 a `shouldBe` Left b

            trial @Int b `shouldBe` Right 5
            trialN @2 b `shouldBe` Right 5
            trialN @3 b `shouldBe` Left c

            trial @Int c `shouldBe` Right 5
            trialN @2 c `shouldBe` Right 5
            trial0 c `shouldBe` Left d
            trialN @0 c `shouldBe` Left d

            trial @Int d `shouldBe` Right 5
            trialN @1 d `shouldBe` Right 5
            trialN @2 d `shouldBe` Left e

            trial @Int e `shouldBe` Right 5
            trialN @1 e `shouldBe` Right 5
            trialN @0 e `shouldBe` Left f
            trial0 e `shouldBe` Left f

            trial @Int f `shouldBe` Right 5
            -- trial @Int f `shouldNotBe` Left zilch
            trial0 f `shouldBe` Right 5
            obvious f `shouldBe` 5

        it "can be extended and rearranged by type with 'diversify'" $ do
            let y = pickOnly (5 :: Int)
                y' = diversify @_ @[Int, Bool] y
                y'' = diversify @_ @[Bool, Int] y'
            switch y'' (CaseFunc @Typeable (show . typeRep . (pure @Proxy))) `shouldBe` "Int"

        it "can be extended and rearranged by type with 'diversify'" $ do
            let y = pickOnly (5 :: Tagged Bar Int)
                y' = diversifyL @'[Bar] y :: Which '[Tagged Bar Int, Tagged Foo Bool]
                y'' = diversifyL @'[Bar, Foo] y' :: Which '[Tagged Foo Bool, Tagged Bar Int]
            switch y'' (CaseFunc @Typeable (show . typeRep . (pure @Proxy))) `shouldBe` "Tagged * Bar Int"

        it "can be extended and rearranged by index with 'diversifyN'" $ do
            let y = pickOnly (5 :: Int)
                y' = diversifyN @'[0] @_ @[Int, Bool] y
                y'' = diversifyN @[1,0] @_ @[Bool, Int] y'
            switch y'' (CaseFunc @Typeable (show . typeRep . (pure @Proxy))) `shouldBe` "Int"

        it "the 'diversify'ed type can contain multiple fields if they aren't in the original 'Many'" $ do
            let y = pick @_ @[Int, Char] (5 :: Int)
                x = diversify @_ @[String, String, Char, Bool, Int] y
                -- Compile error: Char is a duplicate
                -- z = diversify @[String, String, Char, Bool, Int, Char] y
            x `shouldBe` pick (5 :: Int)

        it "the 'diversify'ed type can't use indistinct fields from the original 'Many'" $ do
            let y = pickN @0 @_ @[Int, Char, Int] (5 :: Int) -- duplicate Int
                -- Compile error: Int is a duplicate
                -- x = diversify @[String, String, Char, Bool, Int] y
            y `shouldBe` y

        it "can be 'reinterpret'ed by type into a totally different Which" $ do
            let y = pick @_ @[Int, Char] (5 :: Int)
                a = reinterpret @[String, Bool] y
            a `shouldBe` Left y
            let  b = reinterpret @[String, Char] y
            b `shouldBe` Left (pick (5 :: Int))
            let c = reinterpret @[String, Int] y
            c `shouldBe` Right (pick (5 :: Int))

        it "can be 'reinterpretL'ed by label into a totally different Which" $ do
            let y = pick @_ @[Tagged Bar Int, Tagged Foo Bool, Tagged Hi Char, Tagged Bye Bool] (5 :: Tagged Bar Int)
                y' = reinterpretL @[Foo, Bar] y
                x = pick @_ @[Tagged Foo Bool, Tagged Bar Int] (5 :: Tagged Bar Int)
            y' `shouldBe` Right x

        it "the 'reinterpret' type can contain indistinct fields if they aren't in the original 'Many'" $ do
            let y = pick @_ @[Int, Char] (5 :: Int)
                x = reinterpret @[String, String, Char, Bool] y
                -- Compile error: Char is a duplicate
                -- z = reinterpret @[String, Char, Char, Bool] y
            x `shouldBe` Left (pick (5 :: Int))

        it "the 'reinterpret'ed from type can't indistinct fields'" $ do
            let y = pickN @0 @_ @[Int, Char, Int] (5 :: Int) -- duplicate Int
                -- Compile error: Int is a duplicate
                -- x = reinterpret @[String, String, Char, Bool] y
            y `shouldBe` y

        it "the 'reinterpret' type can't use indistinct fields from the original 'Many'" $ do
            let y = pickN @0 @_ @[Int, Char, Int] (5 :: Int) -- duplicate Int
                -- Compile error: Int is a duplicate
                -- x = reinterpret @[String, String, Char, Bool, Int] y
            y `shouldBe` y

        it "can be 'reinterpretN'ed by index into a subset Which" $ do
            let y = pick @_ @[Char, String, Int, Bool] (5 :: Int)
                a = reinterpretN' @[2, 0] @[Int, Char] y
                a' = reinterpretN' @[3, 0] @[Bool, Char] y
            a `shouldBe` Just (pick (5 :: Int))
            a' `shouldBe` Nothing

        it "can be 'switch'ed with 'Many' handlers in any order" $ do
            let y = pickN @0 (5 :: Int) :: Which '[Int, Bool, Bool, Int]
            switch y (
                cases (show @Bool
                    ./ show @Int
                    ./ nil)) `shouldBe` "5"

        it "can be 'switch'ed with 'Many' handlers with extraneous content" $ do
            let y = pick (5 :: Int) :: Which '[Int, Bool]
            switch y (
                -- contrast with lowercase 'cases' which disallows extraneous content
                cases' (show @Int
                    ./ show @Bool
                    ./ show @Char
                    ./ show @(Maybe Char)
                    ./ show @(Maybe Int)
                    ./ nil
                )) `shouldBe` "5"

        it "can be 'switchN'ed with 'Many' handlers in index order" $ do
            let y = pickN @0 (5 :: Int) :: Which '[Int, Bool, Bool, Int]
            switchN y (
                casesN (show @Int
                    ./ show @Bool
                    ./ show @Bool
                    ./ show @Int
                    ./ nil)) `shouldBe` "5"

        it "can be switched with a polymorphic 'CaseFunc' handler" $ do
            let y = pick (5 :: Int) :: Which '[Int, Bool]
            switch y (CaseFunc @Typeable (show . typeRep . (pure @Proxy))) `shouldBe` "Int"
#if __GLASGOW_HASKELL__ >= 802
            let expected = "Which (': * Int (': * Bool ('[] *)))"
#else
            let expected = "Which (': * Int (': * Bool '[]))"
#endif
            (show . typeRep . (pure @Proxy) $ y) `shouldBe` expected

        -- it "is a compile error to 'trial', 'diversify', 'reinterpret from non-zilch to 'zilch'" $ do
            -- let a = diversify @[Int, Bool] zilch
            -- let a = trial @Int zilch
            -- let a = trialN @0 zilch
            -- let a = reinterpret @[Int, Bool] zilch
            -- let a = reinterpretN @'[0] zilch
            -- zilch `shouldBe` zilch

        it "is ok to 'reinterpret' and 'diversity' from Which '[]" $ do
            let x = pick @_ @'[Int] (5 :: Int)
            case trial @Int x of
                Right y -> y `shouldBe` y
                Left z -> do
                    -- Which '[] can be diversified into anything
                    -- This is safe because Which '[] is uninhabited like Data.Void
                    -- and so like Data.Void.absurd, "if given a falsehood, anything follows"
                    diversify @'[] @'[Int, Bool] z `shouldBe` impossible z
                    reinterpret' @'[] z `shouldBe` Just z
                    reinterpret @'[] z `shouldBe` Right z
                    diversify @'[] z `shouldBe` z
                    compare z z `shouldBe` EQ
            reinterpret' @'[] x `shouldBe` Nothing
            reinterpret @'[] x `shouldBe` Left x

        it "'impossible' is just like 'absurd'. Once given an impossible Which '[], anything follows" $ do
            let x = pick @_ @'[Int] (5 :: Int)
            case trial @Int x of
                Right y -> y `shouldBe` y
                Left z -> impossible z

        it "every possibility can be mapped into a different type in a Functor-like fashion with using 'afmap'" $ do
            let x = pick (5 :: Int8) :: Which '[Int, Int8, Int16]
                y = pick (15 :: Int8) :: Which '[Int, Int8, Int16]
                z = pickN @1 ("5" :: String) :: Which '[String, String, String]
                mx = pick (Just 5 :: Maybe Int8) :: Which '[Maybe Int, Maybe Int8, Maybe Int16]
                my = pick (Just 15 :: Maybe Int8) :: Which '[Maybe Int, Maybe Int8, Maybe Int16]
                mz = pickN @1 (Just "5" :: Maybe String) :: Which '[Maybe String, Maybe String, Maybe String]
            afmap (CaseFunc' @Num (+10)) x `shouldBe` y
            afmap (CaseFunc @Show @String show) x `shouldBe` z
            afmap (CaseFunc1' @NoConstraint @Functor @Num (fmap (+10))) mx `shouldBe` my
            afmap (CaseFunc1 @NoConstraint @Functor @Show @String (fmap show)) mx `shouldBe` mz