Fuzzy Selector¶
The fuzzy selector uses a tool called fzf. It allows you to filter down all of the task labels
from a terminal based UI and an intelligent fuzzy finding algorithm. If the fzf
binary is not
installed, you’ll be prompted to bootstrap it on first run.
Understanding the Interface¶
When you run mach try fuzzy
an interface similar to the one below will open. This is fzf.
There’s a lot to unpack here, so let’s examine each component a bit more closely.
A. The set of tasks that match the currently typed-out query. In the above image only tasks that match the query
'linux64 mochibrochr
are displayed.B. The set of selected tasks. These are the tasks that will be scheduled once you hit
Enter
. In other words, if the task you want does not appear here, it won’t be scheduled.C. Count information of the form
x/y (z)
, wherex
is the number of tasks that match the current query,y
is the total number of tasks andz
is the number of tasks you have selected.D. The input bar for entering queries. As you type you’ll notice the list of tasks in
A
starts to update immediately. In the image above, the query'linux64 mochibrochr
is entered. Correspondingly only tasks matching that query are displayed.
In general terms, you first find tasks on the left. Then you move them over to the right by
selecting them. Once you are satisfied with your selection, press Enter
to push to try.
Selecting Tasks¶
There are few ways you can select tasks. If you are feeling a bit overwhelmed, it might be best to stick with the mouse to start:
Enter a query (e.g
mochitest
) to reduce the task list a little.Scroll up and look for the task(s) you want.
Right-Click
as many tasks as desired to select them.Optionally delete your query, go back to step 1) and repeat.
Press
Enter
to push (orEsc
to cancel).
Note
Dependencies are automatically filled in, so you can select a test task without needing to select the build it depends on.
As you Right-Click
, notice that a little arrow appears to the left of the task label. This
indicates that the task is selected and exists in the preview pane to the right.
Once you are a bit more comfortable with the interface, using the keyboard is much better at quickly selecting tasks. Here are the main shortcuts you’ll need:
Ctrl-K / Up => Move cursor up
Ctrl-J / Down => Move cursor down
Tab => Select task + move cursor down
Shift-Tab => Select task + move cursor up
Ctrl-A => Select all currently filtered tasks
Ctrl-T => Toggle select all currently filtered tasks
Ctrl-D => De-select all selected tasks (both filtered and not)
Alt-Bspace => Clear query from input bar
Enter => Accept selection and exit
Ctrl-C / Esc => Cancel selection and exit
? => Toggle preview pane
The process for selecting tasks is otherwise the same as for a mouse. A particularly fast and powerful way to select tasks is to:
Write a precise query => Ctrl-A => Alt-Bspace => Repeat
As before, when you are satisfied with your selection press Enter
and all the tasks in the
preview pane will be pushed to try. If you change your mind you can press Esc
or Ctrl-C
to
exit the interface without pushing anything.
Note
Initially fzf
will automatically select whichever task is under your cursor. This is a
convenience feature for the case where you are only selecting a single task. This feature will be
turned off as soon as you lock in a selection with Right-Click
, Tab
or Ctrl-A
.
Writing Queries¶
Queries are built from a series of terms, each separated by a space. Terms are logically joined by the AND operator. For example:
'windows 'mochitest
This query has two terms, and is the equivalent of saying: Give me all the tasks that match both the
term 'windows'
and the term 'mochitest'
. In other words, this query matches all Windows
mochitest tasks.
The single quote prefix before each term tells fzf
to use exact substring matches, so only tasks
that contain both the literal string windows
AND the literal string mochitest
will be
matched.
Another thing to note is that the order of the terms makes no difference, so 'windows 'mochitest
and 'mochitest 'windows
are equivalent.
Fuzzy terms¶
If a term is not prefixed with a single quote, that makes it a fuzzy term. This means the
characters in the term need to show up in order, but not in sequence. E.g the fuzzy term max
would match the string mozilla firefox
(as first there is an m
, then an a
and finally an
x
), but not the string firefox by mozilla
(since the x
is now out of order). Here’s a
less contrived example:
wndws mchtst
Like the query above, this one would also select all Windows mochitest tasks. But it will additionally select:
test-macosx1014-64-shippable/opt-talos-sessionrestore-many-windows-e10s
This is because both sequences of letters (wndws
and mchtst
) independently appear in order
somewhere in this string (remember the order of the terms makes no difference).
At first fuzzy terms may not seem very useful, but they are actually extremely powerful! Let’s use
the term from the interface image above, 'linux64 mochibrochr
, as an example. First, just notice
how in the image fzf
highlights the characters that constitute the match in green. Next, notice
how typing mochibrochr
can quickly get us all mochitest browser-chrome tasks. The power of fuzzy
terms is that you don’t need to memorize the exact task labels you are looking for. Just start
typing something you think is vaguely correct and chances are you’ll see the task you’re looking for.
Term Modifiers¶
The following modifiers can be applied to a search term:
'word => exact match (line must contain the literal string "word")
^word => exact prefix match (line must start with literal "word")
word$ => exact suffix match (line must end with literal "word")
!word => exact negation match (line must not contain literal "word")
'a | 'b => OR operator (joins two exact match operators together)
For example:
^start 'exact | 'other !ignore fuzzy end$
would match the string:
starting to bake isn't exactly fun, but pizza is yummy in the end
Note
The best way to learn how to write queries is to run mach try fuzzy --no-push
and play
around with all of these modifiers!
Specifying Queries on the Command Line¶
Sometimes it’s more convenient to skip the interactive interface and specify a query on the command
line with -q/--query
. This is equivalent to opening the interface then typing:
<query><ctrl-a><enter>
.
For example:
# selects all mochitest tasks
$ mach try fuzzy --query "mochitest"
You can pass in multiple queries at once and the results of each will be joined together:
# selects all mochitest and reftest tasks
$ mach try fuzzy -q "mochitest" -q "reftest"
If instead you want the intersection of queries, you can pass in -x/--and
:
# selects all windows mochitest tasks
$ mach try fuzzy --and -q "mochitest" -q "windows"
Modifying Presets¶
Presets make it easy to run a pre-determined set of tasks. But sometimes you
might not want to run that set exactly as is, you may only want to use the preset as a starting
point then add or remove tasks as needed. This can be accomplished with -q/--query
or
-i/--interactive
.
Here are some examples of adding tasks to a preset:
# selects all perf tasks plus all mochitest-chrome tasks
$ mach try fuzzy --preset perf -q "mochitest-chrome"
# adds tasks to the perf preset interactively
$ mach try fuzzy --preset perf -i
Similarly, -x/--and
can be used to filter down a preset by taking the intersection of the two
sets:
# limits perf tasks to windows only
$ mach try fuzzy --preset perf -xq "windows"
# limits perf tasks interactively
$ mach try fuzzy --preset perf -xi
Shell Conflicts¶
Unfortunately fzf
’s query language uses some characters (namely '
, !
and $
) that can
interfere with your shell when using -q/--query
. Below are some tips for how to type out a query
on the command line.
The !
character is typically used for history expansion. If you don’t use this feature, the
easiest way to specify queries on the command line is to disable it:
# bash
$ set +H
$ ./mach try fuzzy -q "'foo !bar"
# zsh
$ setopt no_banghist
$ ./mach try fuzzy -q "'foo !bar"
If using bash
, add set +H
to your ~/.bashrc
, ~/.bash_profile
or equivalent. If using
zsh
, add setopt no_banghist
to your ~/.zshrc
or equivalent.
If you don’t want to disable history expansion, you can escape your queries like this:
# bash
$ ./mach try fuzzy -q $'\'foo !bar'
# zsh
$ ./mach try fuzzy -q "'foo \!bar"
The third option is to use -e/--exact
which reverses the behaviour of the '
character (see
Additional Arguments for more details). Using this flag means you won’t need to escape the
'
character as often and allows you to run your queries like this:
# bash and zsh
$ ./mach try fuzzy -eq 'foo !bar'
This method is only useful if you find you almost always prefix terms with '
(and rarely use
fuzzy terms). Otherwise as soon as you want to use a fuzzy match you’ll run into the same problem as
before.
Note
All the examples in these three approaches will select the same set of tasks.
If you use fish
shell, you won’t need to escape !
, however you will need to escape $
:
# fish
$ ./mach try fuzzy -q "'foo !bar baz\$"
Test Paths¶
One or more paths to a file or directory may be specified as positional arguments. When specifying paths, the list of available tasks to choose from is filtered down such that only suites that have tests in a specified path can be selected. Notably, only the first chunk of each suite/platform appears. When the tasks are scheduled, only tests that live under one of the specified paths will be run.
Note
When using paths, be aware that all tests under the specified paths will run in the same chunk. This might produce a different ordering from what gets run on production branches, and may yield different results.
For suites that restart the browser between each manifest (like mochitest), this shouldn’t be as big of a concern.
Paths can be used with the interactive fzf
window, or using the -q/--query
argument.
For example, running:
$ mach try fuzzy layout/reftests/reftest-sanity -q "!pgo !cov !asan 'linux64"
Would produce the following try_task_config.json
:
{
"env":{
"MOZHARNESS_TEST_PATHS":"{\"reftest\":\"layout/reftests/reftest-sanity\"}"
},
"tasks":[
"test-linux64-qr/debug-reftest-e10s-1",
"test-linux64-qr/opt-reftest-e10s-1",
"test-linux64/debug-reftest-e10s-1",
"test-linux64/debug-reftest-no-accel-e10s-1",
"test-linux64/opt-reftest-e10s-1",
"test-linux64/opt-reftest-no-accel-e10s-1",
]
}
Inside of these tasks, the reftest harness will only run tests that live under
layout/reftests/reftest-sanity
.
Additional Arguments¶
There are a few additional command line arguments you may wish to use:
-e/--exact
By default, fzf
treats terms as a fuzzy match and prefixing a term with '
turns it into an exact
match. If passing in --exact
, this behaviour is reversed. Non-prefixed terms become exact, and a
'
prefix makes a term fuzzy.
--full
By default, only target tasks (e.g tasks that would normally run on mozilla-central)
are generated. Passing in --full
allows you to select from all tasks. This is useful for
things like nightly or release tasks.
-u/--update
Update the bootstrapped fzf
binary to the latest version.
For a full list of command line arguments, run:
$ mach try fuzzy --help
For more information on using fzf
, run:
$ man fzf