-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix logic which merges environment PATH variables. (#449)
* Break out merge_envs to separate, tested function. * Review fixups. - Use os.pathsep instead of a hard-coded colon. - Change override test to include colon values. - Disable merging when only one env to load.
- Loading branch information
1 parent
9d2bd39
commit 9ebe21e
Showing
2 changed files
with
84 additions
and
22 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,33 @@ | ||
from catkin_tools.jobs.utils import merge_envs | ||
|
||
|
||
def test_merge_envs_basic(): | ||
job_env = { 'PATH': '/usr/local/bin:/usr/bin', 'FOO': 'foo' } | ||
|
||
merge_envs(job_env, [ | ||
{ 'PATH': '/usr/local/bin:/bar/baz/bin' }, | ||
{ 'BAR': 'bar' } ]) | ||
|
||
# Validate that the known path was not moved from the existing order, and the unfamiliar | ||
# path was correctly prepended. | ||
assert job_env['PATH'] == '/bar/baz/bin:/usr/local/bin:/usr/bin' | ||
|
||
# Confirm that a key only in the original env persists. | ||
assert job_env['FOO'] == 'foo' | ||
|
||
# Confirm that a new key is added. | ||
assert job_env['BAR'] == 'bar' | ||
|
||
|
||
def test_merge_envs_complex(): | ||
''' Confirm that merged paths are deduplicated and that order is maintained. ''' | ||
job_env = { 'PATH': 'C:B:A' } | ||
merge_envs(job_env, [{ 'PATH': 'D:C' }, { 'PATH': 'E:A:C' }]) | ||
assert job_env['PATH'] == 'E:D:C:B:A', job_env['PATH'] | ||
|
||
|
||
def test_merge_envs_nonpaths(): | ||
''' Confirm that non-path vars are simply overwritten on a last-wins policy. ''' | ||
job_env = { 'FOO': 'foo:bar' } | ||
merge_envs(job_env, [{ 'FOO': 'bar:baz' }, { 'FOO': 'baz:bar' }]) | ||
assert job_env['FOO'] == 'baz:bar' |