(self)
| 77 | self.assertTrue(offline_node.api_version == "", "API version is not set") |
| 78 | |
| 79 | def test_auto_update_node_info(self): |
| 80 | with start_processing_node(): |
| 81 | online_node = ProcessingNode.objects.create(hostname="localhost", port=11223) |
| 82 | self.assertTrue(online_node.last_refreshed != None, "Last refreshed info is here (update_node_info() was called)") |
| 83 | |
| 84 | def test_client_api_and_task_methods(self): |
| 85 | def wait_for_status(api, uuid, status, num_retries = 10, error_description = "Failed to wait for status"): |
nothing calls this directly
no test coverage detected