cketcham 432b46cc83 Add shapes theming infrastructure.
Add shapeAppearance and shapeAppearanceOverlay attributes. These attributes combine to support shapes theming. ShapeAppearance is modeled after TextAppearance. A shapeAppearance attribute contains a style reference that is meant to be defined at the theme level. Since changing anything defined in the shapeAppearance would clobber everything else in the ShapeAppearance, the shapeAppearanceOverlay attribute is provided for clients to modify the shapeAppearance.

PiperOrigin-RevId: 215242636
2018-10-02 14:21:40 -04:00

175 lines
7.1 KiB
Java

/*
* Copyright 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.google.android.material.shape;
import com.google.android.material.R;
import static com.google.common.truth.Truth.assertThat;
import android.util.AttributeSet;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.Robolectric.AttributeSetBuilder;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.annotation.internal.DoNotInstrument;
/** Tests for {@link com.google.android.material.shape.ShapeAppearanceModel}. */
@RunWith(RobolectricTestRunner.class)
@DoNotInstrument
public class ShapeAppearanceModelTest {
private static final float DEFAULT_CORNER_SIZE = 10;
private static final float LARGE_CORNER_SIZE = 20;
private ShapeAppearanceModel shapeAppearance;
@Before
public void themeApplicationContext() {
RuntimeEnvironment.application.setTheme(R.style.Theme_AppCompat);
}
@Test
public void noOverlay_hasDefaultCorners() {
AttributeSet attributes = buildStyleAttributeSet().build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertCornersInstanceOf(RoundedCornerTreatment.class);
assertCornerSize(DEFAULT_CORNER_SIZE);
}
@Test
public void cornerFamilyCutOverlay_hasCutCorners() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(R.attr.shapeAppearanceOverlay, "@style/ShapeAppearanceOverlay.Cut")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertCornersInstanceOf(CutCornerTreatment.class);
assertCornerSize(DEFAULT_CORNER_SIZE);
}
@Test
public void topLeftCornerFamilyCutOverlay_hasTopLeftCutCorner() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(R.attr.shapeAppearanceOverlay, "@style/ShapeAppearanceOverlay.TopLeftCut")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertThat(shapeAppearance.getTopLeftCorner()).isInstanceOf(CutCornerTreatment.class);
assertThat(shapeAppearance.getTopRightCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getBottomLeftCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getBottomRightCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertCornerSize(DEFAULT_CORNER_SIZE);
}
@Test
public void bottomRightCornerFamilyCutOverlay_hasBottomRightCutCorner() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(
R.attr.shapeAppearanceOverlay, "@style/ShapeAppearanceOverlay.BottomRightCut")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertThat(shapeAppearance.getTopLeftCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getTopRightCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getBottomLeftCorner()).isInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getBottomRightCorner()).isInstanceOf(CutCornerTreatment.class);
assertCornerSize(DEFAULT_CORNER_SIZE);
}
@Test
public void cornerSizeOverlay_hasCorrectlySizedCorners() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(
R.attr.shapeAppearanceOverlay, "@style/ShapeAppearanceOverlay.DifferentCornerSize")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertCornersInstanceOf(RoundedCornerTreatment.class);
assertCornerSize(LARGE_CORNER_SIZE);
}
@Test
public void topRightCornerSizeOverlay_hasCorrectlySizedTopRightCorner() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(
R.attr.shapeAppearanceOverlay,
"@style/ShapeAppearanceOverlay.TopRightDifferentCornerSize")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertCornersInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getTopLeftCorner().getCornerSize()).isEqualTo(DEFAULT_CORNER_SIZE);
assertThat(shapeAppearance.getTopRightCorner().getCornerSize()).isEqualTo(LARGE_CORNER_SIZE);
assertThat(shapeAppearance.getBottomLeftCorner().getCornerSize())
.isEqualTo(DEFAULT_CORNER_SIZE);
assertThat(shapeAppearance.getBottomRightCorner().getCornerSize())
.isEqualTo(DEFAULT_CORNER_SIZE);
}
@Test
public void bottomLeftCornerSizeOverlay_hasCorrectlySizedBottomLeftCorner() {
AttributeSet attributes =
buildStyleAttributeSet()
.addAttribute(
R.attr.shapeAppearanceOverlay,
"@style/ShapeAppearanceOverlay.BottomLeftDifferentCornerSize")
.build();
shapeAppearance = new ShapeAppearanceModel(RuntimeEnvironment.application, attributes, 0, 0);
assertCornersInstanceOf(RoundedCornerTreatment.class);
assertThat(shapeAppearance.getTopLeftCorner().getCornerSize()).isEqualTo(DEFAULT_CORNER_SIZE);
assertThat(shapeAppearance.getTopRightCorner().getCornerSize()).isEqualTo(DEFAULT_CORNER_SIZE);
assertThat(shapeAppearance.getBottomLeftCorner().getCornerSize()).isEqualTo(LARGE_CORNER_SIZE);
assertThat(shapeAppearance.getBottomRightCorner().getCornerSize())
.isEqualTo(DEFAULT_CORNER_SIZE);
}
private AttributeSetBuilder buildStyleAttributeSet() {
return Robolectric.buildAttributeSet()
.addAttribute(R.attr.shapeAppearance, "@style/ShapeAppearance.MaterialComponents.Test");
}
private void assertCornersInstanceOf(Class<? extends CornerTreatment> clazz) {
assertThat(shapeAppearance.getTopLeftCorner()).isInstanceOf(clazz);
assertThat(shapeAppearance.getTopRightCorner()).isInstanceOf(clazz);
assertThat(shapeAppearance.getBottomLeftCorner()).isInstanceOf(clazz);
assertThat(shapeAppearance.getBottomRightCorner()).isInstanceOf(clazz);
}
private void assertCornerSize(float cornerSize) {
assertThat(shapeAppearance.getTopLeftCorner().getCornerSize()).isEqualTo(cornerSize);
assertThat(shapeAppearance.getTopRightCorner().getCornerSize()).isEqualTo(cornerSize);
assertThat(shapeAppearance.getBottomLeftCorner().getCornerSize()).isEqualTo(cornerSize);
assertThat(shapeAppearance.getBottomRightCorner().getCornerSize()).isEqualTo(cornerSize);
}
}