forked from nv-morpheus/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c82682
commit 635e300
Showing
1 changed file
with
60 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/usr/bin/env python | ||
# SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed 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. | ||
|
||
import collections.abc | ||
import time | ||
|
||
import mrc | ||
import pytest | ||
|
||
from morpheus.config import Config | ||
from morpheus.pipeline.linear_pipeline import LinearPipeline | ||
from morpheus.pipeline.stage_decorator import source | ||
from morpheus.pipeline.stage_decorator import stage | ||
|
||
|
||
@source | ||
def error_source(subscriber: mrc.Subscriber, *, raise_error: bool = False) -> collections.abc.Iterator[int]: | ||
yield 1 | ||
|
||
if raise_error: | ||
raise RuntimeError("Test error in source") | ||
|
||
while subscriber.is_subscribed(): | ||
time.sleep(0.1) | ||
|
||
|
||
@stage | ||
def error_stage(i: int, *, raise_error: bool = False) -> int: | ||
if raise_error: | ||
raise RuntimeError(f"Test error in stage") | ||
|
||
return i | ||
|
||
|
||
@pytest.mark.parametrize("source_error, stage_error", [(True, False), (False, True), (True, True)]) | ||
def test_pipeline(config: Config, source_error: bool, stage_error: bool): | ||
""" | ||
When source_error=False and stage_error=True this reproduces issue #1838 | ||
""" | ||
|
||
config = Config() | ||
pipe = LinearPipeline(config) | ||
pipe.set_source(error_source(config, raise_error=source_error)) | ||
pipe.add_stage(error_stage(config, raise_error=stage_error)) | ||
|
||
with pytest.raises(RuntimeError, match="^Test error in (source|stage)$"): | ||
pipe.run() |