Auto grant permissions for Espresso UI Testing

我是研究僧i 提交于 2020-01-15 03:22:07

问题


I'm trying to avoid having to manually grant permissions on every single UI test built with Espresso.

I have tried:

 @Rule
    public GrantPermissionRule permissionRule = GrantPermissionRule.grant(
            android.Manifest.permission.INTERNET,
            android.Manifest.permission.READ_PHONE_STATE,
            android.Manifest.permission.ACCESS_NETWORK_STATE,
            android.Manifest.permission.ACCESS_FINE_LOCATION.....)

and

 @Before
    public void grantPhonePermission()
        {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
                {
                    getInstrumentation().getUiAutomation().executeShellCommand(
                            "pm grant " + getTargetContext().getPackageName()
                                    + " android.permission.ACCESS_FINE_LOCATION");
                }
        }

And here's most of my gradle file :

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '26.0.2'
defaultConfig {
    minSdkVersion 14
    targetSdkVersion 23
    testInstrumentationRunner 
'android.support.test.runner.AndroidJUnitRunner'
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.txt'
        debuggable false
        jniDebuggable false
        buildConfigField "boolean", "UseProduction", "true"
    }
    qa {
        initWith debug
        debuggable true
        applicationIdSuffix ".qa" 
        buildConfigField "boolean", "UseProduction", "false"
    }
    debug {
        debuggable true
        testCoverageEnabled = false
        buildConfigField "boolean", "UseProduction", "true"
    }

}

flavorDimensions "standard"

productFlavors {
    standard
            {
                buildConfigField "boolean", "ChinaBuild", "false"
                buildConfigField "boolean", "YTOBuild", "false"
            }
   ....
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
}
sourceSets {
    main {
        java.srcDirs = ['src/main/java']
    }
}


dependencies {
implementation 'com.android.support:support-v4:24.2.1'
implementation 'com.android.support:appcompat-v7:24.2.1'
implementation 'com.android.support:design:24.2.1'
implementation 'com.android.support:recyclerview-v7:24.2.1'
implementation 'com.android.support:percent:24.2.1'
implementation 'com.google.firebase:firebase-messaging:10.0.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso- 
core:3.0.2'
androidTestImplementation 'junit:junit:4.12'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
androidTestImplementation 'org.mockito:mockito-core:2.+'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
}

None of it works. As you can see I'm targeting API 23 so GrantPermissionRule should work. Any ideas? I've been stuck on this for 3 days. :(

It looks like my post is mostly code, I should add more details... But not sure what more needs to be said.


回答1:


What you're doing is almost correct except that you should "sleep" a bit after executing the shell command. That's what your method body could look like:

    ArrayList<String> permissions = new ArrayList<>();
    permissions.add(Manifest.permission.ACCESS_FINE_LOCATION);
    //add here your other permissions

    for (int i = 0; i < permissions.size(); i++) {
        String command = String.format("pm grant %s %s", getTargetContext().getPackageName(), permissions.get(i));
        getInstrumentation().getUiAutomation().executeShellCommand(command);
        // wait a bit until the command is finished
        SystemClock.sleep(1000);
    }


来源:https://stackoverflow.com/questions/50856546/auto-grant-permissions-for-espresso-ui-testing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!