-
Notifications
You must be signed in to change notification settings - Fork 6.5k
fix(firestore): add a note for devs and asserts for firestore_data_delete_collection
#13386
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
base: main
Are you sure you want to change the base?
Conversation
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.
Hello @eapl-gemugami, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
Hello! Gemini here, providing a summary of this pull request. This PR aims to improve the developer experience when running the Firestore snippets tests locally. It addresses an internal issue by adding clear instructions for setting up the test environment and enhancing the robustness of the test_delete_full_collection
function with explicit assertions.
Highlights
- Developer Setup Instructions: A comment block has been added to
snippets_test.py
to guide developers on the necessary manual steps before running tests locally, specifically setting theFIRESTORE_PROJECT
environment variable and ensuring a default Firestore database exists. - Test Assertion Improvements: Assertions have been added to the
test_delete_full_collection
function to verify the state of the collection before adding test data (it should be empty) and after adding data (it should contain 5 documents) before the deletion function is called.
Changelog
- firestore/cloud-client/snippets_test.py
- Added a multi-line comment with setup instructions for local testing.
- Added an assertion to check if the 'cities' collection is empty before adding test data in
test_delete_full_collection
. - Added an assertion to check if 5 documents were successfully added to the 'cities' collection before calling the delete function in
test_delete_full_collection
.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Tests need setup,
Environment variables,
Database ready.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
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.
Code Review
This pull request adds a helpful note for developers regarding local test setup and improves the robustness of the test_delete_full_collection
by adding assertions. These changes align well with the PR description and contribute to better maintainability and test reliability.
Summary of Findings
- Developer Note for Local Testing: A helpful TODO comment was added to guide developers on setting up their environment and Firestore database for running tests locally. (Note: This was a low severity issue and not commented on directly per review settings.)
- Test Assertions for Collection State: Assertions were added to
test_delete_full_collection
to verify the collection is empty before adding data and contains the expected number of documents after population. This improves test reliability.
Merge Readiness
The changes in this pull request are beneficial, adding useful developer guidance and improving test reliability. The identified medium severity issue is a suggestion for improvement rather than a blocker. The pull request appears ready to be merged. Please note that I am unable to approve the pull request directly; other reviewers should provide approval.
Description
Fixes Internal: b/239029690
The sample works well, but requires manual steps before running local tests.
Checklist
nox -s py-3.9
(see Test Environment Setup)nox -s lint
(see Test Environment Setup)