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

Add gettable id property to DiffractionObject #216

Merged
merged 9 commits into from
Dec 13, 2024
Merged

Conversation

bobleesj
Copy link
Contributor

@bobleesj bobleesj commented Dec 12, 2024

Closes #213

Currently in Draft mode, since I am waiting for #215 to be merged, which modifies input_scattering_quantity to input_data in the same file.

As a starting point, this PR just adds uuid attribute to DiffracitonObject.

From the Slack chat, we had a greater vision. If we decide to work on it, should you make an issue for that? @sbillinge

Copy link

codecov bot commented Dec 12, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.70%. Comparing base (5f67f6c) to head (6e51eb7).
Report is 12 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #216      +/-   ##
==========================================
+ Coverage   99.69%   99.70%   +0.01%     
==========================================
  Files           8        8              
  Lines         325      340      +15     
==========================================
+ Hits          324      339      +15     
  Misses          1        1              
Files with missing lines Coverage Δ
tests/test_diffraction_objects.py 100.00% <100.00%> (ø)

actual_do = DiffractionObject(**inputs)
diff = DeepDiff(actual_do.__dict__, expected, ignore_order=True, significant_digits=13)
actual = DiffractionObject(**inputs).__dict__
diff = DeepDiff(actual, expected, ignore_order=True, significant_digits=13, exclude_paths="root['_id']")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

for testing constructor, _id is ignored since it's hard to dynamically compare its uuid value.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

is that ok? not sure if there is a better way for this.

Copy link
Contributor

@sbillinge sbillinge Dec 12, 2024

Choose a reason for hiding this comment

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

In the past I have mocked that attribute. This here seems less work. If we have tests that test the id setting and getting, we can safely ignore it in other tests that are testing other things, such as this one, think

Copy link
Contributor Author

@bobleesj bobleesj Dec 12, 2024

Choose a reason for hiding this comment

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

Noted - yes is setter/getter test funcs provided below.

@@ -384,7 +403,7 @@ def test_input_xtype_getter():
assert do.input_xtype == "tth"


def test_input_xtype_setter():
def test_input_xtype_setter_error():
Copy link
Contributor Author

Choose a reason for hiding this comment

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

just enhancing the function name for clarify

Copy link
Contributor Author

@bobleesj bobleesj left a comment

Choose a reason for hiding this comment

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

@sbillinge ready for review with in-line comments added for your feedback.

@bobleesj bobleesj marked this pull request as ready for review December 12, 2024 19:39
Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

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

This all looks good to me. I am happy to merge it but please see comments and let me know



def test_id_getter_with_mock(mocker):
mocker.patch.object(DiffractionObject, "id", new_callable=lambda: UUID("d67b19c6-3016-439f-81f7-cf20a04bee87"))
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Since id is used with @property, the following doesn't apply:

mocker.patch.object(DiffractionObject, 'id', return_value="d67b19c6-3016-439f-81f7-cf20a04bee87")

Hence we use the new_callable parameter.

Copy link
Contributor

Choose a reason for hiding this comment

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

I see, nicely done. I didn't know about that.

@bobleesj
Copy link
Contributor Author

@sbillinge ready for review - codecov is causing an issue although I re-ran the CI with an empty commit.

Screenshot 2024-12-12 at 5 33 49 PM



def test_id_getter_with_mock(mocker):
mocker.patch.object(DiffractionObject, "id", new_callable=lambda: UUID("d67b19c6-3016-439f-81f7-cf20a04bee87"))
Copy link
Contributor

Choose a reason for hiding this comment

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

I see, nicely done. I didn't know about that.

@sbillinge sbillinge merged commit 84b402f into diffpy:main Dec 13, 2024
5 checks passed
@sbillinge
Copy link
Contributor

@bobleesj @yucongalicechen I merged this but now I am having second thoughts. Do we want the id associated with the data rather than the DO itself? In that case we should mint it in load_data and not in the constructor.

More discussion: this would go away if we don't allow an empty instance where data are loaded later. I started leaning that way because I couldn't think of a UC where we would really need that, though one would be if someone wants to load directly from a file to the DO. We could also allow that as an option in the constructor too. Can you have a think about it?

If we do mint the id on the load data function, all of our setters will have to have it insterted too.

Summary: maybe the cleanest is to mint it in the constructor as we do now but remove the ability to load data outside of the constructor (and make that method private). But aloe an option to instantiate from file by giving a file path instead of a set of arrays.

What do you think? I think I like that...

@bobleesj
Copy link
Contributor Author

@sbillinge

since this PR has been merged, I created an issue #224 to continue our discussions

@bobleesj bobleesj deleted the uuid branch December 13, 2024 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add uuids to DiffractionObjects
2 participants