Created
March 12, 2019 14:47
-
-
Save dinomite/e23088962445ff0fbe074c6229112da2 to your computer and use it in GitHub Desktop.
Testing data classes in Kotlin
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
import java.time.Instant | |
data class Location(@JsonProperty val userId: Int, | |
@JsonProperty val geohash: String, | |
@JsonProperty val createdAt: Instant, | |
@JsonProperty val updatedAt: Instant?) |
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
import com.fasterxml.jackson.annotation.JsonProperty | |
import io.dropwizard.testing.FixtureHelpers.fixture | |
import net.forumforall.kuorum.helpers.Json | |
import org.hamcrest.MatcherAssert.assertThat | |
import org.hamcrest.Matchers.`is` | |
import org.hamcrest.Matchers.equalTo | |
import org.junit.Test | |
import java.time.Instant | |
class LocationTest { | |
/* | |
* location.json: | |
* | |
* { | |
* "userId" : 7, | |
* "geohash" : "dnqnf41kf", | |
* "createdAt" : "2016-10-14T21:16:05Z", | |
* "updatedAt" : "2016-10-14T21:16:05Z" | |
* } | |
*/ | |
val locationFixture = "fixtures/location.json" | |
val time = Instant.ofEpochSecond(1476479765) | |
val location = Location(7, "dnqnf41kf", time, time) | |
@Test | |
fun serializesToJson() { | |
assertThat(Json.asJson(location), `is`(equalTo(fixture(locationFixture)))) | |
} | |
@Test | |
fun deserializeFromJson() { | |
assertThat(Json.fromJson(fixture(locationFixture), Location::class.java), `is`(location)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment