forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1491097 - Add utils unit test; r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D13153
- Loading branch information
Rob Wood
committed
Nov 28, 2018
1 parent
ae78d00
commit 31f6d15
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
from __future__ import absolute_import, unicode_literals | ||
|
||
import mozunit | ||
import os | ||
import pytest | ||
import sys | ||
|
||
# need this so raptor imports work both from /raptor and via mach | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
if os.environ.get('SCRIPTSPATH', None) is not None: | ||
# in production it is env SCRIPTS_PATH | ||
mozharness_dir = os.environ['SCRIPTSPATH'] | ||
else: | ||
# locally it's in source tree | ||
mozharness_dir = os.path.join(here, '../../mozharness') | ||
sys.path.insert(1, mozharness_dir) | ||
|
||
raptor_dir = os.path.join(os.path.dirname(here), 'raptor') | ||
sys.path.insert(0, raptor_dir) | ||
|
||
from utils import transform_platform | ||
|
||
|
||
@pytest.mark.parametrize('platform', ['win', 'mac', 'linux64']) | ||
def test_transform_platform(platform): | ||
transformed = transform_platform("mitmproxy-rel-bin-{platform}.manifest", platform) | ||
assert "{platform}" not in transformed | ||
if platform == 'mac': | ||
assert "osx" in transformed | ||
else: | ||
assert platform in transformed | ||
|
||
|
||
def test_transform_platform_no_change(): | ||
starting_string = "nothing-in-here-to-transform" | ||
assert transform_platform(starting_string, 'mac') == starting_string | ||
|
||
|
||
@pytest.mark.parametrize('processor', ['x86_64', 'other']) | ||
def test_transform_platform_processor(processor): | ||
transformed = transform_platform("string-with-processor-{x64}.manifest", 'win', processor) | ||
assert "{x64}" not in transformed | ||
if processor == 'x86_64': | ||
assert "_x64" in transformed | ||
|
||
|
||
if __name__ == '__main__': | ||
mozunit.main() |