Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove two Pytest warnings due to numpy and pytest mocker in test_dump function #112

Merged
merged 14 commits into from
Oct 25, 2024
Merged
23 changes: 23 additions & 0 deletions news/warning.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* Two Pytest warnings due to numpy and pytest mocker in test_dump function

**Security:**

* <news item>
2 changes: 0 additions & 2 deletions requirements/build.txt
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
python
setuptools
28 changes: 24 additions & 4 deletions tests/test_diffraction_objects.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import warnings
from pathlib import Path

import numpy as np
Expand Down Expand Up @@ -239,11 +240,29 @@ def test_dump(tmp_path, mocker):
test.wavelength = 1.54
test.name = "test"
test.scat_quantity = "x-ray"
test.insert_scattering_quantity(
x, y, "q", metadata={"thing1": 1, "thing2": "thing2", "package_info": {"package2": "3.4.5"}}
)
with mocker.patch("importlib.metadata.version", return_value="3.3.0"), freeze_time("2012-01-14"):

with warnings.catch_warnings(record=True) as captured_warnings:
# Configure the warnings system to capture all warnings
warnings.simplefilter("always")

# Perform the method call that is expected to trigger the RuntimeWarning due to the specified wavelength
test.insert_scattering_quantity(
x, y, "q", metadata={"thing1": 1, "thing2": "thing2", "package_info": {"package2": "3.4.5"}}
)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code now captures the warning:

From:
Screenshot 2024-09-19 at 7 26 55 AM

to:

Screenshot 2024-09-19 at 7 27 35 AM

# Verify that at least one RuntimeWarning is raised due to the arcsin error from wavelength 1.54
assert any(
isinstance(w.message, RuntimeWarning) for w in captured_warnings
), "Expected a RuntimeWarning due to invalid arcsin input value from the wavelength set to 1.54"

# Ensure that exactly one warning was captured
assert len(captured_warnings) == 1, "Expected exactly one warning to be captured"

mocker.patch("importlib.metadata.version", return_value="3.3.0")

with freeze_time("2012-01-14"):
test.dump(file, "q")

with open(file, "r") as f:
actual = f.read()
expected = (
Expand All @@ -262,4 +281,5 @@ def test_dump(tmp_path, mocker):
"9.000000000000000000e+00 9.000000000000000000e+00\n"
"1.000000000000000000e+01 1.000000000000000000e+01\n"
)

assert actual == expected