Search in sources :

Example 11 with ManifestDigest

use of android.content.pm.ManifestDigest in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testEquals_OriginatingUri_Failure.

public void testEquals_OriginatingUri_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse("http://a.different.uri/"), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest(DIGEST_BYTES));
    assertFalse(params1.equals(params2));
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 12 with ManifestDigest

use of android.content.pm.ManifestDigest in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testHashCode_InstallerUid_Failure.

public void testHashCode_InstallerUid_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest("a different digest".getBytes()));
    params2.setInstallerUid(INSTALLER_UID);
    assertFalse(params1.hashCode() == params2.hashCode());
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 13 with ManifestDigest

use of android.content.pm.ManifestDigest in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testEquals_ManifestDigest_Failure.

public void testEquals_ManifestDigest_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest("a different digest".getBytes()));
    assertFalse(params1.equals(params2));
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 14 with ManifestDigest

use of android.content.pm.ManifestDigest in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testHashCode_Success.

public void testHashCode_Success() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest(DIGEST_BYTES));
    assertEquals(params1.hashCode(), params2.hashCode());
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Aggregations

ManifestDigest (android.content.pm.ManifestDigest)14 VerificationParams (android.content.pm.VerificationParams)14