-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve test coverage `IdT` * Add missing serializable tests for `MonadTrans`
- Loading branch information
1 parent
bbc97b8
commit c012417
Showing
7 changed files
with
131 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,86 @@ | ||
package cats.tests | ||
package cats | ||
package tests | ||
|
||
import cats.{Foldable, Functor, Monad, Traverse} | ||
import cats.data.IdT | ||
import cats.laws.discipline.{CartesianTests, FoldableTests, FunctorTests, MonadTests, SerializableTests, TraverseTests} | ||
import cats.kernel.laws.OrderLaws | ||
import cats.laws.discipline._ | ||
import cats.laws.discipline.arbitrary._ | ||
|
||
class IdTTests extends CatsSuite { | ||
|
||
implicit val iso = CartesianTests.Isomorphisms.invariant[IdT[List, ?]] | ||
implicit val iso = CartesianTests.Isomorphisms.invariant[IdT[ListWrapper, ?]](IdT.catsDataFunctorForIdT(ListWrapper.functor)) | ||
|
||
checkAll("IdT[Functor, Int]", FunctorTests[IdT[List, ?]].functor[Int, Int, Int]) | ||
checkAll("Functor[IdT[List, ?]]", SerializableTests.serializable(Functor[IdT[List, ?]])) | ||
{ | ||
implicit val F = ListWrapper.eqv[Option[Int]] | ||
|
||
checkAll("IdT[List, Int]", MonadTests[IdT[List, ?]].monad[Int, Int, Int]) | ||
checkAll("Monad[IdT[List, ?]]", SerializableTests.serializable(Monad[IdT[List, ?]])) | ||
checkAll("IdT[ListWrapper, Int]", OrderLaws[IdT[ListWrapper, Int]].eqv) | ||
checkAll("Eq[IdT[ListWrapper, Int]]", SerializableTests.serializable(Eq[IdT[ListWrapper, Int]])) | ||
} | ||
|
||
checkAll("IdT[Option, Int]", FoldableTests[IdT[Option, ?]].foldable[Int, Int]) | ||
checkAll("Foldable[IdT[Option, ?]]", SerializableTests.serializable(Foldable[IdT[Option, ?]])) | ||
{ | ||
implicit val F = ListWrapper.order[Int] | ||
|
||
checkAll("IdT[Option, Int]", TraverseTests[IdT[Option, ?]].traverse[Int, Int, Int, Int, Option, Option]) | ||
checkAll("Traverse[IdT[Option, ?]]", SerializableTests.serializable(Traverse[IdT[Option, ?]])) | ||
checkAll("IdT[ListWrapper, Int]", OrderLaws[IdT[ListWrapper, Int]].order) | ||
checkAll("Order[IdT[ListWrapper, Int]]", SerializableTests.serializable(Order[IdT[ListWrapper, Int]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.functor | ||
|
||
checkAll("IdT[ListWrapper, Int]", FunctorTests[IdT[ListWrapper, ?]].functor[Int, Int, Int]) | ||
checkAll("Functor[IdT[ListWrapper, ?]]", SerializableTests.serializable(Functor[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.applyInstance | ||
|
||
checkAll("IdT[ListWrapper, Int]", ApplyTests[IdT[ListWrapper, ?]].apply[Int, Int, Int]) | ||
checkAll("Apply[IdT[ListWrapper, ?]]", SerializableTests.serializable(Apply[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.applicative | ||
|
||
checkAll("IdT[ListWrapper, Int]", ApplicativeTests[IdT[ListWrapper, ?]].applicative[Int, Int, Int]) | ||
checkAll("Applicative[IdT[ListWrapper, ?]]", SerializableTests.serializable(Applicative[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.flatMap | ||
|
||
checkAll("IdT[ListWrapper, Int]", FlatMapTests[IdT[ListWrapper, ?]].flatMap[Int, Int, Int]) | ||
checkAll("FlatMap[IdT[ListWrapper, ?]]", SerializableTests.serializable(FlatMap[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.monad | ||
|
||
checkAll("IdT[ListWrapper, Int]", MonadTests[IdT[ListWrapper, ?]].monad[Int, Int, Int]) | ||
checkAll("Monad[IdT[ListWrapper, ?]]", SerializableTests.serializable(Monad[IdT[ListWrapper, ?]])) | ||
|
||
checkAll("IdT[ListWrapper, Int]", MonadTransTests[IdT].monadTrans[ListWrapper, Int, Int]) | ||
checkAll("MonadTrans[IdT]", SerializableTests.serializable(MonadTrans[IdT])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.foldable | ||
|
||
checkAll("IdT[ListWrapper, Int]", FoldableTests[IdT[ListWrapper, ?]].foldable[Int, Int]) | ||
checkAll("Foldable[IdT[ListWrapper, ?]]", SerializableTests.serializable(Foldable[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
{ | ||
implicit val F = ListWrapper.traverse | ||
|
||
checkAll("IdT[ListWrapper, Int] with Option", TraverseTests[IdT[ListWrapper, ?]].traverse[Int, Int, Int, Int, Option, Option]) | ||
checkAll("Traverse[IdT[ListWrapper, ?]]", SerializableTests.serializable(Traverse[IdT[ListWrapper, ?]])) | ||
} | ||
|
||
|
||
test("flatMap and flatMapF consistent") { | ||
forAll { (idT: IdT[Option, Int], f: Int => IdT[Option, Int]) => | ||
idT.flatMap(f) should === (idT.flatMapF(f(_).value)) | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters