Merge "Don't load app restriction from saved files in test" into tm-dev

This commit is contained in:
Jing Ji 2022-04-02 04:40:17 +00:00 committed by Android (Google) Code Review
commit a496007df5
2 changed files with 16 additions and 5 deletions

View File

@ -1439,6 +1439,7 @@ public final class AppRestrictionController {
refreshAppRestrictionLevelForUser(userId, REASON_MAIN_FORCED_BY_USER,
REASON_SUB_FORCED_USER_FLAG_INTERACTION);
}
if (!mInjector.isTest()) {
// Load the previously saved levels and update the current levels if needed.
mRestrictionSettings.scheduleLoadFromXml();
// Also save the current levels right away.
@ -1446,6 +1447,7 @@ public final class AppRestrictionController {
mRestrictionSettings.schedulePersistToXml(userId);
}
}
}
private void initSystemModuleNames() {
final PackageManager pm = mInjector.getPackageManager();
@ -2995,6 +2997,10 @@ public final class AppRestrictionController {
@CurrentTimeMillisLong long currentTimeMillis() {
return System.currentTimeMillis();
}
boolean isTest() {
return false;
}
}
private void registerForSystemBroadcasts() {

View File

@ -3056,6 +3056,11 @@ public final class BackgroundRestrictionTest {
long currentTimeMillis() {
return mCurrentTimeMillis;
}
@Override
boolean isTest() {
return true;
}
}
private class TestBaseTrackerInjector<T extends BaseAppStatePolicy>