-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Tests
There are 2 types of tests currently in use by Brave: unit tests and browser tests.
Unit tests are compiled C++ tests that test a specific function or thing.
npm run test -- brave_unit_tests
Typical output looks like this:
$ npm run test -- brave_unit_tests
> brave@1.0.0 test /Users/bbondy/projects/brave/brave
> node ./scripts/commands.js test "brave_unit_tests"
ninja -C /Users/bbondy/projects/brave/brave/src/out/Release brave_unit_tests
ninja: Entering directory `/Users/bbondy/projects/brave/brave/src/out/Release'
[59/59] LINK ./brave_unit_tests
/Users/bbondy/projects/brave/brave/src/out/Release/brave_unit_tests --enable-logging --v=0
IMPORTANT DEBUGGING NOTE: batches of tests are run inside their
own process. For debugging a test inside a debugger, use the
--gtest_filter=<your_test_name> flag along with
--single-process-tests.
Using sharding settings from environment. This is shard 0/1
Using 8 parallel jobs.
[1/9] BraveSiteHacksNetworkDelegateHelperTest.NoChangeURL (1 ms)
[2/9] BraveSiteHacksNetworkDelegateHelperTest.RedirectsToEmptyDataURLs (1 ms)
[3/9] BraveSiteHacksNetworkDelegateHelperTest.RedirectsToStubs (1 ms)
[4/9] BraveSiteHacksNetworkDelegateHelperTest.Blocking (1 ms)
[5/9] BraveStaticRedirectNetworkDelegateHelperTest.NoModifyTypicalURL (2 ms)
[6/9] BraveStaticRedirectNetworkDelegateHelperTest.ModifyGeoURL (1 ms)
[7/9] ChromeImporterTest.ImportHistory (4 ms)
[8/9] ChromeImporterTest.ImportBookmarks (4 ms)
[9/9] ChromeImporterTest.ImportFavicons (2 ms)
SUCCESS: all tests passed.
Tests took 0 seconds.
You can run the JavaScript unit tests from the command line with:
npm run test-unit
This will run all tests and additionally will provide a code coverage report. If you'd like to filter tests, you can do that like so:
npm run test-unit -- --findRelatedTests ./components/test/object1_test.ts ./components/test/object2_test.ts ./components/test/object3_test.ts
You basically provide the path to files you want to test as arguments after --findRelatedTests
. Code coverage will also run in that case after the filtered tests.
Browser tests compile a browser executable together with the test C++ code. This type of test is useful for when you need to test something that requires most of the browser services started.
npm run test -- brave_browser_tests
Typical output looks like this:
$ npm run test -- brave_browser_tests
> brave@1.0.0 test /Users/bbondy/projects/brave/brave
> node ./scripts/commands.js test "brave_browser_tests"
ninja -C /Users/bbondy/projects/brave/brave/src/out/Release brave_browser_tests
ninja: Entering directory `/Users/bbondy/projects/brave/brave/src/out/Release'
[1/1] Regenerating ninja files
[59/59] LINK ./brave_browser_tests
/Users/bbondy/projects/brave/brave/src/out/Release/brave_browser_tests --enable-logging --v=0
IMPORTANT DEBUGGING NOTE: each test is run inside its own process.
For debugging a test inside a debugger, use the
--gtest_filter=<your_test_name> flag along with either
--single_process (to run the test in one launcher/browser process) or
--single-process (to do the above, and also run Chrome in single-process mode).
Using sharding settings from environment. This is shard 0/1
Using 4 parallel jobs.
[1/4] AdBlockServiceTest.NotAdsDoNotGetBlocked (2107 ms)
[2/4] AdBlockServiceTest.AdsGetBlocked (2370 ms)
[3/4] HTTPSEverywhereServiceTest.NoRedirectsNotKnownSite (2369 ms)
[4/4] HTTPSEverywhereServiceTest.RedirectsKnownSite (2370 ms)
SUCCESS: all tests passed.
npm run test -- brave_browser_tests --filter=BraveContentSettingsObserverBrowserTest.*
Make sure xvfb, openbox, and xcompmgr are installed; then run, e.g.:
./src/testing/xvfb.py npm run test -- brave_browser_tests
npm run test -- brave_browser_tests Release
You can disable a flacky test by prefixing it with DISABLED_
. Whenever doing this though, make sure to post an issue to re-enable it and assign it to the owner of the test.
- TEST(ExampleTest, CrashingTest) {
+ TEST(ExampleTest, DISABLED_CrashingTest) {
Other targets can be passed to npm run test -- <suite>
such as running Chrome's tests.
Example:
npm run test -- browser_tests
will run a lot of tests, but some will not pass.
Run:
npm run test-security
Or if testing a non-Debug build:
npm run test-security -- --output_path="/path/to/brave/binary"
This will start the browser for 2 minutes. During that time, try doing some actions in Brave other than going to a webpage (since this will create a lot of false positives). For instance:
- open preferences and change some
- go through the brave://welcome onboarding process
- enable brave rewards and claim a grant
Or manually:
- Download Brave or
npm start
- Open it with these command line flags
--log-net-log=/path/to/somefile.json --net-log-capture-mode=IncludeSocketBytes
. for instance on my mac it'sopen /Applications/Brave\ Browser.app --args --log-net-log=/Users/yan/chromelog4.json --net-log-capture-mode=IncludeSocketBytes
. If you're usingnpm start
add the arguments tolib/start.js
. - Try doing some actions in Brave other than going to a webpage.
- Close brave, open brave, go to chrome://net-internals and pick the option to import the JSON file from step
- Inspect requests that say
URL_REQUEST
and you can actually see what they are sent to.
Note requests that return 307 are not actually sent over the network
GOOGLE_OWNED_SERVICE
is a very good search term to find all the places in Chromium that hit Google servers for any reason. https://cs.chromium.org/search/?q=%22destination:+GOOGLE_OWNED_SERVICE%22&sq=package:chromium&type=cs
It's sometimes useful to see the console while browser tests are running. When it is in this state, you can't enter user input or focus the window, but you can right click and Inspect
to see the console and show the devtools.
By default we use predefined emulator, so there is no need to set up emulator for tests.
If you want to run tests on specific emulator, follow these steps:
- Start Android Studio
/usr/local/android-studio/bin/studio.sh
- Open AVD Manager (Phone icon with Android robot on the toolbar)
- Create a new Emulator, I used Nexus 6P API level 29, CPU x86, make sure to set the Size on disk to 10GB and SD card to 1GB or else there will be errors when copying the test files.
- List installed emulators:
~/Android/Sdk/emulator/emulator -list-avds
- Start an emulator:
$ ~/Android/Sdk/emulator/emulator @EMULATOR_ID
. Note: use EMULATOR_ID from the list command, and pre-pend an @ symbol - Specify
manual_android_test_device
parameter to indicate that Android test device is run manually.
x86
emulators are recommended as arm
emulators are extremely slow and tests will fail with timeout error.
npm run init -- --target_os=android --target_arch=x86
npm run build -- --target_os=android --target_arch=x86
npm run test -- brave_unit_tests --target_os=android --target_arch=x86
Brave runs most tests from upstream Chromium in CI (see CI/run-upstream-tests
label). They can also be run locally like this:
npm test browser_tests
npm test unit_tests
However, Brave also makes several changes to Chromium that may cause those tests to fail. To disable particular upstream tests, add an entry to brave-core/test/filters/. Be sure to include a short description of why the filter is required and create an associated tracking issue.