def test_add_secret_version(self): # Setup Expected Response name = "name3373707" expected_response = {"name": name} expected_response = resources_pb2.SecretVersion(**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 = secretmanager_v1.SecretManagerServiceClient() # Setup Request parent = client.secret_path("[PROJECT]", "[SECRET]") payload = {} response = client.add_secret_version(parent, payload) assert expected_response == response assert len(channel.requests) == 1 expected_request = service_pb2.AddSecretVersionRequest(parent=parent, payload=payload) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_destroy_secret_version(self): # Setup Expected Response name_2 = "name2-1052831874" expected_response = {"name": name_2} expected_response = resources_pb2.SecretVersion(**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 = secretmanager_v1.SecretManagerServiceClient() # Setup Request name = client.secret_version_path("[PROJECT]", "[SECRET]", "[SECRET_VERSION]") response = client.destroy_secret_version(name) assert expected_response == response assert len(channel.requests) == 1 expected_request = service_pb2.DestroySecretVersionRequest(name=name) actual_request = channel.requests[0][1] assert expected_request == actual_request