packages feed

jvm-binary-0.9.0: test/Language/JVM/Attribute/SignatureSpec.hs

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}

module Language.JVM.Attribute.SignatureSpec where

import           SpecHelper

import           Language.JVM.ConstantSpec      ( )

import           Language.JVM.Attribute.Signature
import           Language.JVM

import qualified Data.Text                     as Text
import           Data.Attoparsec.Text

spec :: Spec
spec = do
  it "can do a roundtrip" $ property $ prop_roundtrip_SignatureSpec

  prop "can do handle field" $ prop_field_signature
  prop "can do handle class" $ prop_class_signature
  prop "can do handle method" $ prop_method_signature

  spec_real_signatures

prop_roundtrip_SignatureSpec :: Signature High -> Property
prop_roundtrip_SignatureSpec = isoRoundtrip

prop_field_signature :: FieldSignature -> Property
prop_field_signature sig =
  let txt = fieldSignatureToText sig
  in  counterexample (Text.unpack txt)
        $   fieldSignatureFromText txt
        === Right sig

prop_method_signature :: MethodSignature -> Property
prop_method_signature sig =
  let txt = methodSignatureToText sig
  in  counterexample (Text.unpack txt)
        $   methodSignatureFromText txt
        === Right sig

prop_class_signature :: ClassSignature -> Property
prop_class_signature sig =
  let txt = classSignatureToText sig
  in  counterexample (Text.unpack txt)
        $   classSignatureFromText txt
        === Right sig

spec_real_signatures :: SpecWith ()
spec_real_signatures = do
  it "can handle this class type Ljava/lang/Object;" $ do
    let sig = "Ljava/lang/Object;"
    parseOnly referenceTypeP sig `shouldBe` Right
      (RefClassType (ClassType "java/lang/Object" Nothing []))

  it "can handle this class type Lqueues/Deque<TItem;>.Node;" $ do
    let sig = "Lqueues/Deque<TItem;>.Node;"
    parseOnly classTypeP sig `shouldBe` Right
      (ClassType
        "queues/Deque"
        (Just (InnerClassType "Node" Nothing []))
        [Just (TypeArgument Nothing (RefTypeVariable (TypeVariable "Item")))]
      )

  it "can handle this type parameter E:Ljava/lang/Object;" $ do
    let sig = "E:Ljava/lang/Object;"
    parseOnly typeParameterP sig `shouldBe` Right
      (TypeParameter
        { tpIdentifier     = "E"
        , tpClassBound     =
          Just (RefClassType (ClassType "java/lang/Object" Nothing []))
        , tpInterfaceBound = []
        }
      )
  it "can handle this type parameter <E:Ljava/lang/Object;>" $ do
    let sig = "<E:Ljava/lang/Object;>"
    parseOnly typeParametersP sig `shouldBe` Right
      [ TypeParameter
          { tpIdentifier     = "E"
          , tpClassBound     = Just
                                 (RefClassType
                                   (ClassType { ctsName = "java/lang/Object"
                                              , ctsInnerClass = Nothing
                                              , ctsTypeArguments = []
                                              }
                                   )
                                 )
          , tpInterfaceBound = []
          }
      ]
  it "can handle the class signature of Iterator" $ do
    let sig = "<E:Ljava/lang/Object;>Ljava/lang/Object;"
    parseOnly classSignatureP sig `shouldBe` Right
      (ClassSignature
        { csTypeParameters      = [ TypeParameter
                                      { tpIdentifier     = "E"
                                      , tpClassBound     = Just
                                                             (RefClassType
                                                               (ClassType
                                                                 { ctsName =
                                                                   "java/lang/Object"
                                                                 , ctsInnerClass =
                                                                   Nothing
                                                                 , ctsTypeArguments = []
                                                                 }
                                                               )
                                                             )
                                      , tpInterfaceBound = []
                                      }
                                  ]
        , csSuperclassSignature = ClassType { ctsName = "java/lang/Object"
                                            , ctsInnerClass = Nothing
                                            , ctsTypeArguments = []
                                            }
        , csInterfaceSignatures = []
        }
      )
  it "can handle the method signature of Iterator" $ do
    let sig = "(Ljava/util/function/Consumer<-TE;>;)V"
    parseOnly methodSignatureP sig `shouldBe` Right
      (MethodSignature
        { msTypeParameters = []
        , msArguments      =
          [ ReferenceType
              (RefClassType
                (ClassType
                  { ctsName          = "java/util/function/Consumer"
                  , ctsInnerClass    = Nothing
                  , ctsTypeArguments =
                    [ Just
                        (TypeArgument
                          { taWildcard = Just WildMinus
                          , taType     = RefTypeVariable
                                           (TypeVariable { tvAsText = "E" })
                          }
                        )
                    ]
                  }
                )
              )
          ]
        , msResults        = Nothing
        , msThrows         = []
        }
      )


  it "can handle the simple method signature" $ do
    parseOnly methodSignatureP "()V"
      `shouldBe` Right (MethodSignature [] [] Nothing [])

  it "can handle throws method signature" $ do
    parseOnly (methodSignatureP <* endOfInput) "()V^TE;" `shouldBe` Right
      (MethodSignature [] [] Nothing [ThrowsTypeVariable (TypeVariable "E")])

  it "can handle throws method signature with class" $ do
    parseOnly (methodSignatureP) "()V^Ljava/lang/Exception;" `shouldBe` Right
      (MethodSignature
        []
        []
        Nothing
        [ ThrowsClass
            (ClassType { ctsName          = "java/lang/Exception"
                       , ctsInnerClass    = Nothing
                       , ctsTypeArguments = []
                       }
            )
        ]
      )

  it "can parse a type variable" $ do
    parseOnly typeVariableP "TE;" `shouldBe` Right (TypeVariable "E")

  it "can handle the simple field signature" $ do
    parseOnly fieldSignatureP "Ljava/util/function/Consumer<-TE;>;"
      `shouldBe` Right
                   (FieldSignature
                     (RefClassType
                       (ClassType
                         "java/util/function/Consumer"
                         Nothing
                         [ Just
                             ( TypeArgument (Just WildMinus)
                             . RefTypeVariable
                             $ TypeVariable "E"
                             )
                         ]
                       )
                     )
                   )


