-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add overridden duration timeout to StreamTestKit
- Loading branch information
1 parent
5f2d690
commit afc1774
Showing
4 changed files
with
75 additions
and
7 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
23 changes: 23 additions & 0 deletions
23
stream-testkit/src/test/scala/org/apache/pekko/stream/testkit/StreamConfiguration.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,23 @@ | ||
package org.apache.pekko.stream.testkit | ||
|
||
import org.apache.pekko.testkit.TestKitBase | ||
import org.scalatest.time.{ Millis, Span } | ||
|
||
import java.util.concurrent.TimeUnit | ||
|
||
trait StreamConfiguration extends TestKitBase { | ||
final case class StreamConfig(allStagesStoppedTimeout: Span = Span({ | ||
val c = system.settings.config.getConfig("pekko.stream.testkit") | ||
c.getDuration("all-stages-stopped-timeout", TimeUnit.MILLISECONDS) | ||
}, Millis)) | ||
|
||
private val defaultStreamConfig = StreamConfig() | ||
|
||
/** | ||
* The default `StreamConfig` which is derived from the Actor System's `pekko.stream.testkit.all-stages-stopped-timeout` | ||
* configuration value. If you want to provide a different StreamConfig for specific tests without having to re-specify | ||
* `pekko.stream.testkit.all-stages-stopped-timeout` then you can override this value. | ||
*/ | ||
implicit def streamConfig: StreamConfig = defaultStreamConfig | ||
|
||
} |
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