mirror of
https://github.com/reactos/ahk_tests.git
synced 2024-11-27 13:30:39 +00:00
86d8a0b5f4
Add debug note. svn path=/trunk/ahk_tests/; revision=1862
94 lines
4.1 KiB
AutoHotkey
94 lines
4.1 KiB
AutoHotkey
/*
|
|
* Designed for Opera 9.64
|
|
* Copyright (C) 2012 Edijs Kolesnikovics
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
TestName = 4.FlashPlayer
|
|
szURL = http://beastybombs.com/play.php
|
|
|
|
; Test if can open flash
|
|
TestsTotal++
|
|
if not bContinue
|
|
TestsFailed("We failed somewhere in prepare.ahk")
|
|
else
|
|
{
|
|
IfWinNotActive, Speed Dial - Opera
|
|
TestsFailed("Window 'Speed Dial - Opera' is not active window.")
|
|
else
|
|
{
|
|
IfNotExist, %A_WinDir%\System32\Macromed\Flash\*Plugin.exe ; Check if file pattern exist
|
|
TestsFailed("Can NOT find any file in '" A_WinDir "\System32\Macromed\Flash' that matches file pattern '*Plugin.exe'.")
|
|
else
|
|
{
|
|
TestsInfo("Found file that maches '*Plugin.exe' file pattern in '" A_WinDir "\System32\Macromed\Flash\'.")
|
|
SendInput, {CTRLDOWN}l{CTRLUP} ; Toggle address bar
|
|
SendInput, %szURL% ; Enter address
|
|
clipboard = ; Empty the clipboard
|
|
Send, ^a ; Ctrl+A
|
|
Send, ^c ; Ctrl+C
|
|
ClipWait, 2
|
|
if ErrorLevel
|
|
TestsFailed(" The attempt to copy text onto the clipboard failed.")
|
|
else
|
|
{
|
|
if clipboard <> %szURL%
|
|
TestsFailed("Clipboard and URL contents are not the same (expected '" szURL "', got '" clipboard "'). Ctrl+L doesnt work?")
|
|
else
|
|
{
|
|
SendInput, {ENTER} ; go to specified address
|
|
iTimeOut := 30
|
|
while iTimeOut > 0
|
|
{
|
|
IfWinActive, Blank page - Opera
|
|
{
|
|
WinWaitActive, Beasty Bombs - Cats & Dogs Fights - Play - Opera,,1
|
|
iTimeOut--
|
|
}
|
|
else
|
|
break ; exit the loop if something poped-up
|
|
}
|
|
|
|
WinWaitActive, Beasty Bombs - Cats & Dogs Fights - Play - Opera,,1
|
|
if ErrorLevel
|
|
TestsFailed("Window 'Beasty Bombs - Cats & Dogs Fights - Play - Opera' failed to appear (iTimeOut=" iTimeOut ").")
|
|
else
|
|
{
|
|
iLoadTime := 4 ; Let it to load more, maybe it will crash
|
|
while iLoadTime > 0
|
|
{
|
|
Sleep, 1000
|
|
iLoadTime--
|
|
}
|
|
|
|
IfWinNotActive, Beasty Bombs - Cats & Dogs Fights - Play - Opera
|
|
TestsFailed("We loaded 'Beasty Bombs - Cats & Dogs Fights - Play - Opera' window, slept for a while and window is not active anymore.")
|
|
else
|
|
{
|
|
Process, Close, %ProcessExe%
|
|
Process, WaitClose, %ProcessExe%, 4
|
|
if ErrorLevel
|
|
TestsFailed("Process '" ProcessExe "' failed to close after opening website.")
|
|
else
|
|
TestsOK("Window caption is 'Beasty Bombs - Cats & Dogs Fights - Play - Opera' that means no crash while opening Flash Game (iTimeOut=" iTimeOut ").")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|