|
| 1 | +package in.internity |
| 2 | + |
| 3 | + |
| 4 | +import java.util.Properties |
| 5 | + |
| 6 | +import com.lightbend.kafka.scala.streams.StreamsBuilderS |
| 7 | +import com.madewithtea.mockedstreams.MockedStreams |
| 8 | +import net.manub.embeddedkafka.{EmbeddedKafka, EmbeddedKafkaConfig} |
| 9 | +import org.apache.kafka.common.serialization.{Serdes, StringSerializer} |
| 10 | +import org.apache.kafka.streams.{StreamsBuilder, StreamsConfig} |
| 11 | +import org.json4s.native.JsonMethods._ |
| 12 | +import org.json4s.native.Serialization.write |
| 13 | +import org.scalatest.{BeforeAndAfterAll, BeforeAndAfterEach, Matchers, WordSpec} |
| 14 | + |
| 15 | +/** |
| 16 | + * @author Shivansh <[email protected]> |
| 17 | + * @since 11/1/18 |
| 18 | + */ |
| 19 | +class StreamExampleSpec extends WordSpec with Matchers with BeforeAndAfterEach with BeforeAndAfterAll with StreamExample { |
| 20 | + |
| 21 | + implicit val configs = EmbeddedKafkaConfig(kafkaPort = 9092, zooKeeperPort = 7001) |
| 22 | + |
| 23 | + implicit val keySerializer = new StringSerializer |
| 24 | + |
| 25 | + override def beforeAll() = { |
| 26 | + EmbeddedKafka.start() |
| 27 | + } |
| 28 | + |
| 29 | + override def afterAll(): Unit = { |
| 30 | + EmbeddedKafka.stop() |
| 31 | + } |
| 32 | + |
| 33 | + val kafkaConf: Properties = { |
| 34 | + val p = new Properties() |
| 35 | + p.put(StreamsConfig.APPLICATION_ID_CONFIG, "kafka-scala-streams-example") |
| 36 | + p.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9002") |
| 37 | + p.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass) |
| 38 | + p.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass) |
| 39 | + p |
| 40 | + } |
| 41 | + |
| 42 | + |
| 43 | + "StreamExample" must { |
| 44 | + "take words and produce Wordcount" in { |
| 45 | + val inputTopic = "word" |
| 46 | + val inputString = "Hi this is Shivansh and my twitter handle is @shiv4nsh" |
| 47 | + val res = MockedStreams().topology { builder: StreamsBuilder => |
| 48 | + wordCount(new StreamSTest(builder), inputTopic).to("Output1") |
| 49 | + }.config(kafkaConf) |
| 50 | + .input[String, String](inputTopic, Serdes.String(), Serdes.String(), Seq(("", inputString))) |
| 51 | + .output[String, String]("Output1", Serdes.String(), Serdes.String(), 9) |
| 52 | + res.toList.size shouldBe inputString.split(" ").distinct.size |
| 53 | + } |
| 54 | + |
| 55 | + "take one type of Json and return other" in { |
| 56 | + val inputTopic = "person" |
| 57 | + val inputString = Person( "Shivansh", 23, "[email protected]") |
| 58 | + val res = MockedStreams().topology { builder: StreamsBuilder => |
| 59 | + readAndWriteJson(new StreamSTest(builder), inputTopic).to("Output2") |
| 60 | + }.config(kafkaConf) |
| 61 | + .input[String, String](inputTopic, Serdes.String(), Serdes.String(), Seq(("", write(inputString)))) |
| 62 | + .output[String, String]("Output2", Serdes.String(), Serdes.String(), 1) |
| 63 | + parse(res.toList.head._2).extract[ PersonNameAndEmail] shouldBe PersonNameAndEmail( "Shivansh", "[email protected]") |
| 64 | + } |
| 65 | + |
| 66 | + //FixMe: Fix this test |
| 67 | + "join two streams" in { |
| 68 | + val inputTopic1 = "wordjoin" |
| 69 | + val inputTopic2 = "personjoin" |
| 70 | + val inputString = "Hi this is Shivansh and my twitter handle is @shiv4nsh" |
| 71 | + val inputPerson = Person( "Shivansh", 23, "[email protected]") |
| 72 | + val res = MockedStreams().topology { builder: StreamsBuilder => |
| 73 | + val streamSBuilder = new StreamSTest(builder) |
| 74 | + val stream1 = wordCount( new StreamSTest(builder), inputTopic1) |
| 75 | + val stream2 = readAndWriteJson( new StreamSTest(builder), inputTopic2) |
| 76 | + joinTwoStreams(stream1, stream2).to("joinedstreams") |
| 77 | + }.config(kafkaConf) |
| 78 | + .input[String, String](inputTopic1, Serdes.String(), Serdes.String(), Seq(("key", inputString))) |
| 79 | + .input[String, String](inputTopic2, Serdes.String(), Serdes.String(), Seq(("key", write(inputPerson)))) |
| 80 | + .output[String, String]("joinedstreams", Serdes.String(), Serdes.String(), 10) |
| 81 | + val result = res.toList |
| 82 | + println("\n\n\n\n\n\n", result) |
| 83 | + res.toList.size shouldBe 10 |
| 84 | + } |
| 85 | + } |
| 86 | +} |
| 87 | + |
| 88 | +class StreamSTest(streamBuilder: StreamsBuilder) extends StreamsBuilderS { |
| 89 | + override val inner = streamBuilder |
| 90 | +} |
0 commit comments