-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NU-1934] Ability to create json kafka source without schema registry (…
…#7483) Co-authored-by: Pawel Czajka <[email protected]>
- Loading branch information
Showing
9 changed files
with
127 additions
and
35 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
22 changes: 22 additions & 0 deletions
22
.../nussknacker/defaultmodel/kafkaschemaless/KafkaJsonSchemalessNoSchemaRegistryItSpec.scala
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,22 @@ | ||
package pl.touk.nussknacker.defaultmodel.kafkaschemaless | ||
|
||
import com.typesafe.config.Config | ||
import pl.touk.nussknacker.defaultmodel.MockSchemaRegistryClientHolder.MockSchemaRegistryClientProvider | ||
import pl.touk.nussknacker.engine.flink.util.transformer.FlinkKafkaComponentProvider | ||
|
||
class KafkaJsonSchemalessNoSchemaRegistryItSpec extends BaseKafkaJsonSchemalessItSpec { | ||
|
||
override def createFinkKafkaComponentProvider(schemaRegistryClientProvider: MockSchemaRegistryClientProvider) = | ||
new FlinkKafkaComponentProvider() | ||
|
||
override protected def maybeAddSchemaRegistryUrl(config: Config): Config = config | ||
|
||
test("should round-trip json message without schema registry") { | ||
shouldRoundTripJsonMessageWithoutProvidedSchema() | ||
} | ||
|
||
ignore("should round-trip plain message without schema registry") { | ||
shouldRoundTripPlainMessageWithoutProvidedSchema() | ||
} | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
...cker/defaultmodel/kafkaschemaless/KafkaJsonSchemalessTopicNotInSchemaRegistryItSpec.scala
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,13 @@ | ||
package pl.touk.nussknacker.defaultmodel.kafkaschemaless | ||
|
||
class KafkaJsonSchemalessTopicNotInSchemaRegistryItSpec extends BaseKafkaJsonSchemalessItSpec { | ||
|
||
test("should round-trip json message when topic is not in schema registry") { | ||
shouldRoundTripJsonMessageWithoutProvidedSchema() | ||
} | ||
|
||
ignore("should round-trip plain message when topic is not in schema registry") { | ||
shouldRoundTripPlainMessageWithoutProvidedSchema() | ||
} | ||
|
||
} |
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