blob: a40dfed4323a7379d45a9a768faa7e142a5a9dfa [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 android.util;
import com.android.ide.common.rendering.api.LayoutlibCallback;
import com.android.ide.common.rendering.api.RenderResources;
import com.android.ide.common.rendering.api.ResourceNamespace;
import com.android.ide.common.rendering.api.ResourceNamespace.Resolver;
import com.android.ide.common.rendering.api.ResourceValue;
import com.android.layoutlib.bridge.BridgeConstants;
import com.android.layoutlib.bridge.android.BridgeContext;
import com.android.tools.layoutlib.annotations.NotNull;
import org.junit.Test;
import org.xmlpull.v1.XmlPullParser;
import com.google.common.collect.ImmutableMap;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class BridgeXmlPullAttributesTest {
@NotNull
private static XmlPullParser prepareParser() {
XmlPullParser parser = mock(XmlPullParser.class);
when(parser.getAttributeValue(BridgeConstants.NS_RESOURCES, "layout_width"))
.thenReturn("match_parent");
when(parser.getAttributeName(0)).thenReturn("layout_width");
when(parser.getAttributeNamespace(0)).thenReturn(BridgeConstants.NS_RESOURCES);
// Return every value twice since there is one test using name and other using index
when(parser.getAttributeValue(BridgeConstants.NS_APP_RES_AUTO, "my_custom_attr"))
.thenReturn("a", "a", "b", "b", "invalid", "invalid");
when(parser.getAttributeName(1)).thenReturn("my_custom_attr");
when(parser.getAttributeNamespace(1)).thenReturn(BridgeConstants.NS_APP_RES_AUTO);
return parser;
}
@NotNull
private static BridgeContext prepareContext() {
BridgeContext context = mock(BridgeContext.class);
RenderResources renderResources = new RenderResources() {
@Override
public ResourceValue resolveResValue(ResourceValue value) {
// Simulate behaviour from the actual resolver where a failed resolution will
// return the passed value.
return value;
}
};
when(context.getRenderResources()).thenReturn(renderResources);
LayoutlibCallback callback = mock(LayoutlibCallback.class);
when(callback.getImplicitNamespaces()).thenReturn(Resolver.EMPTY_RESOLVER);
when(context.getLayoutlibCallback()).thenReturn(callback);
return context;
}
private final XmlPullParser parser = prepareParser();
private final BridgeContext context = prepareContext();
private final BridgeXmlPullAttributes attributes = new BridgeXmlPullAttributes(
parser,
context,
ResourceNamespace.RES_AUTO,
attrName -> {
if ("layout_width".equals(attrName)) {
return ImmutableMap.of(
"match_parent", 123);
}
return ImmutableMap.of();
},
(ns, attrName) -> {
if ("my_custom_attr".equals(attrName)) {
return ImmutableMap.of(
"a", 1,
"b", 2
);
}
return ImmutableMap.of();
});
@Test
public void testGetAttributeIntValueForEnums() {
// Test a framework defined enum attribute
assertEquals(123, attributes.getAttributeIntValue(BridgeConstants.NS_RESOURCES,
"layout_width", 500));
assertEquals(123, attributes.getAttributeIntValue(0, 500));
// Test non existing attribute (it should return the default value)
assertEquals(500, attributes.getAttributeIntValue(BridgeConstants.NS_RESOURCES,
"layout_height", 500));
assertEquals(500, attributes.getAttributeIntValue(2, 500));
// Test project defined enum attribute
assertEquals(1, attributes.getAttributeIntValue(BridgeConstants.NS_APP_RES_AUTO,
"my_custom_attr", 500));
assertEquals(1, attributes.getAttributeIntValue(1, 500));
assertEquals(2, attributes.getAttributeIntValue(BridgeConstants.NS_APP_RES_AUTO,
"my_custom_attr", 500));
assertEquals(2, attributes.getAttributeIntValue(1, 500));
// Test an invalid enum
boolean exception = false;
try {
attributes.getAttributeIntValue(BridgeConstants.NS_APP_RES_AUTO, "my_custom_attr", 500);
} catch(NumberFormatException e) {
exception = true;
}
assertTrue(exception);
exception = false;
try {
attributes.getAttributeIntValue(1, 500);
} catch(NumberFormatException e) {
exception = true;
}
assertTrue(exception);
// Test non existing project attribute
assertEquals(500, attributes.getAttributeIntValue(BridgeConstants.NS_APP_RES_AUTO,
"my_other_attr", 500));
}
@Test
public void testNotExistingAttributes() {
assertEquals(501, attributes.getAttributeUnsignedIntValue(BridgeConstants.NS_APP_RES_AUTO,
"my_other_attr", 501));
assertEquals(502, attributes.getAttributeResourceValue(BridgeConstants.NS_APP_RES_AUTO,
"my_other_attr", 502));
}
}