2013-05-23 23:00:46 +00:00
|
|
|
{- git-annex fuzz generator
|
|
|
|
-
|
|
|
|
- Copyright 2013 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.FuzzTest where
|
|
|
|
|
|
|
|
import Common.Annex
|
2013-05-26 20:04:52 +00:00
|
|
|
import qualified Annex
|
2013-05-23 23:00:46 +00:00
|
|
|
import Command
|
|
|
|
import qualified Git.Config
|
|
|
|
import Config
|
|
|
|
import Utility.ThreadScheduler
|
|
|
|
import Annex.Exception
|
2013-05-26 20:04:52 +00:00
|
|
|
import Utility.DiskFree
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
import Data.Time.Clock
|
|
|
|
import System.Random (getStdRandom, random, randomR)
|
|
|
|
import Test.QuickCheck
|
|
|
|
import Control.Concurrent
|
|
|
|
|
|
|
|
def :: [Command]
|
|
|
|
def = [ notBareRepo $ command "fuzztest" paramNothing seek SectionPlumbing
|
|
|
|
"generates fuzz test files"]
|
|
|
|
|
fix inversion of control in CommandSeek (no behavior changes)
I've been disliking how the command seek actions were written for some
time, with their inversion of control and ugly workarounds.
The last straw to fix it was sync --content, which didn't fit the
Annex [CommandStart] interface well at all. I have not yet made it take
advantage of the changed interface though.
The crucial change, and probably why I didn't do it this way from the
beginning, is to make each CommandStart action be run with exceptions
caught, and if it fails, increment a failure counter in annex state.
So I finally remove the very first code I wrote for git-annex, which
was before I had exception handling in the Annex monad, and so ran outside
that monad, passing state explicitly as it ran each CommandStart action.
This was a real slog from 1 to 5 am.
Test suite passes.
Memory usage is lower than before, sometimes by a couple of megabytes, and
remains constant, even when running in a large repo, and even when
repeatedly failing and incrementing the error counter. So no accidental
laziness space leaks.
Wall clock speed is identical, even in large repos.
This commit was sponsored by an anonymous bitcoiner.
2014-01-20 08:11:42 +00:00
|
|
|
seek :: CommandSeek
|
|
|
|
seek = withNothing start
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
start :: CommandStart
|
|
|
|
start = do
|
|
|
|
guardTest
|
|
|
|
logf <- fromRepo gitAnnexFuzzTestLogFile
|
|
|
|
showStart "fuzztest" logf
|
|
|
|
logh <-liftIO $ openFile logf WriteMode
|
|
|
|
void $ forever $ fuzz logh
|
|
|
|
stop
|
|
|
|
|
|
|
|
guardTest :: Annex ()
|
|
|
|
guardTest = unlessM (fromMaybe False . Git.Config.isTrue <$> getConfig key "") $
|
|
|
|
error $ unlines
|
|
|
|
[ "Running fuzz tests *writes* to and *deletes* files in"
|
|
|
|
, "this repository, and pushes those changes to other"
|
|
|
|
, "repositories! This is a developer tool, not something"
|
|
|
|
, "to play with."
|
|
|
|
, ""
|
|
|
|
, "Refusing to run fuzz tests, since " ++ keyname ++ " is not set!"
|
|
|
|
]
|
|
|
|
where
|
|
|
|
key = annexConfig "eat-my-repository"
|
|
|
|
(ConfigKey keyname) = key
|
|
|
|
|
|
|
|
|
|
|
|
fuzz :: Handle -> Annex ()
|
|
|
|
fuzz logh = do
|
|
|
|
action <- genFuzzAction
|
2013-05-25 19:52:28 +00:00
|
|
|
record logh $ flip Started action
|
2013-05-23 23:00:46 +00:00
|
|
|
result <- tryAnnex $ runFuzzAction action
|
2013-05-25 19:52:28 +00:00
|
|
|
record logh $ flip Finished $
|
|
|
|
either (const False) (const True) result
|
|
|
|
|
|
|
|
record :: Handle -> (UTCTime -> TimeStampedFuzzAction) -> Annex ()
|
|
|
|
record h tmpl = liftIO $ do
|
|
|
|
now <- getCurrentTime
|
|
|
|
let s = show $ tmpl now
|
|
|
|
print s
|
|
|
|
hPrint h s
|
|
|
|
hFlush h
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
{- Delay for either a fraction of a second, or a few seconds, or up
|
2013-05-26 20:04:52 +00:00
|
|
|
- to 1 minute.
|
|
|
|
-
|
|
|
|
- The MinutesDelay is used as an opportunity to do housekeeping tasks.
|
|
|
|
-}
|
|
|
|
randomDelay :: Delay -> Annex ()
|
|
|
|
randomDelay TinyDelay = liftIO $
|
|
|
|
threadDelay =<< getStdRandom (randomR (10000, 1000000))
|
|
|
|
randomDelay SecondsDelay = liftIO $
|
|
|
|
threadDelaySeconds =<< Seconds <$> getStdRandom (randomR (1, 10))
|
|
|
|
randomDelay MinutesDelay = do
|
|
|
|
liftIO $ threadDelaySeconds =<< Seconds <$> getStdRandom (randomR (1, 60))
|
|
|
|
reserve <- annexDiskReserve <$> Annex.getGitConfig
|
|
|
|
free <- liftIO $ getDiskFree "."
|
|
|
|
case free of
|
|
|
|
Just have | have < reserve -> do
|
|
|
|
warning "Low disk space; fuzz test paused."
|
|
|
|
liftIO $ threadDelaySeconds (Seconds 60)
|
|
|
|
randomDelay MinutesDelay
|
|
|
|
_ -> noop
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
data Delay
|
|
|
|
= TinyDelay
|
|
|
|
| SecondsDelay
|
|
|
|
| MinutesDelay
|
|
|
|
deriving (Read, Show, Eq)
|
|
|
|
|
|
|
|
instance Arbitrary Delay where
|
|
|
|
arbitrary = elements [TinyDelay, SecondsDelay, MinutesDelay]
|
|
|
|
|
|
|
|
data FuzzFile = FuzzFile FilePath
|
|
|
|
deriving (Read, Show, Eq)
|
|
|
|
|
|
|
|
data FuzzDir = FuzzDir FilePath
|
|
|
|
deriving (Read, Show, Eq)
|
|
|
|
|
|
|
|
instance Arbitrary FuzzFile where
|
|
|
|
arbitrary = FuzzFile <$> arbitrary
|
|
|
|
|
|
|
|
instance Arbitrary FuzzDir where
|
|
|
|
arbitrary = FuzzDir <$> arbitrary
|
|
|
|
|
|
|
|
class ToFilePath a where
|
|
|
|
toFilePath :: a -> FilePath
|
|
|
|
|
|
|
|
instance ToFilePath FuzzFile where
|
|
|
|
toFilePath (FuzzFile f) = f
|
|
|
|
|
|
|
|
instance ToFilePath FuzzDir where
|
|
|
|
toFilePath (FuzzDir d) = d
|
|
|
|
|
|
|
|
isFuzzFile :: FilePath -> Bool
|
|
|
|
isFuzzFile f = "fuzzfile_" `isPrefixOf` takeFileName f
|
|
|
|
|
|
|
|
isFuzzDir :: FilePath -> Bool
|
|
|
|
isFuzzDir d = "fuzzdir_" `isPrefixOf` d
|
|
|
|
|
|
|
|
mkFuzzFile :: FilePath -> [FuzzDir] -> FuzzFile
|
|
|
|
mkFuzzFile file dirs = FuzzFile $ joinPath (map toFilePath dirs) </> ("fuzzfile_" ++ file)
|
|
|
|
|
|
|
|
mkFuzzDir :: Int -> FuzzDir
|
|
|
|
mkFuzzDir n = FuzzDir $ "fuzzdir_" ++ show n
|
|
|
|
|
2013-05-26 20:15:25 +00:00
|
|
|
{- File is placed inside a directory hierarchy up to 4 subdirectories deep. -}
|
2013-05-23 23:00:46 +00:00
|
|
|
genFuzzFile :: IO FuzzFile
|
|
|
|
genFuzzFile = do
|
2013-05-26 20:15:25 +00:00
|
|
|
n <- getStdRandom $ randomR (0, 4)
|
2013-05-23 23:00:46 +00:00
|
|
|
dirs <- replicateM n genFuzzDir
|
|
|
|
file <- show <$> (getStdRandom random :: IO Int)
|
|
|
|
return $ mkFuzzFile file dirs
|
|
|
|
|
2013-05-26 20:15:25 +00:00
|
|
|
{- Only 16 distinct subdirectories are used. When nested 4 deep, this
|
|
|
|
- yields 69904 total directories max, which is below the default Linux
|
|
|
|
- inotify limit of 81920. The goal is not to run the assistant out of
|
|
|
|
- inotify descriptors. -}
|
2013-05-23 23:00:46 +00:00
|
|
|
genFuzzDir :: IO FuzzDir
|
2013-05-26 20:15:25 +00:00
|
|
|
genFuzzDir = mkFuzzDir <$> (getStdRandom (randomR (1,16)) :: IO Int)
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
data TimeStampedFuzzAction
|
|
|
|
= Started UTCTime FuzzAction
|
|
|
|
| Finished UTCTime Bool
|
|
|
|
deriving (Read, Show)
|
|
|
|
|
|
|
|
data FuzzAction
|
|
|
|
= FuzzAdd FuzzFile
|
|
|
|
| FuzzDelete FuzzFile
|
|
|
|
| FuzzMove FuzzFile FuzzFile
|
|
|
|
| FuzzModify FuzzFile
|
|
|
|
| FuzzDeleteDir FuzzDir
|
|
|
|
| FuzzMoveDir FuzzDir FuzzDir
|
|
|
|
| FuzzPause Delay
|
|
|
|
deriving (Read, Show, Eq)
|
|
|
|
|
|
|
|
instance Arbitrary FuzzAction where
|
|
|
|
arbitrary = frequency
|
2013-05-25 21:18:37 +00:00
|
|
|
[ (50, FuzzAdd <$> arbitrary)
|
|
|
|
, (50, FuzzDelete <$> arbitrary)
|
2013-05-23 23:00:46 +00:00
|
|
|
, (10, FuzzMove <$> arbitrary <*> arbitrary)
|
|
|
|
, (10, FuzzModify <$> arbitrary)
|
|
|
|
, (10, FuzzDeleteDir <$> arbitrary)
|
|
|
|
, (10, FuzzMoveDir <$> arbitrary <*> arbitrary)
|
|
|
|
, (10, FuzzPause <$> arbitrary)
|
|
|
|
]
|
|
|
|
|
|
|
|
runFuzzAction :: FuzzAction -> Annex ()
|
|
|
|
runFuzzAction (FuzzAdd (FuzzFile f)) = liftIO $ do
|
|
|
|
createDirectoryIfMissing True $ parentDir f
|
|
|
|
n <- getStdRandom random :: IO Int
|
|
|
|
writeFile f $ show n ++ "\n"
|
|
|
|
runFuzzAction (FuzzDelete (FuzzFile f)) = liftIO $ nukeFile f
|
|
|
|
runFuzzAction (FuzzMove (FuzzFile src) (FuzzFile dest)) = liftIO $
|
|
|
|
rename src dest
|
|
|
|
runFuzzAction (FuzzModify (FuzzFile f)) = whenM isDirect $ liftIO $ do
|
|
|
|
n <- getStdRandom random :: IO Int
|
|
|
|
appendFile f $ show n ++ "\n"
|
|
|
|
runFuzzAction (FuzzDeleteDir (FuzzDir d)) = liftIO $
|
|
|
|
removeDirectoryRecursive d
|
|
|
|
runFuzzAction (FuzzMoveDir (FuzzDir src) (FuzzDir dest)) = liftIO $
|
|
|
|
rename src dest
|
2013-05-26 20:04:52 +00:00
|
|
|
runFuzzAction (FuzzPause d) = randomDelay d
|
2013-05-23 23:00:46 +00:00
|
|
|
|
|
|
|
genFuzzAction :: Annex FuzzAction
|
2013-05-25 21:52:33 +00:00
|
|
|
genFuzzAction = do
|
|
|
|
tmpl <- liftIO $ Prelude.head <$> sample' (arbitrary :: Gen FuzzAction)
|
2013-05-23 23:00:46 +00:00
|
|
|
-- Fix up template action to make sense in the current repo tree.
|
|
|
|
case tmpl of
|
2013-05-25 21:52:33 +00:00
|
|
|
FuzzAdd _ -> do
|
|
|
|
f <- liftIO newFile
|
|
|
|
maybe genFuzzAction (return . FuzzAdd) f
|
|
|
|
FuzzDelete _ -> do
|
|
|
|
f <- liftIO $ existingFile 0 ""
|
|
|
|
maybe genFuzzAction (return . FuzzDelete) f
|
|
|
|
FuzzMove _ _ -> do
|
|
|
|
src <- liftIO $ existingFile 0 ""
|
|
|
|
dest <- liftIO newFile
|
|
|
|
case (src, dest) of
|
|
|
|
(Just s, Just d) -> return $ FuzzMove s d
|
|
|
|
_ -> genFuzzAction
|
2013-05-23 23:00:46 +00:00
|
|
|
FuzzMoveDir _ _ -> do
|
2013-05-25 21:52:33 +00:00
|
|
|
md <- liftIO existingDir
|
|
|
|
case md of
|
|
|
|
Nothing -> genFuzzAction
|
|
|
|
Just d -> do
|
|
|
|
newd <- liftIO $ newDir (parentDir $ toFilePath d)
|
|
|
|
maybe genFuzzAction (return . FuzzMoveDir d) newd
|
|
|
|
FuzzDeleteDir _ -> do
|
|
|
|
d <- liftIO existingDir
|
|
|
|
maybe genFuzzAction (return . FuzzDeleteDir) d
|
|
|
|
FuzzModify _ -> do
|
|
|
|
f <- liftIO $ existingFile 0 ""
|
|
|
|
maybe genFuzzAction (return . FuzzModify) f
|
2013-05-23 23:00:46 +00:00
|
|
|
FuzzPause _ -> return tmpl
|
|
|
|
|
2013-05-25 21:52:33 +00:00
|
|
|
existingFile :: Int -> FilePath -> IO (Maybe FuzzFile)
|
|
|
|
existingFile 0 _ = return Nothing
|
2013-05-25 22:15:34 +00:00
|
|
|
existingFile n top = do
|
|
|
|
dir <- existingDirIncludingTop
|
|
|
|
contents <- catchDefaultIO [] (getDirectoryContents dir)
|
|
|
|
let files = filter isFuzzFile contents
|
|
|
|
if null files
|
|
|
|
then do
|
|
|
|
let dirs = filter isFuzzDir contents
|
|
|
|
if null dirs
|
|
|
|
then return Nothing
|
|
|
|
else do
|
|
|
|
i <- getStdRandom $ randomR (0, length dirs - 1)
|
|
|
|
existingFile (n - 1) (top </> dirs !! i)
|
|
|
|
else do
|
|
|
|
i <- getStdRandom $ randomR (0, length files - 1)
|
|
|
|
return $ Just $ FuzzFile $ top </> dir </> files !! i
|
|
|
|
|
|
|
|
existingDirIncludingTop :: IO FilePath
|
|
|
|
existingDirIncludingTop = do
|
2013-05-23 23:00:46 +00:00
|
|
|
dirs <- filter isFuzzDir <$> getDirectoryContents "."
|
|
|
|
if null dirs
|
2013-05-25 22:15:34 +00:00
|
|
|
then return "."
|
2013-05-23 23:00:46 +00:00
|
|
|
else do
|
|
|
|
n <- getStdRandom $ randomR (0, length dirs)
|
2013-05-25 22:15:34 +00:00
|
|
|
return $ ("." : dirs) !! n
|
|
|
|
|
|
|
|
existingDir :: IO (Maybe FuzzDir)
|
|
|
|
existingDir = do
|
|
|
|
d <- existingDirIncludingTop
|
|
|
|
return $ if isFuzzDir d
|
|
|
|
then Just $ FuzzDir d
|
|
|
|
else Nothing
|
2013-05-23 23:00:46 +00:00
|
|
|
|
2013-05-25 21:52:33 +00:00
|
|
|
newFile :: IO (Maybe FuzzFile)
|
2013-05-23 23:00:46 +00:00
|
|
|
newFile = go (100 :: Int)
|
|
|
|
where
|
2013-05-25 21:52:33 +00:00
|
|
|
go 0 = return Nothing
|
2013-05-23 23:00:46 +00:00
|
|
|
go n = do
|
|
|
|
f <- genFuzzFile
|
|
|
|
ifM (doesnotexist (toFilePath f))
|
2013-05-25 21:52:33 +00:00
|
|
|
( return $ Just f
|
2013-05-23 23:00:46 +00:00
|
|
|
, go (n - 1)
|
|
|
|
)
|
|
|
|
|
2013-05-25 21:52:33 +00:00
|
|
|
newDir :: FilePath -> IO (Maybe FuzzDir)
|
2013-05-23 23:00:46 +00:00
|
|
|
newDir parent = go (100 :: Int)
|
|
|
|
where
|
2013-05-25 21:52:33 +00:00
|
|
|
go 0 = return Nothing
|
2013-05-23 23:00:46 +00:00
|
|
|
go n = do
|
|
|
|
(FuzzDir d) <- genFuzzDir
|
|
|
|
ifM (doesnotexist (parent </> d))
|
2013-05-25 21:52:33 +00:00
|
|
|
( return $ Just $ FuzzDir d
|
2013-05-23 23:00:46 +00:00
|
|
|
, go (n - 1)
|
|
|
|
)
|
|
|
|
|
|
|
|
doesnotexist :: FilePath -> IO Bool
|
|
|
|
doesnotexist f = isNothing <$> catchMaybeIO (getSymbolicLinkStatus f)
|