diff --git a/README.md b/README.md index bd4c7b6ae..333abc8e3 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If you are using Maven without the BOM, add this to your dependencies: com.google.cloud google-cloud-firestore - 3.30.5 + 3.30.6 ``` diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/FirestoreOptions.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/FirestoreOptions.java index b0887f602..e8df452a4 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/FirestoreOptions.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/FirestoreOptions.java @@ -313,7 +313,7 @@ public static class EmulatorCredentials extends Credentials { @Override public String getAuthenticationType() { - throw new IllegalArgumentException("Not supported"); + return "Unauthenticated"; } @Override diff --git a/google-cloud-firestore/src/test/java/com/google/cloud/firestore/EmulatorCredentials.java b/google-cloud-firestore/src/test/java/com/google/cloud/firestore/EmulatorCredentials.java new file mode 100644 index 000000000..1314ec490 --- /dev/null +++ b/google-cloud-firestore/src/test/java/com/google/cloud/firestore/EmulatorCredentials.java @@ -0,0 +1,35 @@ +/* + * Copyright 2025 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.cloud.firestore; + +import static org.junit.Assert.assertEquals; + +import com.google.api.gax.core.CredentialsProvider; +import com.google.api.gax.core.FixedCredentialsProvider; +import java.io.IOException; +import org.junit.Test; + +public class EmulatorCredentials { + @Test + public void implementsCredentials() throws IOException { + CredentialsProvider emulatorCredentials = + FixedCredentialsProvider.create(new FirestoreOptions.EmulatorCredentials()); + assertEquals("Unauthenticated", emulatorCredentials.getCredentials().getAuthenticationType()); + assertEquals(true, emulatorCredentials.getCredentials().hasRequestMetadata()); + assertEquals(true, emulatorCredentials.getCredentials().hasRequestMetadataOnly()); + } +}