内容简介:You’re convinced thatThe fantasticAt work, we have a lot of complex SQL queries written both in
You’re convinced that Property Based Testing is awesome. You’ve read about using PBT to test a screencast editor and can’t wait to do more. But it’s time to write some property tests that integrate with an external system, and suddenly, it’s not so easy.
The fantastic
hedgehog
library has two “modes” of operation: generating values and making assertions on those values.
I wrote the compatibility library
hspec-hedgehog
to allow using hspec
’s nice testing features with hedgehog
’s excellent error messages.
But then the time came to start writing property tests against a Postgresql database.
At work, we have a lot of complex SQL queries written both in
esqueleto
and in raw SQL.
We’ve decided we want to increase our software quality by writing tests against our database code.
While both Haskell and SQL are declarative and sometimes obviously correct, it’s not always the case.
Writing property tests would help catch edge cases and prevent bugs from getting to our users.
IO Tests
It’s considered good practice to model tests in three separate phases:
- Arrange
- Act
- Assert
This works really well with property based testing, especially with hedgehog
.
We start by generating the data that we need.
Then we call some function on it.
Finally we assert that it should have some appropriate shape:
spec :: Spec
spec = describe "some property" $ do
it "works" $ hedgehog $ do
value <- someGenerator
let result = someFunction value
result === someExpectedValue
It’s relatively straightforward to call functions in IO. hedgehog
provides a function
evalIO
that lets you run arbitrary IO actions and still receive good error messages.
spec :: Spec
spec = describe "some IO property" $ do
it "works" $ hedgehog $ do
value <- someGenerator
result <- evalIO $ someFunction value
result === someExpectedValue
For very simple tests like this, this is fine. However, it becomes cumbersome quite quickly when you have a lot of values you want to make assertions on.
spec :: Spec
spec = describe "some IO property" $ do
it "works" $ hedgehog $ do
value0 <- someGenerator0
value1 <- someGenerator1
value2 <- someGenerator2
(a, b, c, d, e) <- evalIO $ do
prepare value0
prepare value1
prepare value2
a <- someFunction
alterState
b <- someFunction
c <- otherFunction
d <- anotherFunction
e <- comeOnReally
pure (a, b, c, d, e)
a === expectedA
diff a (<) b
c === expectedC
d /== anyNonDValue
This pattern becomes unweildy for a few reasons:
pure
Fortunately, we can do better.
pure on pure on pure
Instead of returning values to a different scope, and then doing assertions against those values, we will return an action that does assertions, and then call it. The simple case is barely changes:
spec :: Spec
spec = describe "some simple IO property"
it "works" $ hedgehog $ do
value <- someGenerator
assertions <- evalIO $ do
result <- someFunction value
pure $ do
result === expectedValue
assertions
An astute student of monadic patterns might notice that:
foo = do
result <- thing
result
is equivalent to:
foo = do
join thing
and then simplify:
spec :: Spec
spec = describe "some simple IO property"
it "works" $ hedgehog $ do
value <- someGenerator
join $ evalIO $ do
result <- someFunction value
pure $ do
result === expectedValue
Nice!
Because we’re returning an action of assertions instead of values that will be asserted against, we don’t have to play any weird games with names or scopes. We’ve got all the values we need in scope, and we make assertions, and then we defer returning them. Let’s refactor our more complex example:
spec :: Spec
spec = describe "some IO property" $ do
it "works" $ hedgehog $ do
value0 <- someGenerator0
value1 <- someGenerator1
value2 <- someGenerator2
join $ evalIO $ do
prepare value0
prepare value1
prepare value2
a <- someFunction
alterState
b <- someFunction
c <- otherFunction
d <- anotherFunction
e <- comeOnReally
pure $ do
a === expectedA
diff a (<) b
c === expectedC
d /== anyNonDValue
On top of being more convenient and easy to write, it’s more difficult to do the wrong thing here. You can’t accidentally swap two names in a tuple, because there is no tuple!
A Nice API
We can write a helper function that does some of the boilerplate for us:
arrange :: PropertyT IO (IO (PropertyT IO a)) -> PropertyT IO a
arrange mkAction = do
action <- mkAction
join (evalIO action)
Since we’re feeling cute, let’s also write some helpers that’ll make this pattern more clear:
act :: IO (PropertyT IO a) -> PropertyT IO (IO (PropertyT IO a)) act = pure assert :: PropertyT IO a -> IO (PropertyT IO a) assert = pure
And now our code sample looks quite nice:
spec :: Spec
spec = describe "some IO property" $ do
it "works" $
arrange $ do
value0 <- someGenerator0
value1 <- someGenerator1
value2 <- someGenerator2
act $ do
prepare value0
prepare value1
prepare value2
a <- someFunction
alterState
b <- someFunction
c <- otherFunction
d <- anotherFunction
e <- comeOnReally
assert $ do
a === expectedA
diff a (<) b
c === expectedC
d /== anyNonDValue
Beyond IO
It’s not enough to just do IO
.
The problem that motivated this research called for persistent
and esqueleto
tests against a Postgres database.
These functions operate in SqlPersistT
, and we use database transactions to keep tests fast by rolling back the commit instead of finalizing.
Fortunately, we can achieve this by passing an “unlifter”:
arrange
:: (forall x. m x -> IO x)
-> PropertyT IO (m (PropertyT IO a))
-> PropertyT IO a
arrange unlift mkAction = do
action <- mkAction
join (evalIO (unlift action))
act :: m (PropertyT IO a) -> PropertyT IO (m (PropertyT IO a))
act = pure
assert :: Applicative m => PropertyT IO a -> m (PropertyT IO a)
assert = pure
With these helpers, our database tests look quite neat.
spec :: SpecWith TestDb
spec = describe "db testing" $ do
it "is neat" $ \db ->
arrange (runTestDb db) $ do
entity0 <- forAll generateEntity0
entityList <- forAll
$ Gen.list (Range.linear 1 100)
$ generateEntityChild
act $ do
insert entity0
before <- someDatabaseFunction
insertMany entityList
after <- someDatabaseFunction
assert $ do
before === 0
diff before (<) after
after === length entityList
On Naming Things
No, I’m not going to talk about that kind of naming things . This is about actually giving names to things!
The most general types for arrange
, act
, and assert
are:
act, assert :: Applicative f => a -> f a
act = pure
assert = pure
arrange
:: (forall x. n x -> m x)
-> m (n (m a)) -> m a
arrange transform mkAction = do
action <- mkAction
join (transform action)
These are pretty ordinary and unassuming functions. They’re so general. It can be hard to see all the ways they can be useful.
Likewise, if we only ever write the direct functions, then it can be difficult to capture the pattern and make it obvious in our code.
Giving a thing a name makes it real
in some sense.
In the Haskell sense, it becomes a value you can link to, provide Haddocks for, and show examples on.
In our work codebase, the equivalent functions to the arrange
, act
, and assert
defined here have nearly 100 lines of documentation and examples, as well as more specified types that can help guide you to the correct implementation.
Sometimes designing a library is all about narrowing the potential space of things that a user can do with your code.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
互联网创业核心技术:构建可伸缩的web应用
【美】Artur Ejsmont / 李智慧、何坤 / 电子工业出版社 / 2016-12 / 89
可伸缩架构技术是所有互联网技术中最重要,也是最引人入胜的技术。《互联网创业核心技术:构建可伸缩的web应用》针对互联网创业需求快速迭代,业务快速发展,短时间内用户、数据、访问量激增的特点,提纲挈领地描述了伸缩性架构的基本原理与设计原则,详细阐述了Web应用前端层、服务层、数据层的可伸缩架构,并花大量篇幅讲述了缓存技术和异步处理技术的可伸缩设计及其在Web系统中的具体应用。 《互联网创业核心技......一起来看看 《互联网创业核心技术:构建可伸缩的web应用》 这本书的介绍吧!