-
Notifications
You must be signed in to change notification settings - Fork 156
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 (#1468)
* Add overridden duration timeout to StreamTestKit * add license to file * Update pr-1468-override-timeout-stream-testkit.backwards.excludes --------- Co-authored-by: PJ Fanning <[email protected]>
- Loading branch information
1 parent
ba639f6
commit f5d49d3
Showing
5 changed files
with
111 additions
and
7 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...lters/1.1.1.backwards.excludes/pr-1468-override-timeout-stream-testkit.backwards.excludes
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,19 @@ | ||
# 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. | ||
|
||
# StreamTestKit.assertNoChildren is an internal API and can be changed | ||
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.pekko.stream.testkit.scaladsl.StreamTestKit.assertNoChildren") |
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