1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
# -*- coding: utf-8 -*-
# The MIT License (MIT)
# Copyright (c) 2014 Microsoft Corporation
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Tests for the CosmosHttpLoggingPolicy."""
import pytest
import logging
import unittest
import azure.cosmos.cosmos_client as cosmos_client
import test_config
try:
from unittest.mock import Mock
except ImportError: # python < 3.3
from mock import Mock # type: ignore
pytestmark = pytest.mark.cosmosEmulator
class MockHandler(logging.Handler):
def __init__(self):
super(MockHandler, self).__init__()
self.messages = []
def reset(self):
self.messages = []
def emit(self, record):
self.messages.append(record)
@pytest.mark.usefixtures("teardown")
class TestCosmosHttpLogger(unittest.TestCase):
config = test_config._test_config
host = config.host
masterKey = config.masterKey
connectionPolicy = config.connectionPolicy
@classmethod
def setUpClass(cls):
if (cls.masterKey == '[YOUR_KEY_HERE]' or
cls.host == '[YOUR_ENDPOINT_HERE]'):
raise Exception(
"You must specify your Azure Cosmos account values for "
"'masterKey' and 'host' at the top of this class to run the "
"tests.")
cls.mock_handler_default = MockHandler()
cls.mock_handler_diagnostic = MockHandler()
cls.logger_default = logging.getLogger("testloggerdefault")
cls.logger_default.addHandler(cls.mock_handler_default)
cls.logger_default.setLevel(logging.DEBUG)
cls.logger_diagnostic = logging.getLogger("testloggerdiagnostic")
cls.logger_diagnostic.addHandler(cls.mock_handler_diagnostic)
cls.logger_diagnostic.setLevel(logging.DEBUG)
cls.client_default = cosmos_client.CosmosClient(cls.host, cls.masterKey,
consistency_level="Session",
connection_policy=cls.connectionPolicy,
logger=cls.logger_default)
cls.client_diagnostic = cosmos_client.CosmosClient(cls.host, cls.masterKey,
consistency_level="Session",
connection_policy=cls.connectionPolicy,
logger=cls.logger_diagnostic, enable_diagnostics_logging=True)
def test_default_http_logging_policy(self):
# Test if we can log into from creating a database
test_db = self.client_default.create_database(id="database_test")
assert all(m.levelname == 'INFO' for m in self.mock_handler_default.messages)
messages_request = self.mock_handler_default.messages[0].message.split("\n")
messages_response = self.mock_handler_default.messages[1].message.split("\n")
assert messages_request[1] == "Request method: 'GET'"
assert 'Request headers:' in messages_request[2]
assert messages_request[11] == 'No body was attached to the request'
assert messages_response[0] == 'Response status: 200'
assert 'Response headers:' in messages_response[1]
self.mock_handler_default.reset()
# delete database
self.client_default.delete_database("database_test")
def test_cosmos_http_logging_policy(self):
# Test if we can log into from creating a database
test_db = self.client_diagnostic.create_database(id="database_test")
assert all(m.levelname == 'INFO' for m in self.mock_handler_diagnostic.messages)
messages_request = self.mock_handler_diagnostic.messages[2].message.split("\n")
messages_response = self.mock_handler_diagnostic.messages[3].message.split("\n")
assert "/dbs" in messages_request[0]
assert messages_request[1] == "Request method: 'POST'"
assert 'Request headers:' in messages_request[2]
assert messages_request[13] == 'A body is sent with the request'
assert messages_response[0] == 'Response status: 201'
assert messages_response[1] == 'Response status reason: Created'
assert "Elapsed Time:" in messages_response[2]
assert "Response headers" in messages_response[3]
self.mock_handler_diagnostic.reset()
# now test in case of an error
try:
test_db_error = self.client_diagnostic.create_database(id="database_test")
except:
pass
assert all(m.levelname == 'INFO' for m in self.mock_handler_diagnostic.messages)
messages_request = self.mock_handler_diagnostic.messages[0].message.split("\n")
messages_response = self.mock_handler_diagnostic.messages[1].message.split("\n")
assert "/dbs" in messages_request[0]
assert messages_request[1] == "Request method: 'POST'"
assert 'Request headers:' in messages_request[2]
assert messages_request[13] == 'A body is sent with the request'
assert messages_response[0] == 'Response status: 409'
assert messages_response[1] == 'Response status reason: Conflict'
assert "Elapsed Time:" in messages_response[2]
assert "Response headers" in messages_response[14]
# delete database
self.client_diagnostic.delete_database("database_test")
self.mock_handler_diagnostic.reset()
if __name__ == "__main__":
unittest.main()
|