BridgeTestpublic class BridgeTest extends TestCase
Fields Summary |
---|
private Bridge | mBridgethe class being tested | private String | mLayoutXml1Paththe path to the sample layout.xml file | private String | mTextOnlyXmlPath |
Methods Summary |
---|
private com.android.layoutlib.api.IStyleResourceValue | createStyle(java.lang.String styleName, java.lang.String items)Creates a {@link IStyleResourceValue} based on the given values.
StyleResourceValue value = new StyleResourceValue(styleName);
if (items.length % 3 == 0) {
for (int i = 0 ; i < items.length;) {
value.addItem(new ResourceValue(items[i++], items[i++], items[i++]));
}
} else {
throw new IllegalArgumentException("Need a multiple of 3 for the number of strings");
}
return value;
| private void | display(com.android.layoutlib.api.ILayoutResult.ILayoutViewInfo result, java.lang.String offset)
String msg = String.format("%s%s L:%d T:%d R:%d B:%d",
offset,
result.getName(),
result.getLeft(), result.getTop(), result.getRight(), result.getBottom());
System.out.println(msg);
ILayoutViewInfo[] children = result.getChildren();
if (children != null) {
offset += "+-";
for (ILayoutViewInfo child : children) {
display(child, offset);
}
}
| private java.util.Map | getAttributeValues()
Map<String, Map<String, Integer>> attributeValues =
new HashMap<String, Map<String,Integer>>();
// lets create a map for the orientation attribute
Map<String, Integer> attributeMap = new HashMap<String, Integer>();
attributeMap.put("horizontal", Integer.valueOf(0));
attributeMap.put("vertical", Integer.valueOf(1));
attributeValues.put("orientation", attributeMap);
return attributeValues;
| private java.util.Map | getFrameworkResources()
Map<String, Map<String, IResourceValue>> frameworkResources =
new HashMap<String, Map<String, IResourceValue>>();
// create the style map
Map<String, IResourceValue> styleMap = new HashMap<String, IResourceValue>();
frameworkResources.put("style", styleMap);
// create a button style.
IStyleResourceValue style = createStyle("Widget.Button",
"background", "@android:drawable/something",
"focusable", "true",
"clickable", "true",
"textAppearance", "?android:attr/textAppearanceSmallInverse",
"textColor", "?android:attr/textColorBrightInverseNoDisable",
"gravity", "center_vertical|center_horizontal"
);
styleMap.put(style.getName(), style);
// create the parent style of button style
style = createStyle("Widget",
"textAppearance", "?textAppearance");
styleMap.put(style.getName(), style);
// link the buttonStyle info in the default theme.
style = createStyle("Theme",
BridgeConstants.RES_STYLE, "buttonStyle", "@android:style/Widget.Button",
BridgeConstants.RES_STYLE, "textAppearance", "@android:style/TextAppearance",
BridgeConstants.RES_STYLE, "textAppearanceSmallInverse", "@android:style/TextAppearance.Small.Inverse",
BridgeConstants.RES_COLOR, "textColorBrightInverseNoDisable", "@android:color/bright_text_light_nodisable"
);
styleMap.put(style.getName(), style);
// create a dummy drawable to go with it
Map<String, IResourceValue> drawableMap = new HashMap<String, IResourceValue>();
frameworkResources.put("drawable", drawableMap);
// get the 9 patch test location
URL url = this.getClass().getClassLoader().getResource("data/button.9.png");
IResourceValue drawable = new ResourceValue(BridgeConstants.RES_DRAWABLE, "something",
url.getPath());
drawableMap.put(drawable.getName(), drawable);
return frameworkResources;
| private java.util.Map | getProjectResources()
Map<String, Map<String, IResourceValue>> projectResources =
new HashMap<String, Map<String, IResourceValue>>();
// create the style map (even empty there should be one)
Map<String, IResourceValue> styleMap = new HashMap<String, IResourceValue>();
projectResources.put("style", styleMap);
return projectResources;
| protected void | setUp()
super.setUp();
mBridge = new Bridge();
// FIXME: need some fonts somewhere.
mBridge.init(null /* fontOsLocation */, getAttributeValues());
URL url = this.getClass().getClassLoader().getResource("data/layout1.xml");
mLayoutXml1Path = url.getFile();
url = this.getClass().getClassLoader().getResource("data/textonly.xml");
mTextOnlyXmlPath = url.getFile();
| protected void | tearDown()
super.tearDown();
| public void | testComputeLayout()
TestParser parser = new TestParser();
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true);
parser.setInput(new FileReader(new File(mLayoutXml1Path)));
Map<String, Map<String, IResourceValue>> projectResources = getProjectResources();
Map<String, Map<String, IResourceValue>> frameworkResources = getFrameworkResources();
int screenWidth = 320;
int screenHeight = 480;
// FIXME need a dummy font for the tests!
ILayoutResult result = mBridge.computeLayout(parser, new Integer(1) /* projectKey */,
screenWidth, screenHeight,
"Theme", projectResources, frameworkResources, null, null);
display(result.getRootView(), "");
| public void | testTextLayout()
TestParser parser = new TestParser();
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true);
parser.setInput(new FileReader(new File(mTextOnlyXmlPath)));
Map<String, Map<String, IResourceValue>> projectResources = getProjectResources();
Map<String, Map<String, IResourceValue>> frameworkResources = getFrameworkResources();
int screenWidth = 320;
int screenHeight = 480;
// FIXME need a dummy font for the tests!
ILayoutResult result = mBridge.computeLayout(parser, new Integer(1) /* projectKey */,
screenWidth, screenHeight,
"Theme", projectResources, frameworkResources, null, null);
display(result.getRootView(), "");
|
|