-
-
Notifications
You must be signed in to change notification settings - Fork 398
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
Improve developer experience with finding and comparing mock requests #2348
base: main
Are you sure you want to change the base?
Conversation
@@ -171,7 +171,7 @@ def query_region_async(self, position: Union[coordinates.SkyCoord, str], | |||
# Generate the request | |||
request_payload = self._args_to_payload( | |||
mission=mission, | |||
entry="{},{}".format(c.ra.degree, c.dec.degree), | |||
entry="{:.10f},{:.10f}".format(c.ra.degree, c.dec.degree), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just an aside, this is in PR #2347 - so that should be merged first, then this will disappear from the diff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's right. I meant this one to be merged after #2347 .
available_requests.append([ | ||
SequenceMatcher(a=a, b=ua).ratio(), | ||
Differ().compare(a=a, b=ua), | ||
]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you add a little commentary about what this does? I'm not familiar with the difflib library. This seems like something that could be more generally useful if I understood it better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It produces a diff between the request which was we are trying to substitute with mock response, and available mock requests. Sorting by similarity.
The diff looks like the on pytest
uses to detail exceptions in assert
.
I will add an example later, when I have time to work on this (not in the next couple of days).
Are the deletion of the file intended? If yes, then I think we should go ahead with this one first rather than modifying a bunch of them in the other PR and then get them deleted again. Basically, my only concern is that we don't really want to ship mock data that is due to change regularly. |
The data are not so much deleted as renamed, from ".dat" to ".json", since I now stored json in them, including the request parameters and test name - for easier tracking what belongs where. But besides that, since filename derives from request, new files are really needed when request changes. I suppose every time request has to change (like in #2347) it's reasonable to change the files? We could keep the files even then, with this approach: astroquery/astroquery/heasarc/tests/test_heasarc_remote_isdc.py Lines 77 to 78 in db3f08b
But regenerating the file for new request actually helps to find module problems that that in #2347 - I will now explain there. |
No. The main purpose of the mock tests is to ensure the parsing, etc are correct, not to ensure we get the right answer from the archive. So it doesn't really matter if the data file has different coordinates or different number of entries based on the actual query. I very much love the idea that the mock tests are in fact rerun with real data access when |
Most queries made to return identical results - no change in number of entries. A lot of the time when the request changes - the result might change in a way which changes parsing. E.g. it will be empty.
I see, I quite understand. Nothing in this fixture approach really forces developer to regenerate mock data when service changes responses. |
custom file names are fine, maybe you could use the name of the test function they belong to? (though if a file used in multiple that may not be the most logical idea).
And I very much appreciate it, and in fact looking forward to use your approach much wider than this module. It's just the details that need to be figured out. |
That's right, I thought about this, and dismissed for this very reason. It still could be useful to have it, at a cost of doubling some files. With this PR, test name is stored inside the data files.
Thank you, and I absolutely agree that in this kind of case it is essential to have a design that makes it easy for the developer to take the right approach and quickly find issues. So it takes some thinking and discussion. So, what do you think about something like Note that while this is actually quite interesting to do, I only have so much time. I will commit to fix ASAP at least #2347 and likely #2348, but the rest might have to wait a week or so. I'd really like to finish it, it's fun. |
yes, having that option would be great. I'm not sure whether it makes sense to add it to pytest-remote-data or just to astroquery, either of those could be an option.
No rush for any of this. We can temporarily skip the failing tests to other PRs are not bogged down with it (they are not really, I merged a few as those failures are clearly unrelated), or fix #2347, either are fine. |
Oh, and I should have started with this: thanks for working on this, improving the infrastructure is not something that is being picked up frequently though the impact of it is big! |
Sometimes, it is difficult for developer to understand why request changed, and does not match the mock stored requests. Here add functionality to finding and compare request with available mock requests.