You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2012/12/01 08:35:39 UTC

svn commit: r1415939 - in /incubator/flex/sdk/branches/develop/mustella/tests: ./ apollo/FileList/properties/ apollo/WindowedApplication/Styles/ apollo/WindowedApplication/Styles/baselines/

Author: aharui
Date: Sat Dec  1 07:35:38 2012
New Revision: 1415939

URL: http://svn.apache.org/viewvc?rev=1415939&view=rev
Log:
Fix apollo tests on Windows

Modified:
    incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListMacAIR.txt
    incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListWinAIR.txt
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/FileList/properties/FileList_properties_tester.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/AIR_WindowedApplication_ButtonStyles.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/closeButtonStyleName.png
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/maximizeButtonStyleName.png
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/minimizeButtonStyleName.png
    incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/restoreButtonStyleName.png

Modified: incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListMacAIR.txt
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListMacAIR.txt?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListMacAIR.txt (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListMacAIR.txt Sat Dec  1 07:35:38 2012
@@ -11,6 +11,7 @@ Application/Application_SparkSkin/Proper
 Application/Application_SparkSkin/Properties/ContentSizedConstraints_Application$constraintColumn_contentSized_mxml_noWidthOnComponent,
 Application/Application_SparkSkin/Properties/ContentSizedConstraints_Application$constraintRow_contentSized_mxml_noHeightOnComponent,
 Application/Application_SparkSkin/Properties/PercentConstraints_Application$constraintRows_percentage_changeRow2AtRuntime,
+apollo/FileList/properties/FileList_properties_tester$FileSystemList_Property_directory_set2_win,
 apollo/FlexNativeMenu/Properties/FNM_MnemonicsKeys_Tester$FlexNativeMenu_mnemonicIndexFunction_properties,
 apollo/FlexNativeMenu/Properties/FNM_MnemonicsKeys_Tester$FlexNativeMenu_mnemonicIndexFunction_submenu_properties,
 apollo/FlexNativeMenu/Properties/FNM_MnemonicsKeys_Tester$FlexNativeMenu_mnemonicIndexField_properties,

Modified: incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListWinAIR.txt
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListWinAIR.txt?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListWinAIR.txt (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/ExcludeListWinAIR.txt Sat Dec  1 07:35:38 2012
@@ -11,6 +11,7 @@ Application/Application_SparkSkin/Proper
 Application/Application_SparkSkin/Properties/ContentSizedConstraints_Application$constraintColumn_contentSized_mxml_noWidthOnComponent,
 Application/Application_SparkSkin/Properties/ContentSizedConstraints_Application$constraintRow_contentSized_mxml_noHeightOnComponent,
 Application/Application_SparkSkin/Properties/PercentConstraints_Application$constraintRows_percentage_changeRow2AtRuntime,
+apollo/FileList/properties/FileList_properties_tester$FileSystemList_Property_directory_set2_mac,
 apollo/Window/Properties/Window_properties_tester$Window_properties_minHeight_default_mac,
 apollo/Window/Properties/Window_properties_tester_Spark$Window_properties_minHeight_default_mac,
 apollo/WindowedApplication/Properties/AIR_WindowedApplication_Properties$Window_Property_height_negative_mac,

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/FileList/properties/FileList_properties_tester.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/FileList/properties/FileList_properties_tester.mxml?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/apollo/FileList/properties/FileList_properties_tester.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/apollo/FileList/properties/FileList_properties_tester.mxml Sat Dec  1 07:35:38 2012
@@ -222,7 +222,7 @@
 			</body>
 		</TestCase>
 			
-		<TestCase testID="FileSystemList_Property_directory_set" keywords="[directory, FileSystemList]">
+		<TestCase testID="FileSystemList_Property_directory_set2_mac" keywords="[directory, FileSystemList]">
 			<setup>
 				<RunCode code="whichOS()"/>
 				<ResetComponent target="myFileSystemList" className="mx.controls::FileSystemList" waitEvent="updateComplete" waitTarget="myFileSystemList"/> 
@@ -232,6 +232,16 @@
 				<AssertMethodValue target="myFileSystemList" method="value=checkcurrentpath()" value="System"/>
 			</body>
 		</TestCase>
+		<TestCase testID="FileSystemList_Property_directory_set2_win" keywords="[directory, FileSystemList]">
+			<setup>
+				<RunCode code="whichOS()"/>
+				<ResetComponent target="myFileSystemList" className="mx.controls::FileSystemList" waitEvent="updateComplete" waitTarget="myFileSystemList"/> 
+				<RunCode code="setDir()"/>
+			</setup>
+			<body>
+				<AssertMethodValue target="myFileSystemList" method="value=checkcurrentpath()" value="windows"/>
+			</body>
+		</TestCase>
 
 		<TestCase testID="FileSystemList_Property_enumerationMode_Default" keywords="[enumerationMode, FileSystemList]">
 			<setup>

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/AIR_WindowedApplication_ButtonStyles.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/AIR_WindowedApplication_ButtonStyles.mxml?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/AIR_WindowedApplication_ButtonStyles.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/AIR_WindowedApplication_ButtonStyles.mxml Sat Dec  1 07:35:38 2012
@@ -64,7 +64,7 @@
 	public var closeBtn:Button;
 
 	[Bindable]
-	[Embed(source="../../../../Assets/Images/redrect.jpg")]
+	[Embed(source="../../../../Assets/Images/redrect.png")]
 	public var extraButtonSkin:Class;
 
 	public function setButtons():void

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/closeButtonStyleName.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/closeButtonStyleName.png?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/maximizeButtonStyleName.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/maximizeButtonStyleName.png?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/minimizeButtonStyleName.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/minimizeButtonStyleName.png?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/restoreButtonStyleName.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/apollo/WindowedApplication/Styles/baselines/restoreButtonStyleName.png?rev=1415939&r1=1415938&r2=1415939&view=diff
==============================================================================
Binary files - no diff available.