Commit 38e63feb authored by Adam Langley's avatar Adam Langley

webauthn: maybe fix Fido2CredentialRequestTest

Fido2CredentialRequestTest in chrome_public_test_apk is failing. Commit
f55cd37e was reverted[1] but I suspect that the cause might actually
be the Mojo change in c296f39e. Trying to run the tests fails for me
because the tests timeout trying to do setup as I'm remote, but I think
this is worth a shot at greening the bots.

TBR=martinkr

[1] https://chromium-review.googlesource.com/c/chromium/src/+/2303030

Change-Id: Ida3e66df0c5bd9e98ffc2b84032d857236aaf6e9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2303354Reviewed-by: default avatarAdam Langley <agl@chromium.org>
Reviewed-by: default avatarMartin Kreichgauer <martinkr@google.com>
Cr-Commit-Position: refs/heads/master@{#789184}
parent e79c319a
...@@ -23,6 +23,7 @@ import org.chromium.blink.mojom.AuthenticatorSelectionCriteria; ...@@ -23,6 +23,7 @@ import org.chromium.blink.mojom.AuthenticatorSelectionCriteria;
import org.chromium.blink.mojom.CableAuthentication; import org.chromium.blink.mojom.CableAuthentication;
import org.chromium.blink.mojom.GetAssertionAuthenticatorResponse; import org.chromium.blink.mojom.GetAssertionAuthenticatorResponse;
import org.chromium.blink.mojom.MakeCredentialAuthenticatorResponse; import org.chromium.blink.mojom.MakeCredentialAuthenticatorResponse;
import org.chromium.blink.mojom.PrfValues;
import org.chromium.blink.mojom.PublicKeyCredentialCreationOptions; import org.chromium.blink.mojom.PublicKeyCredentialCreationOptions;
import org.chromium.blink.mojom.PublicKeyCredentialDescriptor; import org.chromium.blink.mojom.PublicKeyCredentialDescriptor;
import org.chromium.blink.mojom.PublicKeyCredentialParameters; import org.chromium.blink.mojom.PublicKeyCredentialParameters;
...@@ -340,6 +341,7 @@ public class Fido2ApiTestHelper { ...@@ -340,6 +341,7 @@ public class Fido2ApiTestHelper {
options.allowCredentials = new PublicKeyCredentialDescriptor[] {descriptor}; options.allowCredentials = new PublicKeyCredentialDescriptor[] {descriptor};
options.cableAuthenticationData = new CableAuthentication[] {}; options.cableAuthenticationData = new CableAuthentication[] {};
options.prfInputs = new PrfValues[] {};
return options; return options;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment