deb-python-pyvmomi/tests
Tianhao He ac455dc273 Fixes #519, #448, #420, #421 Fix SoapAdapter serializer to support serializing unicode chars
We use string formatter to contruct serialization result.
The template used is str(byte) in python2 even though when the val is
unicode.
This is fine when val only contains ASCII chars since python can encode
them to str implicitly using ASCII encoding. But when the val is
non-ASCII unicodes,
the conversion fails. Fix it by using a unicode template to avoid the
conversion.
2017-03-21 11:52:50 -07:00
..
files Fix issue #182 by creating an uncallable managed method 2016-06-03 12:37:47 -07:00
fixtures Revert "Test navigation from a VM to it's MAC address." 2016-04-20 15:54:46 -07:00
README.rst Portable tests 2014-08-29 17:17:33 -04:00
__init__.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00
test_connect.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00
test_container_view.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00
test_deserializer.py Fix issue #182 by creating an uncallable managed method 2016-06-03 12:37:47 -07:00
test_iso8601.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00
test_managed_object.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00
test_serializer.py Fixes #519, #448, #420, #421 Fix SoapAdapter serializer to support serializing unicode chars 2017-03-21 11:52:50 -07:00
test_virtual_machine_object.py Fix thumbprint verification 2016-11-14 17:33:50 -08:00

README.rst

Testing Guidelines

  • All tests adhere to pep8 standards
  • All tests must be stand-alone and deterministic
  • All tests covering HTTP transactions will have a fixture file
    • fixture file names shall match method names
    • fixtures should be edited to include no more data than necessary
    • fixtures shall not include accessible IP addresses or credentials
  • All changes shall be accompanied by a test
  • All changes shall be associated with an issue number