blob: fbfe6b8ab8f552cfa3170c1515add1dc73e18b5d [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.IMXMLFileNode;
import org.junit.Test;
public class TestMXMLApplication extends MXMLTestBase
{
@Test
public void testBasicApp()
{
String code = ""
+ "<s:Application xmlns:s=\"library://ns.adobe.com/flex/spark\">"
+ "</s:Application>";
IMXMLFileNode node = compileMXML(code);
mxmlBlockWalker.visitFile(node);
assertOut("<Application>\n\t\n</Application>");
}
@Test
public void testBasicAppWithOneComponent()
{
String code = ""
+ "<s:Application xmlns:s=\"library://ns.adobe.com/flex/spark\">"
+ " <s:Button id=\"myBtn\" label=\"Hello world\"></s:Button>"
+ "</s:Application>";
IMXMLFileNode node = compileMXML(code);
mxmlBlockWalker.visitFile(node);
assertOut("<Application>\n\t<Button id=\"myBtn\" label=\"Hello world\"></Button>\n</Application>");
}
@Test
public void testBasicAppWithTwoComponents()
{
String code = ""
+ "<s:Application xmlns:s=\"library://ns.adobe.com/flex/spark\">"
+ " <s:Label id=\"myLbl\" text=\"Bye bye\"></s:Label>"
+ " <s:Button id=\"myBtn\" label=\"Hello world\"></s:Button>"
+ "</s:Application>";
IMXMLFileNode node = compileMXML(code);
mxmlBlockWalker.visitFile(node);
assertOut("<Application>\n\t<Label id=\"myLbl\" text=\"Bye bye\"></Label>\n\t<Button id=\"myBtn\" label=\"Hello world\"></Button>\n</Application>");
}
@Test
public void testBasicAppWithSimpleScript()
{
String code = ""
+ "<s:Application xmlns:fx=\"http://ns.adobe.com/mxml/2009\" xmlns:s=\"library://ns.adobe.com/flex/spark\">"
+ " <fx:Script><![CDATA["
+ " private const GREETING:String = \"Hello world!\""
+ " ]]></fx:Script>" + "</s:Application>";
IMXMLFileNode node = compileMXML(code);
mxmlBlockWalker.visitFile(node);
assertOut("<Application>\n\t<script><![CDATA[\n\t\tprivate var GREETING:String = \"Hello world!\";\n\t]]></script>\n</Application>");
}
@Test
public void testDefaultApp()
{
String code = ""
+ "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
+ "<s:Application xmlns:fx=\"http://ns.adobe.com/mxml/2009\""
+ " xmlns:s=\"library://ns.adobe.com/flex/spark\" "
+ " xmlns:mx=\"library://ns.adobe.com/flex/mx\" "
+ " minWidth=\"955\" minHeight=\"600\">"
+ " <fx:Declarations>"
+ " <!-- Place non-visual elements (e.g., services, value objects) here -->"
+ " </fx:Declarations>" + "</s:Application>";
IMXMLFileNode node = compileMXML(code);
mxmlBlockWalker.visitFile(node);
assertOut("<Application minWidth=\"955\" minHeight=\"600\">\n\t\n</Application>");
}
}