
Both @jlowdermilk and I have tried to use this for initial configuration work. It's cheaper just to import it for now: Name: PyYAML Version: 3.11 Summary: YAML parser and emitter for Python Home-page: http://pyyaml.org/wiki/PyYAML Author: Kirill Simonov Author-email: xi@resolvent.net License: MIT Download-URL: http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz Description: YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML supports standard YAML tags and provides Python-specific tags that allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance.
68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
|
|
import yaml, test_emitter
|
|
|
|
def test_loader_error(error_filename, verbose=False):
|
|
try:
|
|
list(yaml.load_all(open(error_filename, 'rb')))
|
|
except yaml.YAMLError as exc:
|
|
if verbose:
|
|
print("%s:" % exc.__class__.__name__, exc)
|
|
else:
|
|
raise AssertionError("expected an exception")
|
|
|
|
test_loader_error.unittest = ['.loader-error']
|
|
|
|
def test_loader_error_string(error_filename, verbose=False):
|
|
try:
|
|
list(yaml.load_all(open(error_filename, 'rb').read()))
|
|
except yaml.YAMLError as exc:
|
|
if verbose:
|
|
print("%s:" % exc.__class__.__name__, exc)
|
|
else:
|
|
raise AssertionError("expected an exception")
|
|
|
|
test_loader_error_string.unittest = ['.loader-error']
|
|
|
|
def test_loader_error_single(error_filename, verbose=False):
|
|
try:
|
|
yaml.load(open(error_filename, 'rb').read())
|
|
except yaml.YAMLError as exc:
|
|
if verbose:
|
|
print("%s:" % exc.__class__.__name__, exc)
|
|
else:
|
|
raise AssertionError("expected an exception")
|
|
|
|
test_loader_error_single.unittest = ['.single-loader-error']
|
|
|
|
def test_emitter_error(error_filename, verbose=False):
|
|
events = list(yaml.load(open(error_filename, 'rb'),
|
|
Loader=test_emitter.EventsLoader))
|
|
try:
|
|
yaml.emit(events)
|
|
except yaml.YAMLError as exc:
|
|
if verbose:
|
|
print("%s:" % exc.__class__.__name__, exc)
|
|
else:
|
|
raise AssertionError("expected an exception")
|
|
|
|
test_emitter_error.unittest = ['.emitter-error']
|
|
|
|
def test_dumper_error(error_filename, verbose=False):
|
|
code = open(error_filename, 'rb').read()
|
|
try:
|
|
import yaml
|
|
from io import StringIO
|
|
exec(code)
|
|
except yaml.YAMLError as exc:
|
|
if verbose:
|
|
print("%s:" % exc.__class__.__name__, exc)
|
|
else:
|
|
raise AssertionError("expected an exception")
|
|
|
|
test_dumper_error.unittest = ['.dumper-error']
|
|
|
|
if __name__ == '__main__':
|
|
import test_appliance
|
|
test_appliance.run(globals())
|
|
|