Skip to content

Latest commit

 

History

History
313 lines (225 loc) · 13.2 KB

CONTRIBUTING.md

File metadata and controls

313 lines (225 loc) · 13.2 KB

Contributing | Firebase Admin Node.js SDK

Thank you for contributing to the Firebase community!

Have a usage question?

We get lots of those and we love helping you, but GitHub is not the best place for them. Issues which just ask about usage will be closed. Here are some resources to get help:

If the official documentation doesn't help, try asking a question on the Firebase Google Group or one of our other official support channels.

Please avoid double posting across multiple channels!

Think you found a bug?

Yeah, we're definitely not perfect!

Search through old issues before submitting a new issue as your question may have already been answered.

If your issue appears to be a bug, and hasn't been reported, open a new issue. Please use the provided bug report template and include a minimal repro.

If you are up to the challenge, submit a pull request with a fix!

Have a feature request?

Great, we love hearing how we can improve our products! Share you idea through our feature request support channel.

Want to submit a pull request?

Sweet, we'd love to accept your contribution! Open a new pull request and fill out the provided template.

If you want to implement a new feature, please open an issue with a proposal first so that we can figure out if the feature makes sense and how it will work.

Make sure your changes pass our linter and the tests all pass on your local machine. We've hooked up this repo with continuous integration to double check those things for you.

Most non-trivial changes should include some extra test coverage. If you aren't sure how to add tests, feel free to submit regardless and ask us for some advice.

Finally, you will need to sign our Contributor License Agreement, and go through our code review process before we can accept your pull request.

Contributor License Agreement

Contributions to this project must be accompanied by a Contributor License Agreement. You (or your employer) retain the copyright to your contribution. This simply gives us permission to use and redistribute your contributions as part of the project. Head over to https://cla.developers.google.com/ to see your current agreements on file or to sign a new one.

You generally only need to submit a CLA once, so if you've already submitted one (even if it was for a different project), you probably don't need to do it again.

Code reviews

All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult GitHub Help for more information on using pull requests.

Need to get set up locally?

Prerequisites

  1. Node.js 16 or higher.
  2. npm 6 or higher.
  3. Google Cloud SDK (gcloud utility).

Initial Setup

Run the following commands from the command line to get your local environment set up:

$ git clone https://github.com/firebase/firebase-admin-node.git
$ cd firebase-admin-node    # go to the firebase-admin-node directory
$ npm install               # install local npm build / test dependencies

In order to run the tests, you also need to authorize the gcloud utility with Google application default credentials:

$ gcloud beta auth application-default login

Running the Linter

Source files are written in TypeScript and linted using TSLint. Run the following command to kick off the linter:

$ npm run lint

Running Tests

There are two test suites: unit and integration. The unit test suite is intended to be run during development, and the integration test suite is intended to be run before packaging up release candidates.

Unit Tests

To run the unit test suite:

$ npm test   # Lint and run unit test suite

If you wish to skip the linter, and only run the unit tests:

$ npm run test:unit

Integration Tests with Emulator Suite

Some of the integration tests work with the Emulator Suite and you can run them without an actual Firebase project.

First, make sure to install Firebase CLI. And then:

  firebase emulators:exec --project fake-project-id --only auth,database,firestore \
    'npx mocha \"test/integration/{auth,database,firestore}.spec.ts\" --slow 5000 --timeout 20000 --require ts-node/register'

Currently, only the Auth, Database, and Firestore test suites work. Some test cases will be automatically skipped due to lack of emulator support. The section below covers how to run the full test suite against an actual Firebase project.

Integration Tests with an actual Firebase project

Integration tests are executed against a real life Firebase project. If you do not already have one suitable for running the tests against, you can create a new project in the Firebase Console following the setup guide below. If you already have a Firebase project, you'll need to obtain credentials to communicate and authorize access to your Firebase project:

  1. Service account certificate: This allows access to your Firebase project through a service account which is required for all integration tests. This can be downloaded as a JSON file from the Settings > Service Accounts tab of the Firebase console when you click the Generate new private key button. Copy the file into the repo so it's available at test/resources/key.json.

    Note: Service accounts should be carefully managed and their keys should never be stored in publicly accessible source code or repositories.

  2. Web API key: This allows for Auth sign-in needed for some Authentication and Tenant Management integration tests. This is displayed in the Settings > General tab of the Firebase console after enabling Authentication as described in the steps below. Copy it and save to a new text file at test/resources/apikey.txt.

