mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
02a7b4ebdf
Allow-list all Python code in tree for use with the black linter, and re-format all code in-tree accordingly. To produce this patch I did all of the following: 1. Make changes to tools/lint/black.yml to remove include: stanza and update list of source extensions. 2. Run ./mach lint --linter black --fix 3. Make some ad-hoc manual updates to python/mozbuild/mozbuild/test/configure/test_configure.py -- it has some hard-coded line numbers that the reformat breaks. 4. Make some ad-hoc manual updates to `testing/marionette/client/setup.py`, `testing/marionette/harness/setup.py`, and `testing/firefox-ui/harness/setup.py`, which have hard-coded regexes that break after the reformat. 5. Add a set of exclusions to black.yml. These will be deleted in a follow-up bug (1672023). # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D94045
82 lines
2.3 KiB
Python
82 lines
2.3 KiB
Python
from __future__ import absolute_import
|
|
import unittest
|
|
|
|
import mozunit
|
|
|
|
from printprereleasesuffix import get_prerelease_suffix
|
|
|
|
|
|
class TestGetPreReleaseSuffix(unittest.TestCase):
|
|
"""
|
|
Unit tests for the get_prerelease_suffix function
|
|
"""
|
|
|
|
def test_alpha_1(self):
|
|
"""test 1a1 version string"""
|
|
self.c = get_prerelease_suffix("1a1")
|
|
self.assertEqual(self.c, " 1 Alpha 1")
|
|
|
|
def test_alpha_10(self):
|
|
"""test 1.2a10 version string"""
|
|
self.c = get_prerelease_suffix("1.2a10")
|
|
self.assertEqual(self.c, " 1.2 Alpha 10")
|
|
|
|
def test_beta_3(self):
|
|
"""test 1.2.3b3 version string"""
|
|
self.c = get_prerelease_suffix("1.2.3b3")
|
|
self.assertEqual(self.c, " 1.2.3 Beta 3")
|
|
|
|
def test_beta_30(self):
|
|
"""test 1.2.3.4b30 version string"""
|
|
self.c = get_prerelease_suffix("1.2.3.4b30")
|
|
self.assertEqual(self.c, " 1.2.3.4 Beta 30")
|
|
|
|
def test_release_1(self):
|
|
"""test 1.2.3.4 version string"""
|
|
self.c = get_prerelease_suffix("1.2.3.4")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_alpha_1_pre(self):
|
|
"""test 1.2a1pre version string"""
|
|
self.c = get_prerelease_suffix("1.2a1pre")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_beta_10_pre(self):
|
|
"""test 3.4b10pre version string"""
|
|
self.c = get_prerelease_suffix("3.4b10pre")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_pre_0(self):
|
|
"""test 1.2pre0 version string"""
|
|
self.c = get_prerelease_suffix("1.2pre0")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_pre_1_b(self):
|
|
"""test 1.2pre1b version string"""
|
|
self.c = get_prerelease_suffix("1.2pre1b")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_a_a(self):
|
|
"""test 1.2aa version string"""
|
|
self.c = get_prerelease_suffix("1.2aa")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_b_b(self):
|
|
"""test 1.2bb version string"""
|
|
self.c = get_prerelease_suffix("1.2bb")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_a_b(self):
|
|
"""test 1.2ab version string"""
|
|
self.c = get_prerelease_suffix("1.2ab")
|
|
self.assertEqual(self.c, "")
|
|
|
|
def test_plus(self):
|
|
"""test 1.2+ version string """
|
|
self.c = get_prerelease_suffix("1.2+")
|
|
self.assertEqual(self.c, "")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
mozunit.main()
|