prefpicker


Nameprefpicker JSON
Version 1.22.1 PyPI version JSON
download
home_pagehttps://github.com/MozillaSecurity/prefpicker
SummaryPrefPicker - Manage & generate prefs.js files
upload_time2024-04-02 17:49:10
maintainerMozilla Fuzzing Team
docs_urlNone
authorTyson Smith
requires_python>=3.8
licenseMPL 2.0
keywords firefox fuzz fuzzing test testing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PrefPicker
==========
[![Task Status](https://community-tc.services.mozilla.com/api/github/v1/repository/MozillaSecurity/prefpicker/master/badge.svg)](https://community-tc.services.mozilla.com/api/github/v1/repository/MozillaSecurity/prefpicker/master/latest)
[![codecov](https://codecov.io/gh/MozillaSecurity/prefpicker/branch/master/graph/badge.svg)](https://codecov.io/gh/MozillaSecurity/prefpicker)
[![Matrix](https://img.shields.io/badge/dynamic/json?color=green&label=chat&query=%24.chunk[%3F(%40.canonical_alias%3D%3D%22%23fuzzing%3Amozilla.org%22)].num_joined_members&suffix=%20users&url=https%3A%2F%2Fmozilla.modular.im%2F_matrix%2Fclient%2Fr0%2FpublicRooms&style=flat&logo=matrix)](https://riot.im/app/#/room/#fuzzing:mozilla.org)
[![PyPI](https://img.shields.io/pypi/v/prefpicker)](https://pypi.org/project/prefpicker)


Manage & generate prefs.js files for use when testing Firefox. This tool is intended to simplify the use and tracking of prefs used by
our fuzzing tools. The template files can be modified to allow the creation of custom prefs.js files without
the need to maintain a separate mostly duplicate version of a prefs file.

YAML Template Structure
-----------------------

The template document is made up of variants, prefs and values.

_**pref**_ is the name of the preference that will be added to the prefs.js file. This is an unquoted string.
Valid prefs can be found in [all.js](https://hg.mozilla.org/mozilla-central/file/tip/modules/libpref/init/all.js) or in [StaticPrefList.yml](https://hg.mozilla.org/mozilla-central/file/tip/modules/libpref/init/StaticPrefList.yaml).

__**review_on_close**__ is optional. It is a list of relevant Bugzilla IDs used to help avoid obsolete entries. When all bugs in the list are closed the entry will be reviewed and removed if appropriate.

_**value**_ can be a `bool`, `int`, `string` or `null`. Adding multiple potential values is possible.
When multiple values are present one is chosen at random when generating the output.
Using a value of `null` will skip adding the pref to the output prefs.js file (acts as browser default).

_**variant**_ is a subset of values to be used in place of the default values.
The default variant is used unless a variant is specified.

There are a few mechanisms in place to help keep the file in order:
- All prefs must have a default variant
- All variants must be defined in the variant list
- All variants in the variant list must be used
- All variants must be a list and contain values

```yml
# example.yml
variant:              # list of extra variants, default is implied
- alt                 # name of variant
pref:
  pref.name:          # unquoted name of the pref used in prefs.js
    review_on_close:  # optional
    - 123456
    variants:
      default:        # variant definition, default is required
      - 0             # potential value
      alt:            # extra optional variant
      - 1             # if multiple values are defined one is chosen randomly
      - null          # null is a special case meaning do not add the pref
```

Quick Setup
-----------

Use pip to install prefpicker.

```bash
pip install prefpicker
```

Examples
--------

Use a built-in [template](https://github.com/MozillaSecurity/prefpicker/tree/master/prefpicker/templates) to generate an up-to-date `prefs.js` file.

```bash
prefpicker browser-fuzzing.yml prefs.js
```

Or generate a `prefs.js` file from a custom template using the `webrender` variant:

```bash
user@machine:~/prefpicker$ prefpicker custom/template.yml ~/Desktop/prefs.js --variant webrender
Loading 'template.yml'...
Loaded 255 prefs and 5 variants
Generating 'prefs.js' using variant 'webrender'...
Done.
```

The resulting `prefs.js` file is ready to be used with Firefox. It will look something like this:

```js
// Generated with PrefPicker @ 2020-02-08 00:50:29 UTC
// Variant 'webrender'
/// ... snip
user_pref("fuzzing.enabled", true);
/// ... snip
// 'gfx.webrender.all' defined by variant 'webrender'
user_pref("gfx.webrender.all", true);
/// ... snip
```

Updating Templates
------------------

When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context. If a pref does not already exist and is only used with non-default variants a 'null' entry must be added to the default variant.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MozillaSecurity/prefpicker",
    "name": "prefpicker",
    "maintainer": "Mozilla Fuzzing Team",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "fuzzing@mozilla.com",
    "keywords": "firefox fuzz fuzzing test testing",
    "author": "Tyson Smith",
    "author_email": "twsmith@mozilla.com",
    "download_url": "https://files.pythonhosted.org/packages/54/c0/c4ada859460b558b3f87c1467f1cd11a7622592f867a48f0a5ef61024503/prefpicker-1.22.1.tar.gz",
    "platform": null,
    "description": "PrefPicker\n==========\n[![Task Status](https://community-tc.services.mozilla.com/api/github/v1/repository/MozillaSecurity/prefpicker/master/badge.svg)](https://community-tc.services.mozilla.com/api/github/v1/repository/MozillaSecurity/prefpicker/master/latest)\n[![codecov](https://codecov.io/gh/MozillaSecurity/prefpicker/branch/master/graph/badge.svg)](https://codecov.io/gh/MozillaSecurity/prefpicker)\n[![Matrix](https://img.shields.io/badge/dynamic/json?color=green&label=chat&query=%24.chunk[%3F(%40.canonical_alias%3D%3D%22%23fuzzing%3Amozilla.org%22)].num_joined_members&suffix=%20users&url=https%3A%2F%2Fmozilla.modular.im%2F_matrix%2Fclient%2Fr0%2FpublicRooms&style=flat&logo=matrix)](https://riot.im/app/#/room/#fuzzing:mozilla.org)\n[![PyPI](https://img.shields.io/pypi/v/prefpicker)](https://pypi.org/project/prefpicker)\n\n\nManage & generate prefs.js files for use when testing Firefox. This tool is intended to simplify the use and tracking of prefs used by\nour fuzzing tools. The template files can be modified to allow the creation of custom prefs.js files without\nthe need to maintain a separate mostly duplicate version of a prefs file.\n\nYAML Template Structure\n-----------------------\n\nThe template document is made up of variants, prefs and values.\n\n_**pref**_ is the name of the preference that will be added to the prefs.js file. This is an unquoted string.\nValid prefs can be found in [all.js](https://hg.mozilla.org/mozilla-central/file/tip/modules/libpref/init/all.js) or in [StaticPrefList.yml](https://hg.mozilla.org/mozilla-central/file/tip/modules/libpref/init/StaticPrefList.yaml).\n\n__**review_on_close**__ is optional. It is a list of relevant Bugzilla IDs used to help avoid obsolete entries. When all bugs in the list are closed the entry will be reviewed and removed if appropriate.\n\n_**value**_ can be a `bool`, `int`, `string` or `null`. Adding multiple potential values is possible.\nWhen multiple values are present one is chosen at random when generating the output.\nUsing a value of `null` will skip adding the pref to the output prefs.js file (acts as browser default).\n\n_**variant**_ is a subset of values to be used in place of the default values.\nThe default variant is used unless a variant is specified.\n\nThere are a few mechanisms in place to help keep the file in order:\n- All prefs must have a default variant\n- All variants must be defined in the variant list\n- All variants in the variant list must be used\n- All variants must be a list and contain values\n\n```yml\n# example.yml\nvariant:              # list of extra variants, default is implied\n- alt                 # name of variant\npref:\n  pref.name:          # unquoted name of the pref used in prefs.js\n    review_on_close:  # optional\n    - 123456\n    variants:\n      default:        # variant definition, default is required\n      - 0             # potential value\n      alt:            # extra optional variant\n      - 1             # if multiple values are defined one is chosen randomly\n      - null          # null is a special case meaning do not add the pref\n```\n\nQuick Setup\n-----------\n\nUse pip to install prefpicker.\n\n```bash\npip install prefpicker\n```\n\nExamples\n--------\n\nUse a built-in [template](https://github.com/MozillaSecurity/prefpicker/tree/master/prefpicker/templates) to generate an up-to-date `prefs.js` file.\n\n```bash\nprefpicker browser-fuzzing.yml prefs.js\n```\n\nOr generate a `prefs.js` file from a custom template using the `webrender` variant:\n\n```bash\nuser@machine:~/prefpicker$ prefpicker custom/template.yml ~/Desktop/prefs.js --variant webrender\nLoading 'template.yml'...\nLoaded 255 prefs and 5 variants\nGenerating 'prefs.js' using variant 'webrender'...\nDone.\n```\n\nThe resulting `prefs.js` file is ready to be used with Firefox. It will look something like this:\n\n```js\n// Generated with PrefPicker @ 2020-02-08 00:50:29 UTC\n// Variant 'webrender'\n/// ... snip\nuser_pref(\"fuzzing.enabled\", true);\n/// ... snip\n// 'gfx.webrender.all' defined by variant 'webrender'\nuser_pref(\"gfx.webrender.all\", true);\n/// ... snip\n```\n\nUpdating Templates\n------------------\n\nWhen adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context. If a pref does not already exist and is only used with non-default variants a 'null' entry must be added to the default variant.\n",
    "bugtrack_url": null,
    "license": "MPL 2.0",
    "summary": "PrefPicker - Manage & generate prefs.js files",
    "version": "1.22.1",
    "project_urls": {
        "Homepage": "https://github.com/MozillaSecurity/prefpicker"
    },
    "split_keywords": [
        "firefox",
        "fuzz",
        "fuzzing",
        "test",
        "testing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2dcfce3fada70b220c1059f8fc8ea88d89a307a42e015ad45d8c4cffb217b48",
                "md5": "f244e5045809932b90c042da1e6160a1",
                "sha256": "18354a81cc49e8ab143cceceada90b8eb524f80624b80c3b62d86a62fea5d561"
            },
            "downloads": -1,
            "filename": "prefpicker-1.22.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f244e5045809932b90c042da1e6160a1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 23125,
            "upload_time": "2024-04-02T17:49:08",
            "upload_time_iso_8601": "2024-04-02T17:49:08.215964Z",
            "url": "https://files.pythonhosted.org/packages/b2/dc/fce3fada70b220c1059f8fc8ea88d89a307a42e015ad45d8c4cffb217b48/prefpicker-1.22.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54c0c4ada859460b558b3f87c1467f1cd11a7622592f867a48f0a5ef61024503",
                "md5": "a8810a1e9e383f9286f3baa65b7b01c5",
                "sha256": "99dcd367598a77653604c6d5744e61189e489dc5a429a53df8c98ea7abef8398"
            },
            "downloads": -1,
            "filename": "prefpicker-1.22.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a8810a1e9e383f9286f3baa65b7b01c5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 26493,
            "upload_time": "2024-04-02T17:49:10",
            "upload_time_iso_8601": "2024-04-02T17:49:10.937408Z",
            "url": "https://files.pythonhosted.org/packages/54/c0/c4ada859460b558b3f87c1467f1cd11a7622592f867a48f0a5ef61024503/prefpicker-1.22.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-02 17:49:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MozillaSecurity",
    "github_project": "prefpicker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "prefpicker"
}
        
Elapsed time: 0.24434s