Set up your Firebase project as follows:

  1. Enable Authentication:

    1. Go to the Firebase Console, and select Authentication from the Build menu.
    2. Click on Get Started.
    3. Select Sign-in method > Add new provider > Email/Password then enable both the Email/Password and Email link (passwordless sign-in) options.
  2. Enable Firestore:

    1. Go to the Firebase Console, and select Firestore Database from the Build menu.
    2. Click on the Create database button. You can choose to set up Firestore either in the production mode or in the test mode.
  3. Enable Realtime Database:

    1. Go to the Firebase Console, and select Realtime Database from the Build menu.
    2. Click on the Create Database button. You can choose to set up the Realtime Database either in the locked mode or in the test mode.

    Note: Integration tests are not run against the default Realtime Database reference and are instead run against a database created at https://{PROJECT_ID}.firebaseio.com. This second Realtime Database reference is created in the following steps.

    1. In the Data tab click on the kebab menu (3 dots) and select Create Database.
    2. Enter your Project ID (Found in the General tab in Account Settings) as the Realtime Database reference. Again, you can choose to set up the Realtime Database either in the locked mode or in the test mode.
  4. Enable Storage:

    1. Go to the Firebase Console, and select Storage from the Build menu.
    2. Click on the Get started button. You can choose to set up Cloud Storage either in the production mode or in the test mode.
  5. Enable the Firebase ML API:

    1. Go to the Google Cloud console | Firebase ML API and make sure your project is selected.
    2. If the API is not already enabled, click Enable.
  6. Enable the IAM API:

    1. Go to the Google Cloud console and make sure your Firebase project is selected.
    2. Select APIs & Services from the main menu, and click the ENABLE APIS AND SERVICES button.
    3. Search for and enable Identity and Access Management (IAM) API by Google Enterprise API.
  7. Enable Tenant Management:

    1. Go to Google Cloud console | Identity Platform and if it is not already enabled, click Enable.
    2. Then enable multi-tenancy for your project.
  8. Ensure your service account has the Firebase Authentication Admin role. This is required to ensure that exported user records contain the password hashes of the user accounts:

    1. Go to Google Cloud console | IAM & admin.
    2. Find your service account in the list. If not added click the pencil icon to edit its permissions.
    3. Click ADD ANOTHER ROLE and choose Firebase Authentication Admin.
    4. Click SAVE.

Finally, to run the integration test suite:

$ npm run integration   # Build and run integration test suite

By default the integration test suite does not modify the Firebase security rules for the Realtime Database. If you want to force update the rules, so that the relevant Database integration tests can pass, launch the tests as follows:

$ npm run test:integration -- --updateRules

The integration test suite skips the multi-tenancy Auth tests by default. If you want to run these tests, an Identity Platform project with multi-tenancy enabled will be required. An existing Firebase project can be upgraded to an Identity Platform project without losing any functionality via the Identity Platform Marketplace Page. Note that charges may be incurred for active users beyond the Identity Platform free tier. The integration tests can be launched with these tests enabled as follows:

$ npm run test:integration -- --testMultiTenancy

Repo Organization

Here are some highlights of the directory structure and notable source files

  • src/ - Source directory, written in TypeScript.
    • auth/ - Auth source files, including the user management, credential, and token generator APIs.
    • database/ - Database source files, imported as a minified JavaScript file from a separate repo.
    • messaging/ - Messaging source files, including the FCM send APIs.
    • utils/ - Utilities for doing things such as sending requests, handling errors, and validating inputs.
    • index.ts - Main SDK entry point which registers the Firebase services.
    • index.d.ts - Hand-crafted TypeScript declaration file.
    • firebase-app.ts - FirebaseApp implementation.
    • firebase-namespace.ts - FirebaseNamespace implementation.
    • default-namespace.ts - Exports a FirebaseNamespace instance which acts as the top-level SDK export.
  • lib/ - Output directory for all compiled files.
  • test/ - Unit and integration test suites.
    • unit/ - Unit test suite written in Mocha which extensively tests the source code using mocks for all network requests.
      • index.spec.js - Main unit test entry point which imports the tests to be run.
      • utils.js - Testing utilities.
    • integration/ - Integration test suite which actually hits live Firebase services.
    • resources/ - Provides mocks for several variables as well as mock service account keys.
  • .github/ - Contribution instructions as well as issue and pull request templates.
  • createReleaseTarball.sh - Generates a new release tarball and ensures it passes all tests.
  • verifyReleaseTarball.sh - Installs and validates the release tarballs created by createReleaseTarball.sh.
  • gulpfile.js - Defines the gulp tasks necessary for building release artifacts.
  • package-lock.json - A snapshot of the dependency tree for development and CI purposes.
  • tslint.json - TypeScript linting rules.
  • tsconfig.json - TypeScript configuration options.
  • tsconfig-lint.json - TypeScript configuration options for the linter. This simply widens the scope of tsconfig.json by including some test source files in the project.