blob: 55e59e02a570f81a61159340eaa57a034230b6dd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.gearpump.streaming.sink
import java.time.Instant
import org.apache.gearpump.Message
import org.apache.gearpump.cluster.UserConfig
import org.apache.gearpump.streaming.MockUtil
import org.mockito.Mockito._
import org.scalacheck.Gen
import org.scalatest.mock.MockitoSugar
import org.scalatest.prop.PropertyChecks
import org.scalatest.{PropSpec, Matchers}
class DataSinkTaskSpec extends PropSpec with PropertyChecks with Matchers with MockitoSugar {
property("DataSinkTask.onStart should call DataSink.open" ) {
forAll(Gen.chooseNum[Long](0L, 1000L).map(Instant.ofEpochMilli)) { (startTime: Instant) =>
val taskContext = MockUtil.mockTaskContext
val config = UserConfig.empty
val dataSink = mock[DataSink]
val sinkTask = new DataSinkTask(taskContext, config, dataSink)
sinkTask.onStart(startTime)
verify(dataSink).open(taskContext)
}
}
property("DataSinkTask.onNext should call DataSink.write") {
forAll(Gen.alphaStr) { (str: String) =>
val taskContext = MockUtil.mockTaskContext
val config = UserConfig.empty
val dataSink = mock[DataSink]
val sinkTask = new DataSinkTask(taskContext, config, dataSink)
val msg = Message(str)
sinkTask.onNext(msg)
verify(dataSink).write(msg)
}
}
property("DataSinkTask.onStop should call DataSink.close") {
val taskContext = MockUtil.mockTaskContext
val config = UserConfig.empty
val dataSink = mock[DataSink]
val sinkTask = new DataSinkTask(taskContext, config, dataSink)
sinkTask.onStop()
verify(dataSink).close()
}
}