commit | 6e3f23c51890dcf462d3a5d664c7ad30d6139409 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@chromium.org> | Wed Feb 17 14:06:19 2021 -0500 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Feb 17 21:12:47 2021 +0000 |
tree | a01c357bb5f45cc2746946a16e2e6693aeae37cc | |
parent | a791ff39f51660cae6b891eb9e2f6dccb6a1cb2f [diff] |
create_manifest_snapshot: switch default from master to main This aligns with the defaults in our manifest itself. BUG=chromium:1126855 TEST=CQ passes Change-Id: If4ddabecd6e48fa75ae2f6a2ee35c67504bb22e2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/2701112 Reviewed-by: Dhanya Ganesh <dhanyaganesh@chromium.org> Commit-Queue: Mike Frysinger <vapier@chromium.org> Tested-by: Mike Frysinger <vapier@chromium.org>
This doc tries to give an overview and head start to anyone just starting out on Chromite development.
Before you get started on Chromite, we recommend that you go through ChromeOS developer guides at external (first) and then goto/chromeos-building for internal. The Gerrit starter guide may also be helpful. You should flash a built image on a test device (Ask around for one!).
Chromite was intended to be the unified codebase for anything related to building ChromeOS/ChromiumOS. Currently, it is the codebase responsible for several things including: building the OS from the requisite packages for the necessary board (parallel_emerge
), driving the infrastructure build workflow (CBuildBot), hosting a Google App Engine App, and providing utility functions for various scripts scattered around ChromeOS repositories. It is written for the most part in Python with some Bash sprinkled in.
You can use Code Search to lookup things in Chromite or Chromium OS in general.
Non-public code has a separate internal Code Search site. It's organized into different “repositories”, and we have two: “Chrome OS - Internal” (only internal repositories) & “Chrome OS - Public” (only public repositories). You can add a search query for a single combined view (public & private) in the Saved Queries settings page. Use the query package:^chromeos_(internal|public)$
. NB: The “Chrome OS - Public” repository is exactly the same as the public source.chromium.org site.
The Chromite API for the CI system. The API exposes a subset of the chromite functionality that needs to be strictly maintained as much as possible.
CBuildBot is the collection of entire code that runs on both the parent and the child build machines. It kicks off the individual stages in a particular build. It is a configurable bot that builds ChromeOS. More details on CBuildBot can be found in this tech talk (slides).
This folder contains configurations of the different builders in use. Each has its own set of stages to run usually called under RunStages function. Most builders used regularly are derived from SimpleBuilder class.
Each file here has implementations of stages in the build process grouped by similarity. Each stage usually has PerformStage as its primary function.
Additional documentation.
Code here is expected to be imported whenever necessary throughout Chromite.
Unlike lib, code in scripts will not and should not be imported anywhere. Instead they are executed as required in the build process. Each executable is linked to either wrapper.py
or virtualenv_wrapper.py
. Some of these links are in chromite/bin
. The wrapper figures out the directory of the executable script and the $PYTHONPATH
. Finally, it invokes the correct Python installation by moving up the directory structure to find which git repo is making the call.
These files act as the centralized business logic for processes, utilizing lib for the implementation details. Any process that's implemented in chromite should generally have an entry point somewhere in a service such that it can be called from a script, the API, or anywhere else in lib where the process may be useful.
This folder contains all the third_party python libraries required by Chromite. You need a very strong reason to add any library to the current list. Please confirm with the owners beforehand.
This folder contains smaller, generic utility functionality that is not tied to any specific entities in the codebase that would make them more at home in a lib module.
This folder contains the chromite-specific infra repos.
This folder contains test-only utilities and helper functions used to make writing tests in other modules easier.
There are smaller folders with miscellaneous functions like config, licencing, cidb, etc.
Before any testing, you should check your code for lint errors with:
$ cros lint <filename>
Chromite now uses pytest for running and writing unit tests. All new code & tests should be written with the expectation to be run under pytest.
Pytest is responsible for running unit tests under Python 3, with the legacy unit test runner scripts/run_tests
responsible for running unit tests under Python 2.
Chromite has two unit test runners: scripts/run_pytest
and scripts/run_tests
, and two top-level entry points to the unit test suite: run_pytest
and run_tests
.
Every Python file in Chromite is accompanied by a corresponding *_unittest.py
file. Running a particular file's unit tests is best done via
~/trunk/chromite $ ./run_pytest example_file_unittest.py
This script initializes a Python 3 virtualenv with necessary test dependencies and runs pytest
inside that virtualenv over all tests in Chromite, with the configuration specified in pytest.ini. The default configuration runs tests in parallel and skips some tests known to be flaky or take a very long time.
This script was the unit test runner prior to Chromite transitioning to using pytest. It is responsible for running unit tests under Python 2 while Chromite is in the process of migrating to Python 3. Once Chromite runs under Python 3 only, this script will be deprecated and removed.
Tests will not run in a standalone git checkout of chromite. Use the repo-based flow described above to obtain a functional-testing environment.
This top-level script is a convenience wrapper for scripts/run_pytest
and has identical behavior.
This top-level script runs both scripts/run_tests
and scripts/run_pytest
as a convenience wrapper for the full testing run done in the CQ. This script accepts no arguments, so if you want to customize test run behavior you should run one of scripts/run_pytest
or scripts/run_tests
directly.
As of writing this document (April 2020), Chromite is still in the process of migrating to run entirely under Python 3. New *_unittest.py
files can assume that they are run on Python 3 only, but existing files must maintain backwards compatibility unless marked with a sys.version
assertion at the top of the file.
Chromite‘s unit tests make use of pytest fixtures. Fixtures that are defined in a conftest.py
file are visible to tests in the same directory and all child directories. If it’s unclear where a test function is getting an argument from, try searching for a fixture with that argument's name in a conftest.py
file.
Be sure to consult pytest's excellent documentation for guidance on how to take advantage of the features pytest offers when writing unit tests.
Unit tests must clean up after themselves and in particular must not leak child processes after running. There is no guaranteed order in which tests are run or that tests are even run in the same process.
Once you mark your CL as Commit-Queue +1 on the Chromium Gerrit, the PreCQ will pick up your change and fire few preset config runs as a precursor to CQ.
This is the final step in getting your change pushed. CQ is the most comprehensive of all tests. Once a CL is verified by CQ, it is merged into the codebase.
Refer to these talk slides on ChromeOS Build Overview.