blob: e6db220f60fd0c102ca464a366eb8c32cb23bc60 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
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.
-->
<UnitTester testDir="apollo/spark/components/WindowedApplication/properties/" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" testSWF="wa_properties_heightwidth_minmaxsize.mxml">
<!-- this set of lines form a template that must be in each unit test -->
<mx:Script>
<![CDATA[
public static function init(o:DisplayObject):void
{
}
]]>
</mx:Script>
<mx:Metadata>
<![CDATA[
[Mixin]
]]>
</mx:Metadata>
<!-- end of set of lines that must be in each unit test -->
<mx:Script>
<![CDATA[
import flash.system.Capabilities;
import mx.core.FlexGlobals;
import spark.components.*;
import spark.skins.spark.*;
]]>
</mx:Script>
<testCases>
<!--
========================================================
Test height
Note: minSize and maxSize are:
<minSize>130 130</minSize>
<maxSize>750 650</maxSize>
========================================================
-->
<TestCase testID="height_minSize_test1_SparkChromeWindowedApplicationSkin " keywords="[WindowedApplication,height]" description="Height less than AIR XML file's minSize height" >
<setup>
<RunCode code="FlexGlobals.topLevelApplication.doReset()" waitTarget="" waitEvent="resetComplete" />
</setup>
<body>
<SetStyle target="" styleName="skinClass" valueExpression="value = SparkChromeWindowedApplicationSkin " waitEvent="updateComplete" />
<SetProperty target="" propertyName="height" value="50" waitEvent="resize" />
<AssertPropertyValue target="" propertyName="height" value="130" />
</body>
</TestCase>
<TestCase testID="height_minSize_test1_windowedApplicationSkin" keywords="[WindowedApplication,height]" description="Height less than AIR XML file's minSize height" >
<setup>
<RunCode code="FlexGlobals.topLevelApplication.doReset()" waitTarget="" waitEvent="resetComplete" />
</setup>
<body>
<SetProperty target="" propertyName="height" value="50" waitEvent="resize" />
<AssertPropertyValue target="" propertyName="height" value="130" />
</body>
</TestCase>
<TestCase testID="height_maxSize_test2_SparkChromeWindowedApplicationSkin " keywords="[WindowedApplication,height]" description="Height more than AIR XML file's maxSize height" >
<setup>
<RunCode code="FlexGlobals.topLevelApplication.doReset()" waitTarget="" waitEvent="resetComplete" />
</setup>
<body>
<SetStyle target="" styleName="skinClass" valueExpression="value = SparkChromeWindowedApplicationSkin " waitEvent="updateComplete" />
<SetProperty target="" propertyName="height" value="700" waitEvent="resize" />
<AssertPropertyValue target="" propertyName="height" value="650" />
</body>
</TestCase>
<TestCase testID="height_maxSize_test2_windowedApplication" keywords="[WindowedApplication,height]" description="Height more than AIR XML file's maxSize height" >
<setup>
<RunCode code="FlexGlobals.topLevelApplication.doReset()" waitTarget="" waitEvent="resetComplete" />
</setup>
<body>
<SetProperty target="" propertyName="height" value="700" waitEvent="resize" />
<AssertPropertyValue target="" propertyName="height" value="650" />
</body>
</TestCase>
</testCases>
</UnitTester>