当前位置: 首页>>代码示例>>Python>>正文


Python HTTPSOAPWrapper.get方法代码示例

本文整理汇总了Python中zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper.get方法的典型用法代码示例。如果您正苦于以下问题:Python HTTPSOAPWrapper.get方法的具体用法?Python HTTPSOAPWrapper.get怎么用?Python HTTPSOAPWrapper.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper的用法示例。


在下文中一共展示了HTTPSOAPWrapper.get方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_http_get_client_cert_required_no_client_cert

# 需要导入模块: from zato.server.connection.http_soap.outgoing import HTTPSOAPWrapper [as 别名]
# 或者: from zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper import get [as 别名]
    def test_http_get_client_cert_required_no_client_cert(self):

        with NamedTemporaryFile(prefix='zato-tls', delete=False) as ca_cert_tf:

            ca_cert_tf.write(ca_cert)
            ca_cert_tf.flush()

            server = TLSServer(cert_reqs=ssl.CERT_REQUIRED)
            server.start()

            sleep(0.3)

            port = server.get_port()

            config = self._get_config()
            config['address_host'] = 'https://localhost:{}/'.format(port)
            config['address_url_path'] = ''
            config['ping_method'] = 'GET'
            config['transport'] = URL_TYPE.PLAIN_HTTP
            config['tls_verify'] = ca_cert_tf.name

            wrapper = HTTPSOAPWrapper(config, requests)

            try:
                wrapper.get('123')
            except Exception, e:
                details = e.message[0][1][0][0]
                self.assertEquals(details, ('SSL routines', 'SSL3_READ_BYTES', 'sslv3 alert handshake failure'))
            else:
开发者ID:giacomocariello,项目名称:zato,代码行数:31,代码来源:test_outgoing.py

示例2: test_http_get_unknown_ca_verify_invalid_ca_cert

# 需要导入模块: from zato.server.connection.http_soap.outgoing import HTTPSOAPWrapper [as 别名]
# 或者: from zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper import get [as 别名]
    def test_http_get_unknown_ca_verify_invalid_ca_cert(self):

        with NamedTemporaryFile(prefix='zato-tls', delete=False) as ca_cert_tf:

            ca_cert_tf.write(ca_cert_invalid)
            ca_cert_tf.flush()

            server = TLSServer()
            server.start()

            sleep(0.3)

            port = server.get_port()

            config = self._get_config()
            config['address_host'] = 'https://localhost:{}/'.format(port)
            config['address_url_path'] = ''
            config['ping_method'] = 'GET'
            config['transport'] = URL_TYPE.PLAIN_HTTP
            config['tls_verify'] = ca_cert_tf.name

            wrapper = HTTPSOAPWrapper(config, requests)

            try:
                wrapper.get('123')
            except Exception, e:
                details = e.message[0][1][0][0]
                self.assertEquals(details, ('SSL routines', 'SSL3_GET_SERVER_CERTIFICATE', 'certificate verify failed'))
            else:
开发者ID:giacomocariello,项目名称:zato,代码行数:31,代码来源:test_outgoing.py

示例3: test_http_get_client_cert_required_has_client_cert

# 需要导入模块: from zato.server.connection.http_soap.outgoing import HTTPSOAPWrapper [as 别名]
# 或者: from zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper import get [as 别名]
    def test_http_get_client_cert_required_has_client_cert(self):

        with NamedTemporaryFile(prefix='zato-tls', delete=False) as ca_cert_tf:

            ca_cert_tf.write(ca_cert)
            ca_cert_tf.flush()

            with NamedTemporaryFile(prefix='zato-tls', delete=False) as client_cert_tf:

                client_cert_tf.write(client1_key)
                client_cert_tf.write('\n')
                client_cert_tf.write(client1_cert)
                client_cert_tf.flush()

                server = TLSServer(cert_reqs=ssl.CERT_REQUIRED)
                server.start()

                sleep(0.3)

                port = server.get_port()

                config = self._get_config()
                config['address_host'] = 'https://localhost:{}/'.format(port)
                config['address_url_path'] = ''
                config['ping_method'] = 'GET'
                config['transport'] = URL_TYPE.PLAIN_HTTP
                config['tls_verify'] = ca_cert_tf.name
                config['tls_key_cert_full_path'] = client_cert_tf.name
                config['sec_type'] = SEC_DEF_TYPE.TLS_KEY_CERT

                wrapper = HTTPSOAPWrapper(config, requests)

                wrapper.get('123')
开发者ID:farirat,项目名称:zato,代码行数:35,代码来源:test_outgoing.py

示例4: test_http_get_unknown_ca_verify_false

# 需要导入模块: from zato.server.connection.http_soap.outgoing import HTTPSOAPWrapper [as 别名]
# 或者: from zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper import get [as 别名]
    def test_http_get_unknown_ca_verify_false(self):
        server = TLSServer()
        server.start()

        sleep(0.3)

        port = server.get_port()

        config = self._get_config()
        config['address_host'] = 'https://localhost:{}/'.format(port)
        config['address_url_path'] = ''
        config['ping_method'] = 'GET'
        config['transport'] = URL_TYPE.PLAIN_HTTP
        config['tls_verify'] = ZATO_NONE

        wrapper = HTTPSOAPWrapper(config, requests)

        self.assertEquals(httplib.OK, wrapper.get('123').status_code)
开发者ID:giacomocariello,项目名称:zato,代码行数:20,代码来源:test_outgoing.py


注:本文中的zato.server.connection.http_soap.outgoing.HTTPSOAPWrapper.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。