blob: ba39c2b6780b556ec77a1b2dc5b3a9426d0fcfd8 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.flex.compiler.internal.codegen.mxml;
import org.apache.flex.compiler.internal.test.MXMLTestBase;
import org.apache.flex.compiler.tree.mxml.IMXMLPropertySpecifierNode;
import org.junit.Test;
public class TestMXMLNodes extends MXMLTestBase
{
@Test
public void testSimpleNode()
{
String code = "<s:Button />";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Button></Button>");
}
@Test
public void testSimpleNodeWithId()
{
String code = "<s:Button id=\"myBtn\"/>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Button id=\"myBtn\"></Button>");
}
@Test
public void testSimpleNodeWithAttribute()
{
String code = "<s:Button label=\"Click me\" />";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Button label=\"Click me\"></Button>");
}
@Test
public void testSimpleNodeWithInnerText()
{
String code = "<s:Button>Click me</s:Button>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Button label=\"Click me\"></Button>");
}
@Test
public void testAnotherSimpleNodeWithInnerText()
{
String code = "<s:Label>Hello World!</s:Label>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Label text=\"Hello World!\"></Label>");
}
@Test
public void testSimpleNodeWithMultipleAttributes()
{
String code = "<s:Button visible=\"false\" x=\"100\" width=\"1.5\" label=\"Click me ;-)\" color=\"0xFF0000\"/>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Button visible=\"false\" x=\"100\" width=\"1.5\" label=\"Click me ;-)\" color=\"16711680\"></Button>");
}
@Test
public void testNodeWithChild()
{
String code = "<s:Group><s:RadioButton /></s:Group>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Group><RadioButton></RadioButton></Group>");
}
@Test
public void testNodeWithChildAndAttribute()
{
String code = "<s:Group id=\"myGrp\"><s:RadioButton /></s:Group>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Group id=\"myGrp\"><RadioButton></RadioButton></Group>");
}
@Test
public void testNodeWithNestedChildren()
{
String code = "<s:Group><s:Group><s:Group>" + "<s:RadioButton />"
+ "</s:Group></s:Group></s:Group>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Group><Group><Group><RadioButton></RadioButton></Group></Group></Group>");
}
@Test
public void testNodeWithNestedChildrenAndAttribute()
{
String code = "<s:Group><s:Group><s:Group>"
+ "<s:RadioButton id=\"myRB\"/>"
+ "</s:Group></s:Group></s:Group>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Group><Group><Group><RadioButton id=\"myRB\"></RadioButton></Group></Group></Group>");
}
@Test
public void testNodeWithNestedChildrenAndInnerText()
{
String code = "<s:Group><s:Group><s:Group>"
+ "<s:Button>Click me</s:Button>"
+ "</s:Group></s:Group></s:Group>";
IMXMLPropertySpecifierNode node = (IMXMLPropertySpecifierNode) getNode(
code, IMXMLPropertySpecifierNode.class,
MXMLTestBase.WRAP_LEVEL_DOCUMENT);
mxmlBlockWalker.visitPropertySpecifier(node);
assertOut("<Group><Group><Group><Button label=\"Click me\"></Button></Group></Group></Group>");
}
}