mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
36 lines
840 B
Python
36 lines
840 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Rupesh Tare <rupesht@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
# Import Salt Libs
|
|
from salt.modules import http
|
|
import salt.utils.http
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class HttpTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.modules.http
|
|
'''
|
|
loader_module = http
|
|
|
|
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')
|