Beispiel #1
0
    def test_asymmetric_decrypt(self):
        # Setup Expected Response
        plaintext = b'-9'
        expected_response = {'plaintext': plaintext}
        expected_response = service_pb2.AsymmetricDecryptResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = kms_v1.KeyManagementServiceClient(channel=channel)

        # Setup Request
        name = client.crypto_key_version_path('[PROJECT]', '[LOCATION]',
                                              '[KEY_RING]', '[CRYPTO_KEY]',
                                              '[CRYPTO_KEY_VERSION]')
        ciphertext = b'-72'

        response = client.asymmetric_decrypt(name, ciphertext)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = service_pb2.AsymmetricDecryptRequest(
            name=name, ciphertext=ciphertext)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_asymmetric_decrypt(self):
        # Setup Expected Response
        plaintext = b"-9"
        expected_response = {"plaintext": plaintext}
        expected_response = service_pb2.AsymmetricDecryptResponse(
            **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 = kms_v1.KeyManagementServiceClient()

        # Setup Request
        name = client.crypto_key_version_path(
            "[PROJECT]",
            "[LOCATION]",
            "[KEY_RING]",
            "[CRYPTO_KEY]",
            "[CRYPTO_KEY_VERSION]",
        )
        ciphertext = b"-72"

        response = client.asymmetric_decrypt(name, ciphertext)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = service_pb2.AsymmetricDecryptRequest(
            name=name, ciphertext=ciphertext)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request