398 lines
15 KiB
Java
398 lines
15 KiB
Java
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License
|
|
*/
|
|
|
|
package com.android.settings.datausage;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.graphics.Typeface;
|
|
import android.support.v7.preference.PreferenceViewHolder;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.ProgressBar;
|
|
import android.widget.TextView;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResourcesImpl;
|
|
import com.android.settingslib.Utils;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(shadows = SettingsShadowResourcesImpl.class)
|
|
public class DataUsageSummaryPreferenceTest {
|
|
|
|
private static final long CYCLE_DURATION_MILLIS = 1000000000L;
|
|
private static final long UPDATE_LAG_MILLIS = 10000000L;
|
|
private static final String DUMMY_CARRIER = "z-mobile";
|
|
|
|
private Context mContext;
|
|
private PreferenceViewHolder mHolder;
|
|
private DataUsageSummaryPreference mSummaryPreference;
|
|
private TextView mUsageTitle;
|
|
private TextView mCycleTime;
|
|
private TextView mCarrierInfo;
|
|
private TextView mDataLimits;
|
|
private TextView mDataUsed;
|
|
private TextView mDataRemaining;
|
|
private Button mLaunchButton;
|
|
private LinearLayout mLabelBar;
|
|
private TextView mLabel1;
|
|
private TextView mLabel2;
|
|
private ProgressBar mProgressBar;
|
|
|
|
private long mCycleEnd;
|
|
private long mUpdateTime;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
mContext = RuntimeEnvironment.application;
|
|
mSummaryPreference = new DataUsageSummaryPreference(mContext, null /* attrs */);
|
|
LayoutInflater inflater = LayoutInflater.from(mContext);
|
|
View view = inflater.inflate(mSummaryPreference.getLayoutResource(), null /* root */,
|
|
false /* attachToRoot */);
|
|
|
|
mHolder = PreferenceViewHolder.createInstanceForTests(view);
|
|
|
|
final long now = System.currentTimeMillis();
|
|
mCycleEnd = now + CYCLE_DURATION_MILLIS;
|
|
mUpdateTime = now - UPDATE_LAG_MILLIS;
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withLaunchIntent_launchButtonShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mLaunchButton.getVisibility()).isEqualTo(View.VISIBLE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withoutLaunchIntent_launchButtonNotShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
null /* launchIntent */);
|
|
|
|
bindViewHolder();
|
|
assertThat(mLaunchButton.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withDataPlans_carrierInfoShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getVisibility()).isEqualTo(View.VISIBLE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withNoDataPlans_carrierInfoNotShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTime_shouldFormatDaysCorrectly() {
|
|
int baseUnit = 2;
|
|
int smudge = 6;
|
|
final long updateTime = System.currentTimeMillis()
|
|
- TimeUnit.DAYS.toMillis(baseUnit) - TimeUnit.HOURS.toMillis(smudge);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated by " + DUMMY_CARRIER + " " + baseUnit + "d ago");
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTime_shouldFormatHoursCorrectly() {
|
|
int baseUnit = 2;
|
|
int smudge = 6;
|
|
final long updateTime = System.currentTimeMillis()
|
|
- TimeUnit.HOURS.toMillis(baseUnit) - TimeUnit.MINUTES.toMillis(smudge);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated by " + DUMMY_CARRIER + " " + baseUnit + "h ago");
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTime_shouldFormatMinutesCorrectly() {
|
|
int baseUnit = 2;
|
|
int smudge = 6;
|
|
final long updateTime = System.currentTimeMillis()
|
|
- TimeUnit.MINUTES.toMillis(baseUnit) - TimeUnit.SECONDS.toMillis(smudge);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated by " + DUMMY_CARRIER + " " + baseUnit + "m ago");
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTime_shouldFormatLessThanMinuteCorrectly() {
|
|
final long updateTime = System.currentTimeMillis() - TimeUnit.SECONDS.toMillis(45);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated by " + DUMMY_CARRIER + " just now");
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTimeWithNoCarrier_shouldSayJustNow() {
|
|
final long updateTime = System.currentTimeMillis() - TimeUnit.SECONDS.toMillis(45);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, null /* carrier */,
|
|
1 /* numPlans */, new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated just now");
|
|
}
|
|
|
|
@Test
|
|
public void testCarrierUpdateTimeWithNoCarrier_shouldFormatTime() {
|
|
final long updateTime = System.currentTimeMillis() - TimeUnit.MINUTES.toMillis(2);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, null /* carrier */,
|
|
1 /* numPlans */, new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getText().toString())
|
|
.isEqualTo("Updated 2m ago");
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withRecentCarrierUpdate_doesNotSetCarrierInfoWarningColorAndFont() {
|
|
final long updateTime = System.currentTimeMillis() - TimeUnit.HOURS.toMillis(1);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mCarrierInfo.getCurrentTextColor()).isEqualTo(
|
|
Utils.getColorAttr(mContext, android.R.attr.textColorSecondary));
|
|
assertThat(mCarrierInfo.getTypeface()).isEqualTo(Typeface.SANS_SERIF);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withStaleCarrierUpdate_setsCarrierInfoWarningColorAndFont() {
|
|
final long updateTime = System.currentTimeMillis() - TimeUnit.HOURS.toMillis(7);
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, updateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCarrierInfo.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mCarrierInfo.getCurrentTextColor()).isEqualTo(
|
|
Utils.getColorAttr(mContext, android.R.attr.colorError));
|
|
assertThat(mCarrierInfo.getTypeface()).isEqualTo(
|
|
DataUsageSummaryPreference.SANS_SERIF_MEDIUM);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withNoDataPlans_usageTitleNotShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mUsageTitle.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withMultipleDataPlans_usageTitleShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 2 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mUsageTitle.getVisibility()).isEqualTo(View.VISIBLE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_cycleRemainingTimeIsLessOneDay() {
|
|
// just under one day
|
|
final long cycleEnd = System.currentTimeMillis() + TimeUnit.HOURS.toMillis(23);
|
|
mSummaryPreference.setUsageInfo(cycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCycleTime.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mCycleTime.getText()).isEqualTo(
|
|
mContext.getString(R.string.billing_cycle_less_than_one_day_left));
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_cycleRemainingTimeNegativeDaysLeft_shouldDisplayNoneLeft() {
|
|
final long cycleEnd = System.currentTimeMillis() - 1L;
|
|
mSummaryPreference.setUsageInfo(cycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCycleTime.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mCycleTime.getText()).isEqualTo(
|
|
mContext.getString(R.string.billing_cycle_none_left));
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_cycleRemainingTimeDaysLeft_shouldUsePlurals() {
|
|
final int daysLeft = 3;
|
|
final long cycleEnd = System.currentTimeMillis() + TimeUnit.DAYS.toMillis(daysLeft)
|
|
+ TimeUnit.HOURS.toMillis(1);
|
|
mSummaryPreference.setUsageInfo(cycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
|
|
bindViewHolder();
|
|
assertThat(mCycleTime.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mCycleTime.getText()).isEqualTo(daysLeft + " days left");
|
|
}
|
|
|
|
@Test
|
|
public void testSetLimitInfo_withLimitInfo_dataLimitsShown() {
|
|
final String limitText = "test limit text";
|
|
mSummaryPreference.setLimitInfo(limitText);
|
|
|
|
bindViewHolder();
|
|
assertThat(mDataLimits.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mDataLimits.getText()).isEqualTo(limitText);
|
|
}
|
|
|
|
@Test
|
|
public void testSetLimitInfo_withNullLimitInfo_dataLimitsNotShown() {
|
|
mSummaryPreference.setLimitInfo(null);
|
|
|
|
bindViewHolder();
|
|
assertThat(mDataLimits.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetChartEnabledFalse_hidesLabelBar() {
|
|
setValidLabels();
|
|
mSummaryPreference.setChartEnabled(false);
|
|
|
|
bindViewHolder();
|
|
assertThat(mLabelBar.getVisibility()).isEqualTo(View.GONE);
|
|
assertThat(mProgressBar.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testSetEmptyLabels_hidesLabelBar() {
|
|
mSummaryPreference.setLabels("", "");
|
|
|
|
bindViewHolder();
|
|
assertThat(mLabelBar.getVisibility()).isEqualTo(View.GONE);
|
|
assertThat(mProgressBar.getVisibility()).isEqualTo(View.GONE);
|
|
}
|
|
|
|
@Test
|
|
public void testLabelBar_isVisible_whenLabelsSet() {
|
|
setValidLabels();
|
|
//mChartEnabled defaults to true
|
|
|
|
bindViewHolder();
|
|
assertThat(mLabelBar.getVisibility()).isEqualTo(View.VISIBLE);
|
|
assertThat(mProgressBar.getVisibility()).isEqualTo(View.VISIBLE);
|
|
}
|
|
|
|
|
|
@Test
|
|
public void testSetProgress_updatesProgressBar() {
|
|
setValidLabels();
|
|
mSummaryPreference.setProgress(.5f);
|
|
|
|
bindViewHolder();
|
|
assertThat(mProgressBar.getProgress()).isEqualTo(50);
|
|
}
|
|
|
|
private void setValidLabels() {
|
|
mSummaryPreference.setLabels("0.0 GB", "5.0 GB");
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageAndRemainingInfo_withUsageInfo_dataUsageAndRemainingShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
mSummaryPreference.setUsageNumbers(1000000L, 10000000L, true);
|
|
|
|
bindViewHolder();
|
|
assertThat(mDataUsed.getText().toString()).isEqualTo("1.00 MB used");
|
|
assertThat(mDataRemaining.getText().toString()).isEqualTo("9.00 MB left");
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withDataOverusage() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 1 /* numPlans */,
|
|
new Intent());
|
|
mSummaryPreference.setUsageNumbers(11_000_000L, 10_000_000L, true);
|
|
|
|
bindViewHolder();
|
|
assertThat(mDataUsed.getText().toString()).isEqualTo("11.00 MB used");
|
|
assertThat(mDataRemaining.getText().toString()).isEqualTo("1.00 MB over");
|
|
}
|
|
|
|
@Test
|
|
public void testSetUsageInfo_withUsageInfo_dataUsageShown() {
|
|
mSummaryPreference.setUsageInfo(mCycleEnd, mUpdateTime, DUMMY_CARRIER, 0 /* numPlans */,
|
|
new Intent());
|
|
mSummaryPreference.setUsageNumbers(1000000L, -1L, true);
|
|
|
|
bindViewHolder();
|
|
assertThat(mDataUsed.getText().toString()).isEqualTo("1.00 MB used");
|
|
assertThat(mDataRemaining.getText()).isEqualTo("");
|
|
}
|
|
|
|
private void bindViewHolder() {
|
|
mSummaryPreference.onBindViewHolder(mHolder);
|
|
mUsageTitle = (TextView) mHolder.findViewById(R.id.usage_title);
|
|
mCycleTime = (TextView) mHolder.findViewById(R.id.cycle_left_time);
|
|
mCarrierInfo = (TextView) mHolder.findViewById(R.id.carrier_and_update);
|
|
mDataLimits = (TextView) mHolder.findViewById(R.id.data_limits);
|
|
mDataUsed = (TextView) mHolder.findViewById(R.id.data_usage_view);
|
|
mDataRemaining = (TextView) mHolder.findViewById(R.id.data_remaining_view);
|
|
mLaunchButton = (Button) mHolder.findViewById(R.id.launch_mdp_app_button);
|
|
mLabelBar = (LinearLayout) mHolder.findViewById(R.id.label_bar);
|
|
mLabel1 = (TextView) mHolder.findViewById(R.id.text1);
|
|
mLabel2 = (TextView) mHolder.findViewById(R.id.text2);
|
|
mProgressBar = (ProgressBar) mHolder.findViewById(R.id.determinateBar);
|
|
}
|
|
}
|