blob: c055eee0a2978bfc2a02e9ea65daf3a58aa84b78 [file] [log] [blame]
/*
* Copyright (C) 2017 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 androidx.appcompat.widget;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import android.content.Context;
import android.os.Build;
import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;
import android.text.method.SingleLineTransformationMethod;
import android.util.AttributeSet;
import android.widget.LinearLayout;
import androidx.annotation.Nullable;
import androidx.appcompat.test.R;
import androidx.core.widget.TextViewCompat;
import org.junit.Test;
import org.junit.runner.RunWith;
@MediumTest
@RunWith(AndroidJUnit4.class)
public class AppCompatTextViewAutoSizeTest extends
AppCompatBaseAutoSizeTest<AppCompatTextViewAutoSizeActivity, AppCompatTextView> {
public AppCompatTextViewAutoSizeTest() {
super(AppCompatTextViewAutoSizeActivity.class);
}
@Override
protected AppCompatTextView getNewAutoSizeViewInstance() {
return new AppCompatTextView(mActivity);
}
@Test
public void testAutoSize_notSupportedByEditText() throws Throwable {
final AppCompatEditText autoSizeEditText = mActivity.findViewById(
R.id.edittext_autosize_uniform);
// Do not force exact height only.
final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
200,
LinearLayout.LayoutParams.WRAP_CONTENT);
mActivityTestRule.runOnUiThread(new Runnable() {
@Override
public void run() {
autoSizeEditText.setLayoutParams(layoutParams);
}
});
mInstrumentation.waitForIdleSync();
final float initialTextSize = autoSizeEditText.getTextSize();
mActivityTestRule.runOnUiThread(new Runnable() {
@Override
public void run() {
autoSizeEditText.setHeight(autoSizeEditText.getHeight() / 4);
}
});
mInstrumentation.waitForIdleSync();
assertEquals(initialTextSize, autoSizeEditText.getTextSize(), 0f);
}
@Test
public void testAutoSizeWithMaxLines_shouldNotThrowException() throws Throwable {
// the layout contains an instance of CustomTextViewWithTransformationMethod
final AppCompatTextView textView = (AppCompatTextView) mActivity
.getLayoutInflater().inflate(R.layout.textview_autosize_maxlines, null);
assertTrue(textView instanceof CustomTextViewWithTransformationMethod);
// Method added in API 16.
if (Build.VERSION.SDK_INT >= 16) {
assertEquals(1, textView.getMaxLines());
}
assertEquals(TextViewCompat.AUTO_SIZE_TEXT_TYPE_UNIFORM, textView.getAutoSizeTextType());
assertTrue(textView.getTransformationMethod() instanceof SingleLineTransformationMethod);
}
public static class CustomTextViewWithTransformationMethod extends AppCompatTextView {
public CustomTextViewWithTransformationMethod(Context context) {
super(context);
init();
}
public CustomTextViewWithTransformationMethod(Context context,
@Nullable AttributeSet attrs) {
super(context, attrs);
init();
}
public CustomTextViewWithTransformationMethod(Context context,
@Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
setTransformationMethod(new SingleLineTransformationMethod());
}
}
}