2015-01-22 10:43:18 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
|
|
|
|
'''
|
|
|
|
|
2015-01-24 03:02:05 +00:00
|
|
|
# Import Python libs
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-01-22 10:43:18 +00:00
|
|
|
# Import Salt Testing Libs
|
2017-02-19 15:35:30 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import TestCase, skipIf
|
|
|
|
from tests.support.mock import (
|
2015-01-22 10:43:18 +00:00
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON
|
|
|
|
)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.modules.http as http
|
2015-01-22 10:43:18 +00:00
|
|
|
import salt.utils.http
|
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-02-19 15:35:30 +00:00
|
|
|
class HttpTestCase(TestCase, LoaderModuleMockMixin):
|
2015-01-22 10:43:18 +00:00
|
|
|
'''
|
|
|
|
Test cases for salt.modules.http
|
|
|
|
'''
|
2017-03-22 12:12:36 +00:00
|
|
|
def setup_loader_modules(self):
|
|
|
|
return {http: {}}
|
2017-02-19 15:35:30 +00:00
|
|
|
|
2015-01-22 10:43:18 +00:00
|
|
|
def test_query(self):
|
|
|
|
'''
|
|
|
|
Test for Query a resource, and decode the return data
|
|
|
|
'''
|
|
|
|
with patch.object(salt.utils.http, 'query', return_value='A'):
|
|
|
|
self.assertEqual(http.query('url'), 'A')
|