sandwich-webdriver-0.3.0.1: src/Test/Sandwich/WebDriver/Internal/Binaries/Xvfb.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeApplications #-}
module Test.Sandwich.WebDriver.Internal.Binaries.Xvfb (
obtainXvfb
-- * Types
, XvfbDependenciesSpec(..)
, XvfbToUse(..)
, FluxboxToUse(..)
) where
import Control.Monad.IO.Unlift
import Control.Monad.Logger
import Control.Monad.Reader
import Data.String.Interpolate
import qualified Data.Text as T
import Test.Sandwich
import Test.Sandwich.Contexts.Files
import Test.Sandwich.WebDriver.Internal.Binaries.Xvfb.Types
import UnliftIO.Directory
-- | Manually obtain an Xvfb binary, according to the 'XvfbToUse' policy.
obtainXvfb :: (
MonadReader context m, HasBaseContext context
, MonadUnliftIO m, MonadLoggerIO m
) => XvfbToUse -> m (Either T.Text FilePath)
obtainXvfb UseXvfbFromPath = findExecutable "Xvfb" >>= \case
Nothing -> return $ Left [i|Couldn't find "Xvfb" on the PATH.|]
Just p -> do
debug [i|Found Xvfb at #{p}|]
return $ Right p
obtainXvfb (UseXvfbAt path) = doesFileExist path >>= \case
False -> return $ Left [i|Path '#{path}' didn't exist|]
True -> do
debug [i|Found Xvfb at #{path}|]
return $ Right path
obtainXvfb (UseXvfbFromNixpkgs nixContext) = do
-- Note: on master *after* release-24.05, there seems to be xorg.xvfb
debug [i|Building Xvfb with Nix|]
ret <- getBinaryViaNixPackage' @"Xvfb" nixContext "xorg.xorgserver"
debug [i|Built Xvfb: #{ret}|]
return $ Right ret