-
Notifications
You must be signed in to change notification settings - Fork 150
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 0624688
Showing
4 changed files
with
92 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
40 changes: 40 additions & 0 deletions
40
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,40 @@ | ||
/* | ||
* 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.pekko.stream.testkit | ||
|
||
import org.apache.pekko.testkit.TestKitBase | ||
import org.scalatest.time.{ Millis, Span } | ||
|
||
import java.util.concurrent.TimeUnit | ||
|
||
trait StreamConfiguration extends TestKitBase { | ||
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