instance Arbitrary (Signature High) where
  arbitrary = genericArbitraryU

instance Arbitrary (FieldSignature) where
  arbitrary = genericArbitraryU

instance Arbitrary (ReferenceType) where
  arbitrary = scale (`div` 2) $ do
    n <- getSize
    if n == 0
      then pure (RefTypeVariable $ TypeVariable "X")
      else scale (\s -> s `div` 2) $ genericArbitraryU

instance Arbitrary (ClassType) where
  arbitrary = scale (`div` 2) $ do
    s <- getSize
    n <- choose (0, s)
    x <- vectorOf n (resize (s `div` n) arbitrary)
    ClassType <$> arbitrary <*> genInnerClassType <*> pure x

   where
    genInnerClassType = sized
      (\case
        0 -> pure $ Nothing
        _ -> do
          s <- getSize
          n <- choose (0, s)
          x <- vectorOf n (resize (s `div` n) arbitrary)
          fmap Just
            .   scale (`div` 2)
            $   InnerClassType
            <$> elements ["a", "subclass"]
            <*> genInnerClassType
            <*> pure x
      )


instance Arbitrary (TypeVariable) where
  arbitrary = TypeVariable <$> elements ["A", "B", "C", "HJ"]

instance Arbitrary (TypeSignature) where
  arbitrary = do
    n <- getSize
    if n == 0
      then BaseType <$> arbitrary
      else resize (n `div` 2) $ ReferenceType <$> arbitrary

instance Arbitrary (TypeArgument) where
  arbitrary = genericArbitraryU

instance Arbitrary (TypeParameter) where
  arbitrary =
    scale (`div` 2)
      $   TypeParameter
      <$> elements ["A", "B", "C", "HJ"]
      <*> arbitrary
      <*> arbitrary

instance Arbitrary (Wildcard) where
  arbitrary = genericArbitraryU

instance Arbitrary (MethodSignature) where
  arbitrary = genericArbitraryU

instance Arbitrary (ClassSignature) where
  arbitrary = genericArbitraryU

instance Arbitrary (ThrowsSignature) where
  arbitrary = genericArbitraryU

-- "Lcom/apple/eawt/_AppEventHandler$_AppEventDispatcher<Lcom/apple/eawt/QuitHandler;>;"
-- "Lcom/apple/eawt/_AppEventHandler$_BooleanAppEventMultiplexor<Lcom/apple/eawt/ScreenSleepListener;Lcom/apple/eawt/AppEvent$ScreenSleepEvent;>;"
-- "Lcom/apple/eawt/_AppEventHandler$_BooleanAppEventMultiplexor<Lcom/apple/eawt/SystemSleepListener;Lcom/apple/eawt/AppEvent$SystemSleepEvent;>;"
-- "Lcom/apple/eawt/_AppEventHandler$_BooleanAppEventMultiplexor<Lcom/apple/eawt/UserSessionListener;Lcom/apple/eawt/AppEvent$UserSessionEvent;>;"