示例#1
0
    def test_create_service(self):
        # Setup Expected Response
        name = "name3373707"
        display_name = "displayName1615086568"
        expected_response = {"name": name, "display_name": display_name}
        expected_response = service_pb2.Service(**expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = monitoring_v3.ServiceMonitoringServiceClient()

        # Setup Request
        parent = client.project_path("[PROJECT]")
        service = {}

        response = client.create_service(parent, service)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = service_service_pb2.CreateServiceRequest(
            parent=parent, service=service)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#2
0
    def test_get_service(self):
        # Setup Expected Response
        name_2 = "name2-1052831874"
        display_name = "displayName1615086568"
        expected_response = {"name": name_2, "display_name": display_name}
        expected_response = service_pb2.Service(**expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = monitoring_v3.ServiceMonitoringServiceClient()

        # Setup Request
        name = client.service_path("[PROJECT]", "[SERVICE]")

        response = client.get_service(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = service_service_pb2.GetServiceRequest(name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request