-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #182 Native Custom codec is not used for update
- Loading branch information
Showing
9 changed files
with
183 additions
and
27 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
82 changes: 82 additions & 0 deletions
82
...tine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue182CustomCodec.kt
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright (C) 2016/2020 Litote | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.litote.kmongo.coroutine.issues | ||
|
||
import kotlinx.coroutines.runBlocking | ||
import org.bson.BsonReader | ||
import org.bson.BsonWriter | ||
import org.bson.codecs.Codec | ||
import org.bson.codecs.DecoderContext | ||
import org.bson.codecs.EncoderContext | ||
import org.bson.codecs.pojo.annotations.BsonId | ||
import org.junit.Test | ||
import org.junit.experimental.categories.Category | ||
import org.litote.kmongo.Id | ||
import org.litote.kmongo.JacksonMappingCategory | ||
import org.litote.kmongo.NativeMappingCategory | ||
import org.litote.kmongo.coroutine.KMongoCoroutineBaseTest | ||
import org.litote.kmongo.coroutine.findOneById | ||
import org.litote.kmongo.coroutine.insertOne | ||
import org.litote.kmongo.coroutine.updateOne | ||
import org.litote.kmongo.newId | ||
import org.litote.kmongo.util.ObjectMappingConfiguration | ||
import java.util.Currency | ||
|
||
object CurrencyCodec : Codec<Currency> { | ||
|
||
override fun getEncoderClass(): Class<Currency> = | ||
Currency::class.java | ||
|
||
override fun encode(writer: BsonWriter, value: Currency, encoderContext: EncoderContext) { | ||
writer.writeString(value.currencyCode) | ||
} | ||
|
||
override fun decode(reader: BsonReader, decoderContext: DecoderContext): Currency = | ||
Currency.getInstance(reader.readString()) | ||
} | ||
|
||
data class Account( | ||
@BsonId | ||
val id: Id<Account> = newId(), | ||
val currency: Currency | ||
) | ||
|
||
/** | ||
* | ||
*/ | ||
@Category(JacksonMappingCategory::class, NativeMappingCategory::class) | ||
class Issue182CustomCodec : KMongoCoroutineBaseTest<Account>() { | ||
|
||
@Test | ||
fun testCustomCodec() = runBlocking { | ||
ObjectMappingConfiguration.addCustomCodec(CurrencyCodec) | ||
|
||
val account = Account(currency = Currency.getInstance("USD")) | ||
|
||
col.insertOne(account) | ||
|
||
assert(col.findOneById(account.id)?.currency == Currency.getInstance("USD")) | ||
|
||
//check this does not fail | ||
col.updateOne( | ||
account.copy( | ||
currency = Currency.getInstance("EUR") | ||
) | ||
) | ||
Unit | ||
} | ||
} |
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
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