forked from saltstack/salt
-
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.
Merge pull request saltstack#63924 from MKLeb/hotfix/3006.x/sys-meta-…
…path-not-available Fix sys.meta_path is None
- Loading branch information
Showing
2 changed files
with
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import logging | ||
import pathlib | ||
import shutil | ||
import textwrap | ||
|
||
import pytest | ||
|
||
pytestmark = [ | ||
pytest.mark.skip_on_windows, | ||
] | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
def test_check_no_import_error(salt_call_cli, salt_master): | ||
""" | ||
Test that we don't have any errors on teardown of python when using a py-rendered sls file | ||
This is a package test because the issue was not reproducible in our normal test suite | ||
""" | ||
init_sls = textwrap.dedent( | ||
"""#!py | ||
def run(): | ||
return { | ||
"file_foobar": { | ||
"file.managed": [ | ||
{ | ||
"name": "/foobar" | ||
}, | ||
{ | ||
"template": "jinja" | ||
}, | ||
{ | ||
"context": { | ||
"foobar": "baz", | ||
} | ||
}, | ||
{ | ||
"source": "salt://breaks/foobar.jinja", | ||
} | ||
] | ||
} | ||
} | ||
""" | ||
) | ||
base_tree = pathlib.Path(salt_master.config["file_roots"]["base"][0]) | ||
breaks_tree = base_tree / "breaks" | ||
breaks_tree.mkdir(exist_ok=True) | ||
(breaks_tree / "init.sls").write_text(init_sls) | ||
(breaks_tree / "foobar.jinja").write_text("{{ foobar }}") | ||
output = salt_call_cli.run("state.apply", "breaks", "--output-diff", "test=true") | ||
log.debug(output.stderr) | ||
shutil.rmtree(str(breaks_tree), ignore_errors=True) | ||
assert not output.stderr |
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