calypso-testing

calypso testing

License

License

GroupId

GroupId

ru.m2
ArtifactId

ArtifactId

calypso-testing_2.13
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

calypso-testing
calypso testing
Project URL

Project URL

https://github.com/m2-oss/calypso
Project Organization

Project Organization

m2
Source Code Management

Source Code Management

https://github.com/m2-oss/calypso

Download calypso-testing_2.13

How to add to project

<!-- https://jarcasting.com/artifacts/ru.m2/calypso-testing_2.13/ -->
<dependency>
    <groupId>ru.m2</groupId>
    <artifactId>calypso-testing_2.13</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/ru.m2/calypso-testing_2.13/
implementation 'ru.m2:calypso-testing_2.13:0.2.0'
// https://jarcasting.com/artifacts/ru.m2/calypso-testing_2.13/
implementation ("ru.m2:calypso-testing_2.13:0.2.0")
'ru.m2:calypso-testing_2.13:jar:0.2.0'
<dependency org="ru.m2" name="calypso-testing_2.13" rev="0.2.0">
  <artifact name="calypso-testing_2.13" type="jar" />
</dependency>
@Grapes(
@Grab(group='ru.m2', module='calypso-testing_2.13', version='0.2.0')
)
libraryDependencies += "ru.m2" % "calypso-testing_2.13" % "0.2.0"
[ru.m2/calypso-testing_2.13 "0.2.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.13.5
ru.m2 : calypso-core_2.13 jar 0.2.0
org.typelevel : cats-laws_2.13 jar 2.4.2

Project Modules

There are no modules declared in this project.

calypso

build Maven Central

A BSON library based on org.bson. Encoder and Decoder type classes with instances for common types.

Usage

To use calypso in an existing sbt project, add the following dependencies to your build.sbt:

libraryDependencies += "ru.m2" %% "calypso-core" % "<version>"

The most current release can be found in the maven badge at the top of this readme.

Supported types

Scala

Unit
Boolean
Int
Long
Double
String
Array[Byte]
(A, B)
List[A]
Set[A]
SortedSet[A]
Map[K, V]
SortedMap[K, V]
Option[A]
Either[A, B]

java

java.time.Instant
java.util.UUID

cats

cats.data.NonEmptyList

Refined

Codecs for refined types are derived, so if you have Encoder[A], then you have Encoder[A Refined P] (where P is a predicate) for free. The same for decoders, so having Decoder[A] in implicit scope automatically gives you Decoder[A Refined P].

Product type (case class)

It is possible to construct codecs for product types (case classes) using forProductN helper methods if you have codecs for each of its elements.

import org.bson.BsonValue
import ru.m2.calypso.syntax._
import ru.m2.calypso.{Decoder, Encoder}

final case class Record(id: Int, name: String)
object Record {
  implicit val encodeRecord: Encoder[Record] =
    Encoder.forProduct2("id", "name")(r => (r.id, r.name))

  implicit val decodeRecord: Decoder[Record] =
    Decoder.forProduct2("id", "name")(Record.apply)
}

val bson: BsonValue = Record(1, "John").asBson // {"id": 1, "name": "John"}

val record: Either[String, Record] = bson.as[Record] // Right(Record(1,John))

Coproduct type (sealed trait hierarchy)

Coproduct is also known as ADT, sum, or tagged union. Not as ergonomic as product type, but it is possible to create codecs for coproduct types using forCoproductN helper methods.

import org.bson.BsonValue
import ru.m2.calypso.syntax._
import ru.m2.calypso.{Decoder, Encoder}

sealed trait AorB extends Product with Serializable
object AorB {
  final case class A(i: Int)    extends AorB
  final case class B(s: String) extends AorB
}

import AorB._

implicit val encodeA: Encoder[A] = Encoder.forProduct1("i")(_.i)
implicit val encodeB: Encoder[B] = Encoder.forProduct1("s")(_.s)
implicit val encodeAorB: Encoder[AorB] = Encoder.forCoproduct {
  case a: A => "A" -> a.asBson
  case b: B => "B" -> b.asBson
}

implicit val decodeA: Decoder[A]       = Decoder.forProduct1("i")(A.apply)
implicit val decodeB: Decoder[B]       = Decoder.forProduct1("s")(B.apply)
implicit val decodeAorB: Decoder[AorB] = Decoder.forCoproduct2[AorB, A, B]("A", "B")

val aBson: BsonValue = (A(42): AorB).asBson      // {"tag": "A", "value": {"i": 42}}
val bBson: BsonValue = (B("hello"): AorB).asBson // {"tag": "B", "value": {"s": "hello"}}

val a: Either[String, AorB] = aBson.as[AorB] // Right(A(42))
val b: Either[String, AorB] = bBson.as[AorB] // Right(B(hello))

Derive codecs

Use existing codecs to derive complex ones.

import org.bson.BsonValue
import ru.m2.calypso.syntax._
import ru.m2.calypso.{Decoder, Encoder}

final case class UserId(value: Long) extends AnyVal
object UserId {
  implicit val encodeUserId: Encoder[UserId] = Encoder[Long].contramap(_.value)
  implicit val decodeUserId: Decoder[UserId] = Decoder[Long].map(UserId.apply)
}

val bson: BsonValue = UserId(42).asBson // BsonInt64{value=42}

val userId: Either[String, UserId] = bson.as[UserId] // Right(UserId(42))

Why?

Passion for going with Java MongoDB Driver in a type-safe manner.

  • MongoDB Scala Driver are wrappers around org.bson without advantages.
  • Reactive Scala Driver for MongoDB can not be used without shenanigans with Java MongoDB Driver, as well as it does not offer reasonable API to encode/decode case classes.
  • MongoLess, shapeless-reactivemongo, and Pure BSON are based on shapeless, so they are refactoring blind and not a safe way to express persistence schema.
  • circe-bson use JSON subset of BSON which is a no go for binary data.

Design

Encoder[A]: A => org.bson.BsonValue
Decoder[A]: org.bson.BsonValue => Either[String, A]

KeyEncoder[A]: A => String
KeyDecoder[A]: String => Either[String, A]

This type classes allows to map Scala types to BSON and back. Key codecs are essential to preserving Map keys. Library is heavily inspired by circe and argonaut.

  • Map keys are encoded as strings
  • Tuple (A, B) is encoded as object {"_1": A, "_2": B}
  • String Refined Uuid is encoded as native binary BsonUuid
  • Instant is encoded as DateTime (epoch millis)

On optional values: object keys with null values and non-existing object keys are semantically equal.

Law testing

Calypso type classes come with laws. Encoder and Decoder instances should hold CodecLaws. Calypso uses discipline to define type class laws and the ScalaCheck tests based on them.

First, you will need to specify dependencies on calypso-testing in your build.sbt file. To keep things simple, we’ll also include the scalacheck-shapeless library, so we don’t have to manually write instances for ScalaCheck’s Arbitrary.

libraryDependencies ++= List(
  "com.github.alexarchambault" %% "scalacheck-shapeless_1.14" % "1.2.5"     % "test",
  "org.typelevel"              %% "discipline-scalatest"      % "2.1.2"     % "test",
  "ru.m2"                      %% "calypso-testing"           % "<version>" % "test"
)

We’ll begin by creating an Eq instance for UserId data type, as laws will need to compare values.

import cats.Eq
import ru.m2.calypso.{Decoder, Encoder}

final case class UserId(value: Long) extends AnyVal
object UserId {
  implicit val encodeUserId: Encoder[UserId] = Encoder[Long].contramap(_.value)
  implicit val decodeUserId: Decoder[UserId] = Decoder[Long].map(UserId.apply)

  implicit val eqUserId: Eq[UserId] = Eq.fromUniversalEquals
}

ScalaCheck requires Arbitrary instances for data types being tested. We will use instances generated by scalacheck-shapeless. The following example is for ScalaTest.

import org.scalacheck.ScalacheckShapeless._
import org.scalatest.funsuite.AnyFunSuiteLike
import org.scalatest.prop.Configuration
import org.typelevel.discipline.scalatest.FunSuiteDiscipline
import ru.m2.calypso.testing.CodecTests

class CodecSuite extends AnyFunSuiteLike with FunSuiteDiscipline with Configuration {
  checkAll("Codec[UserId]", CodecTests[UserId].codec)
}

Now when we run test in sbt console, ScalaCheck will test if the Codec laws hold for our UserId type. You should see something like this:

[info] CodecSuite:
[info] - Codec[UserId].codec.roundTrip
[info] ScalaTest
[info] Run completed in 196 milliseconds.
[info] Total number of tests run: 1
[info] Suites: completed 1, aborted 0
[info] Tests: succeeded 1, failed 0, canceled 0, ignored 0, pending 0
[info] All tests passed.
[info] Passed: Total 1, Failed 0, Errors 0, Passed 1
[success] Total time: 2 s, completed Feb 21, 2021, 12:59:53 AM

You are gorgeous — the data type upholds the Codec laws!

ru.m2

m2-oss

Versions

Version
0.2.0
0.1.0