Пример #1
0
 def test_malformed_request(self):
     res = formatter.malformed_request(self.request, self.err)
     assert res.startswith("Malformed request")
Пример #2
0
 def test_accepted_valid_request(self):
     res = formatter.accepted_valid_request(self.req_id, self.request)
     assert res.startswith("Accepted valid request")
Пример #3
0
 def test_invalid_response(self):
     res = formatter.invalid_response(self.req_id, self.err)
     assert res.startswith("Invalid response")
Пример #4
0
 def test_error_calling_back(self):
     res = formatter.error_calling_back(self.service_name,
                                        self.callback_url, self.err)
     assert res.startswith("Error while posting result to callback URL")
Пример #5
0
 def test_new_worker_thread(self):
     res = formatter.new_worker_thread(self.req_id)
     assert res.startswith("Initiating new worker thread")
Пример #6
0
 def test_policy_service_error(self):
     res = formatter.policy_service_error(self.url, self.req_id, self.err)
     assert res.startswith("Unable to call policy")
Пример #7
0
 def test_requesting(self):
     res = formatter.requesting(self.service_name, self.req_id)
     assert res.startswith("Making a call to service")
Пример #8
0
 def test_error_local_env(self):
     res = formatter.error_local_env(self.req_id, self.desc, self.err)
     assert res.startswith(
         "Error while creating local environment for request ID")
Пример #9
0
 def test_error_response_posting(self):
     res = formatter.error_response_posting(self.req_id, self.desc,
                                            self.err)
     assert res.startswith(
         "Error while posting a response for a request ID")
Пример #10
0
 def test_error_while_processing(self):
     res = formatter.error_while_processing(self.req_id, self.desc,
                                            self.err)
     assert res.startswith("Error while processing request ID")
Пример #11
0
 def test_creating_local_env(self):
     res = formatter.creating_local_env(self.req_id)
     assert res.startswith("Creating local environment request ID")
Пример #12
0
 def test_processed(self):
     res = formatter.processed(self.req_id, self.desc)
     assert res.startswith("Processed request ID")
Пример #13
0
 def test_inside_new_thread(self):
     res = formatter.inside_new_thread(self.req_id)
     assert res.startswith("Spinning up a new thread for request ID")
Пример #14
0
 def test_inside_worker_thread(self):
     res = formatter.inside_worker_thread(self.req_id)
     assert res.startswith("Inside worker thread for request ID")
Пример #15
0
 def test_malformed_response(self):
     res = formatter.malformed_response(self.response, self.client,
                                        self.err)
     assert res.startswith("Malformed response")
Пример #16
0
 def test_received_http_response(self):
     res = formatter.received_http_response(self.response)
     assert res.startswith("Received response [code: ")
Пример #17
0
 def test_need_policies(self):
     res = formatter.need_policies(self.req_id)
     assert res.startswith("Policies required but")
Пример #18
0
 def test_listening_response(self):
     res = formatter.listening_response(self.req_id, self.desc)
     assert res.startswith("Response is sent for request ID")
Пример #19
0
 def test_requesting_url(self):
     res = formatter.requesting_url(self.url, self.req_id)
     assert res.startswith("Making a call to URL")
Пример #20
0
 def test_items_received(self):
     res = formatter.items_received(10, "messages")
     assert res == "Received 10 messages"
Пример #21
0
 def test_error_requesting(self):
     res = formatter.error_requesting(self.service_name, self.req_id,
                                      self.err)
     assert res.startswith("Error while requesting service")
Пример #22
0
 def test_items_sent(self):
     res = formatter.items_sent(10, "messages")
     assert res == "Published 10 messages"
Пример #23
0
 def test_calling_back_with_body(self):
     res = formatter.calling_back_with_body(self.req_id, self.callback_url,
                                            self.body)
     assert res.startswith("Posting result to callback URL")
Пример #24
0
 def test_received_request(self):
     res = formatter.received_request(self.url, self.remote_addr,
                                      self.json_body)
     assert res.startswith("Received a call")