Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add saveAndReadExceptionInfo and saveAndReadActionInfo unit test #144

Merged
merged 2 commits into from
Apr 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions src/test/kotlin/wu/seal/jsontokotlin/feedback/PersistCacheTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package wu.seal.jsontokotlin.feedback

import com.google.gson.Gson
import com.winterbe.expekt.should
import org.junit.AfterClass
import org.junit.Before
import org.junit.Test
import wu.seal.jsontokotlin.test.TestConfig.isTestModel

Expand All @@ -10,8 +12,10 @@ import wu.seal.jsontokotlin.test.TestConfig.isTestModel
* Created by Seal.Wu on 2018/2/6.
*/
class PersistCacheTest {
val exceptionInfo = "Test exception"
@Test

private val exceptionInfo = "Test exception"

@Before
fun before() {
isTestModel = true
}
Expand Down Expand Up @@ -46,6 +50,31 @@ class PersistCacheTest {
PersistCache.deleteAllActionInfo()
}

@Test
fun testSaveActionInfoAndReadActionInfo() {

val startActionJSONString = Gson().toJson(StartAction())

PersistCache.saveActionInfo(startActionJSONString)

val readStartActionJSONString = PersistCache.readAllCachedActionInfo().dropLast(1)

readStartActionJSONString.should.be.equal(startActionJSONString)

}


@Test
fun testSaveExceptionInfoAndReadExceptionInfo() {

PersistCache.saveExceptionInfo(exceptionInfo)

val readExceptionInfo = PersistCache.readAllCachedExceptionInfo().dropLast(1)

readExceptionInfo.should.be.equal(exceptionInfo)

}

companion object {
@AfterClass
@JvmStatic
Expand Down