diff options
author | Christopher Tate <ctate@google.com> | 2016-04-28 13:34:45 -0700 |
---|---|---|
committer | Christopher Tate <ctate@google.com> | 2016-04-28 13:34:45 -0700 |
commit | eb87a4d969c8282ff0c257541a42e499a99d32c7 (patch) | |
tree | c1742a9193c88e9776596b2bdcfa034bf0649fc1 /packages/StatementService/src | |
parent | c39532dfcc98606a290de5070f9a4cbfc4a62901 (diff) |
Always log web link filter verification parameters
This is to support CTS's ability to check that the expected verifications
are indeed being performed by the currently active verifier.
Bug 27482754
Change-Id: Iccb9bd273c7893f04e45bfca0708dcfdde595a3e
Diffstat (limited to 'packages/StatementService/src')
-rw-r--r-- | packages/StatementService/src/com/android/statementservice/IntentFilterVerificationReceiver.java | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/packages/StatementService/src/com/android/statementservice/IntentFilterVerificationReceiver.java b/packages/StatementService/src/com/android/statementservice/IntentFilterVerificationReceiver.java index 57809acc84b1..ba8e7a1d3db3 100644 --- a/packages/StatementService/src/com/android/statementservice/IntentFilterVerificationReceiver.java +++ b/packages/StatementService/src/com/android/statementservice/IntentFilterVerificationReceiver.java @@ -24,6 +24,7 @@ import android.content.pm.PackageManager.NameNotFoundException; import android.os.Bundle; import android.os.Handler; import android.os.ResultReceiver; +import android.text.TextUtils; import android.util.Log; import android.util.Patterns; @@ -90,8 +91,6 @@ public final class IntentFilterVerificationReceiver extends BroadcastReceiver { String packageName = inputExtras.getString( PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_PACKAGE_NAME); - Log.i(TAG, "Verify IntentFilter for " + hosts); - Bundle extras = new Bundle(); extras.putString(DirectStatementService.EXTRA_RELATION, HANDLE_ALL_URLS_RELATION); @@ -103,6 +102,7 @@ public final class IntentFilterVerificationReceiver extends BroadcastReceiver { return; } + ArrayList<String> finalHosts = new ArrayList<String>(hostList.length); try { ArrayList<String> sourceAssets = new ArrayList<String>(); for (String host : hostList) { @@ -111,6 +111,7 @@ public final class IntentFilterVerificationReceiver extends BroadcastReceiver { host = host.substring(2); } sourceAssets.add(createWebAssetString(scheme, host)); + finalHosts.add(host); } extras.putStringArrayList(DirectStatementService.EXTRA_SOURCE_ASSET_DESCRIPTORS, sourceAssets); @@ -131,6 +132,9 @@ public final class IntentFilterVerificationReceiver extends BroadcastReceiver { new IsAssociatedResultReceiver( new Handler(), context.getPackageManager(), verificationId)); + // Required for CTS: log a few details of the validcation operation to be performed + logValidationParametersForCTS(verificationId, scheme, finalHosts, packageName); + serviceIntent.putExtras(extras); context.startService(serviceIntent); } @@ -139,6 +143,15 @@ public final class IntentFilterVerificationReceiver extends BroadcastReceiver { } } + // CTS requirement: logging of the validation parameters in a specific format + private static final String CTS_LOG_FORMAT = + "Verifying IntentFilter. verificationId:%d scheme:\"%s\" hosts:\"%s\" package:\"%s\"."; + private void logValidationParametersForCTS(int verificationId, String scheme, + ArrayList<String> finalHosts, String packageName) { + String hostString = TextUtils.join(" ", finalHosts.toArray()); + Log.i(TAG, String.format(CTS_LOG_FORMAT, verificationId, scheme, hostString, packageName)); + } + private String createAndroidAssetString(Context context, String packageName) throws NameNotFoundException { if (!ANDROID_PACKAGE_NAME_PATTERN.matcher(packageName).matches()) { |