Add a drop command, bound to 'd', which prompts the character for an item in their inventory, removes it from the inventory, and places it on the ground. Along the way I had to fix a bug in the `EntityMap.atPosition` lens, which was always appending to the existing entities at the position on set, without removing the entities that were already there - the rabbit hole of quickchecking the lens laws here also lead to replacing the target of this lens with a newtype called `VectorBag`, which ignores order (since the entitymap makes no guarantees about order of entities at a given position).
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-# LANGUAGE ApplicativeDo #-}
 | |
| --------------------------------------------------------------------------------
 | |
| module Xanthous.Data.EntityMapSpec where
 | |
| --------------------------------------------------------------------------------
 | |
| import           Test.Prelude
 | |
| import           Control.Lens.Properties
 | |
| --------------------------------------------------------------------------------
 | |
| import qualified Data.Aeson as JSON
 | |
| --------------------------------------------------------------------------------
 | |
| import           Xanthous.Data.EntityMap
 | |
| --------------------------------------------------------------------------------
 | |
| 
 | |
| main :: IO ()
 | |
| main = defaultMain test
 | |
| 
 | |
| test :: TestTree
 | |
| test = localOption (QuickCheckTests 20)
 | |
|   $ testGroup "Xanthous.Data.EntityMap"
 | |
|   [ testBatch $ monoid @(EntityMap Int) mempty
 | |
|   , testGroup "Deduplicate"
 | |
|     [ testGroup "Semigroup laws"
 | |
|       [ testProperty "associative" $ \(a :: Deduplicate (EntityMap Int)) b c ->
 | |
|           a <> (b <> c) === (a <> b) <> c
 | |
|       ]
 | |
|     ]
 | |
|   , testGroup "Eq laws"
 | |
|     [ testProperty "reflexivity" $ \(em :: EntityMap Int) ->
 | |
|         em == em
 | |
|     , testProperty "symmetric" $ \(em₁ :: EntityMap Int) em₂ ->
 | |
|         (em₁ == em₂) == (em₂ == em₁)
 | |
|     , testProperty "transitive" $ \(em₁ :: EntityMap Int) em₂ em₃ ->
 | |
|         if (em₁ == em₂ && em₂ == em₃)
 | |
|         then (em₁ == em₃)
 | |
|         else True
 | |
|     ]
 | |
|   , testGroup "JSON encoding/decoding"
 | |
|     [ testProperty "round-trips" $ \(em :: EntityMap Int) ->
 | |
|         let em' = JSON.decode (JSON.encode em)
 | |
|         in counterexample (show (em' ^? _Just . lastID, em ^. lastID
 | |
|                                 , em' ^? _Just . byID == em ^. byID . re _Just
 | |
|                                 , em' ^? _Just . byPosition == em ^. byPosition . re _Just
 | |
|                                 , em' ^? _Just . _EntityMap == em ^. _EntityMap . re _Just
 | |
|                                 ))
 | |
|            $ em' === Just em
 | |
|     , testProperty "Preserves IDs" $ \(em :: EntityMap Int) ->
 | |
|         let Just em' = JSON.decode $ JSON.encode em
 | |
|         in toEIDsAndPositioned em' === toEIDsAndPositioned em
 | |
|     ]
 | |
| 
 | |
|   , testGroup "atPosition"
 | |
|     [ testProperty "lens laws" $ \pos -> isLens $ atPosition @Int pos
 | |
|     ]
 | |
|   ]
 |