-
Notifications
You must be signed in to change notification settings - Fork 2k
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
chore(ci): migrate datastore/functions to new ci #4046
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 @glasnt, 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
This pull request migrates the datastore/functions sample to a new CI setup. The changes include updating the nodejs-dev.jsonc
file to include datastore/functions
in the list of samples, modifying the index.js
file to use ES modules (import
instead of require
) and export the functions using the export
keyword, updating the package.json
file to specify type: module
, and updating the test file index.test.js
to use ES modules and modern assertion methods.
Highlights
- CI Migration: The primary goal is to migrate the datastore/functions sample to a new CI pipeline.
- ES Module Conversion: The code is updated to use ES modules instead of CommonJS modules, using
import
andexport
. - Test Updates: The test suite is updated to align with the ES module conversion and uses modern assertion methods.
Changelog
Click here to see the changelog
- .github/config/nodejs-dev.jsonc
- Added
datastore/functions
to the list of samples to be included in the CI.
- Added
- datastore/functions/index.js
- Replaced
require('@google-cloud/datastore')
withimport { Datastore } from '@google-cloud/datastore';
(line 17). - Exported the
set
,get
, anddel
functions using theexport async function
syntax instead ofexports.set = async
(lines 61, 97, 127).
- Replaced
- datastore/functions/package.json
- Added
"type": "module"
to thepackage.json
file to enable ES module support (line 10).
- Added
- datastore/functions/test/index.test.js
- Replaced
require
statements withimport
statements for assertion libraries, path manipulation, UUID generation, sinon stubs, fetch, waitPort, and Datastore (lines 17-24). - Replaced
require('../')
withimport { set, get, del } from '../';
(line 27). - Replaced
assert.ok
withok
,assert.strictEqual
withstrictEqual
, andassert.deepStrictEqual
withdeepStrictEqual
(lines 81, 82, 96, 97, 114, 115, 128, 130, 162, 164, 180, 182, 198, 199, 215, 216, 248, 249, 265, 266, 278, 280, 292, 294, 298). - Replaced
sinon.stub()
withstub()
(lines 75, 76, 92, 93, 108, 109, 192, 193, 209, 210, 242, 243, 259, 260).
- Replaced
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.
Trivia time!
What does the acronym ES stand for in the context of ECMAScript (ES Modules)?
Click here for the answer
ES stands for ECMAScript, which is a scripting-language specification standardized by Ecma International.
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
The pull request migrates the datastore/functions to a new CI. The changes include updating the dependencies, modifying the import statements, and updating the test assertions. Overall, the changes seem reasonable, but there are a few areas that could be improved.
Summary of Findings
- Inconsistent import style: The code uses both
require
andimport
statements. It's recommended to use a consistent style throughout the project. Since the project is migrating to use modules, it should useimport
statements exclusively. - Test assertions: The test assertions are being changed from
assert.ok
took
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent. - Unnecessary
functions-framework
execution in tests: The tests execute thefunctions-framework
command, which might not be necessary for unit tests. Consider mocking the function execution instead.
Merge Readiness
The pull request is almost ready for merging. However, the inconsistent import style and test assertions should be addressed before merging. I am unable to directly approve the pull request, and recommend that others review and approve this code before merging. The pull request should not be merged until the high severity issues are addressed.
@@ -72,14 +72,14 @@ describe('functions/datastore', () => { | |||
body: {}, | |||
}; | |||
const res = { | |||
status: sinon.stub().returnsThis(), | |||
send: sinon.stub(), | |||
status: stub().returnsThis(), |
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.
status: sinon.stub().returnsThis(), | ||
send: sinon.stub(), | ||
status: stub().returnsThis(), | ||
send: stub(), |
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.
}; | ||
|
||
await program.set(req, res); | ||
await set(req, res); |
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.
|
||
assert.ok(res.status.calledWith(500)); | ||
assert.ok(res.send.calledWith(errorMsg('Value'))); | ||
ok(res.status.calledWith(500)); |
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.
This change switches from assert.ok
to ok
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
ok(res.status.calledWith(500)); | |
ok(res.status.calledWith(500)); |
assert.ok(res.status.calledWith(500)); | ||
assert.ok(res.send.calledWith(errorMsg('Value'))); | ||
ok(res.status.calledWith(500)); | ||
ok(res.send.calledWith(errorMsg('Value'))); |
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.
This change switches from assert.ok
to ok
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
ok(res.send.calledWith(errorMsg('Value'))); | |
ok(res.send.calledWith(errorMsg('Value'))); |
@@ -275,9 +275,9 @@ describe('functions/datastore', () => { | |||
}), | |||
headers: {'Content-Type': 'application/json'}, | |||
}); | |||
assert.strictEqual(response.status, 200); | |||
strictEqual(response.status, 200); |
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.
This change switches from assert.strictEqual
to strictEqual
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
strictEqual(response.status, 200); | |
strictEqual(response.status, 200); |
const body = await response.text(); | ||
assert.strictEqual(body, `Entity ${KIND}/nonexistent deleted.`); | ||
strictEqual(body, `Entity ${KIND}/nonexistent deleted.`); |
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.
This change switches from assert.strictEqual
to strictEqual
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
strictEqual(body, `Entity ${KIND}/nonexistent deleted.`); | |
strictEqual(body, `Entity ${KIND}/nonexistent deleted.`); |
@@ -289,13 +289,13 @@ describe('functions/datastore', () => { | |||
}), | |||
headers: {'Content-Type': 'application/json'}, | |||
}); | |||
assert.strictEqual(response.status, 200); | |||
strictEqual(response.status, 200); |
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.
This change switches from assert.strictEqual
to strictEqual
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
strictEqual(response.status, 200); | |
strictEqual(response.status, 200); |
const body = await response.text(); | ||
assert.strictEqual(body, `Entity ${KIND}/${NAME} deleted.`); | ||
strictEqual(body, `Entity ${KIND}/${NAME} deleted.`); |
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.
This change switches from assert.strictEqual
to strictEqual
. While this isn't necessarily wrong, it's worth considering whether this change improves readability or maintainability. It also changes the style of the test assertions, which should be consistent.
strictEqual(body, `Entity ${KIND}/${NAME} deleted.`); | |
strictEqual(body, `Entity ${KIND}/${NAME} deleted.`); |
|
||
const key = datastore.key([KIND, NAME]); | ||
const [entity] = await datastore.get(key); | ||
assert.ok(!entity); | ||
ok(!entity); |
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.
Description
Fixes #
Note: Before submitting a pull request, please open an issue for discussion if you are not associated with Google.
Checklist
npm test
(see Testing)npm run lint
(see Style)GoogleCloudPlatform/nodejs-docs-samples
. Not a fork.