1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
module BufferPoolSpec where
import qualified Data.ByteString as B
import qualified Data.ByteString.Internal as B (ByteString(PS))
import Foreign.ForeignPtr (withForeignPtr)
import Foreign.Marshal.Utils (copyBytes)
import Foreign.Ptr (plusPtr)
import Network.Socket.BufferPool
import Test.Hspec (Spec, hspec, shouldBe, describe, it)
main :: IO ()
main = hspec spec
-- Two ByteStrings each big enough to fill a buffer (16K).
wantData, otherData :: B.ByteString
wantData = B.replicate 16384 0xac
otherData = B.replicate 16384 0x77
spec :: Spec
spec = describe "withBufferPool" $ do
it "does not clobber buffers" $ do
pool <- newBufferPool 2048 16384
-- 'pool' contains B.empty; prime it to contain a real buffer.
_ <- withBufferPool pool $ \_ _ -> return 0
-- 'pool' contains a 16K buffer; fill it with \xac and keep the result.
got <- withBufferPool pool $ blitBuffer wantData
got `shouldBe` wantData
-- 'pool' should now be empty and reallocate, rather than clobber the
-- previous buffer.
_ <- withBufferPool pool $ blitBuffer otherData
got `shouldBe` wantData
-- Fill the Buffer with the contents of the ByteString and return the number of
-- bytes written. To be used with 'withBufferPool'.
blitBuffer :: B.ByteString -> Buffer -> BufSize -> IO Int
blitBuffer (B.PS fp off len) dst len' = withForeignPtr fp $ \ptr -> do
let src = ptr `plusPtr` off
n = min len len'
copyBytes dst src n
return n
|