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

CSHARP-5540: Fix exception when using AsQueryable().Last() #1649

Merged
merged 7 commits into from
Apr 2, 2025

Conversation

papafe
Copy link
Contributor

@papafe papafe commented Mar 28, 2025

No description provided.

@papafe papafe requested a review from a team as a code owner March 28, 2025 14:07
@papafe papafe requested review from adelinowona and rstam and removed request for a team and adelinowona March 28, 2025 14:07
@rstam rstam added the bug label Mar 28, 2025
}

[Fact]
public void Last_with_null_return_should_throw()
Copy link
Contributor

Choose a reason for hiding this comment

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

It doesn't return null. It is an empty sequence. See renaming and refactoring suggested below.

@papafe papafe requested a review from rstam March 31, 2025 09:02
@papafe
Copy link
Contributor Author

papafe commented Mar 31, 2025

@rstam I've changed the code following your suggestions

"""{ $replaceRoot : { newRoot : "$_last" } }"""
};

AssertStages(stages, expectedStages);
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we really need to have the expectedStages variable?

All other tests are written like this:

AssertStages(
    stages,
    """{ $sort : { _id : 1 } }""",
    """{ $group : { _id : null, _last : { $last : "$$ROOT" } } }""",
    """{ $replaceRoot : { newRoot : "$_last" } }""");               

Copy link
Contributor

Choose a reason for hiding this comment

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

We also leave a blank between the translation assertions and the result assertions because they are asserting different things.

This is really two tests in one:

  1. That the translation works as we expected it to
  2. That the resulting MQL works on the server and returns the expected result

I know that the general recommendation is that every test should test one thing only, but we have chosen to be flexible in this case because otherwise we'd have twice as many tests, and each pair of tests would have identical setup.

@papafe papafe requested a review from rstam April 1, 2025 08:09
Copy link
Contributor

@rstam rstam left a comment

Choose a reason for hiding this comment

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

Looks great!

LGTM

@sanych-sun
Copy link
Member

Please update the PR's title to be readable as a part of release notes.

var stages = GetStages(queryable, lastMethod);

var expectedStages = new[] {
"""{ "$sort" : { "_id" : 1 } }""",
Copy link
Member

Choose a reason for hiding this comment

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

Use single quote for fields, and then there will be no need for extra double-quotes outside.

AssertStages(
stages,
"""{ $match : { _id : { $gt : 5 } }}""",
"""{ $group : { _id : null, _last : { $last : "$$ROOT" } } }""",
Copy link
Member

Choose a reason for hiding this comment

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

Use a single quote ' inside of the string, then it will be no need to have multiple quotes:
"{ $group : { _id : null, _last : { $last : '$$ROOT' } } }"

@papafe papafe changed the title CSHARP-5540: Exception when using AsQueryable().Last() CSHARP-5540: Fix exception when using AsQueryable().Last() Apr 2, 2025
@papafe papafe merged commit 3dafb8b into mongodb:main Apr 2, 2025
26 of 30 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants