salt/tests/unit/output/json_out_test.py
2016-11-03 17:20:47 +01:00

86 lines
2.6 KiB
Python

# -*- coding: utf-8 -*-
'''
unittests for json outputter
'''
# Import Python Libs
from __future__ import absolute_import
from StringIO import StringIO
import sys
# Import Salt Testing Libs
from salttesting import TestCase
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
# Import Salt Libs
from salt.output import json_out as json
from salt.log.setup import set_console_handler_stream
class JsonTestCase(TestCase):
'''
Test cases for salt.output.json_out
'''
def setUp(self):
# reset to default behavior
set_console_handler_stream(sys.stderr)
json.__opts__ = {}
self.data = {'test': 'two', 'example': 'one'}
def test_default_output(self):
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
def test_pretty_output(self):
json.__opts__['output_indent'] = 'pretty'
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
def test_indent_output(self):
json.__opts__['output_indent'] = 2
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
def test_negative_zero_output(self):
json.__opts__['output_indent'] = 0
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
def test_negative_int_output(self):
json.__opts__['output_indent'] = -1
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
def test_unicode_output(self):
json.__opts__['output_indent'] = 'pretty'
data = {'test': '\xe1', 'example': 'one'}
expect = ('{"message": "\'utf8\' codec can\'t decode byte 0xe1 in position 0: unexpected end of data", '
'"error": "Unable to serialize output to json"}')
ret = json.output(data)
self.assertEqual(expect, ret)
def test_default_outout_with_log_entries(self):
# mock a console log stream
test_stream = StringIO('line1\nline2')
set_console_handler_stream(test_stream)
json.__opts__['output_indent'] = -1
ret = json.output(self.data)
self.assertIn('"test": "two"', ret)
self.assertIn('"example": "one"', ret)
self.assertIn('"logs": [', ret)
self.assertIn('"line1"', ret)
self.assertIn('"line2"', ret)
if __name__ == '__main__':
from integration import run_tests
run_tests(JsonTestCase, needs_daemon=False)