Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120837468
TestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
5 KB
Referenced Files
None
Subscribers
None
TestCase.php
View Options
<?php
namespace
Tests\Browser
;
use
PHPUnit\Framework\TestCase
as
PHPUnitTestCase
;
use
Facebook\WebDriver\Chrome\ChromeOptions
;
use
Facebook\WebDriver\Remote\RemoteWebDriver
;
use
Facebook\WebDriver\Remote\DesiredCapabilities
;
use
Laravel\Dusk\Chrome\SupportsChrome
;
use
Laravel\Dusk\Concerns\ProvidesBrowser
;
use
Symfony\Component\Finder\Finder
;
use
Symfony\Component\Process\Process
;
abstract
class
TestCase
extends
PHPUnitTestCase
{
use
ProvidesBrowser
,
SupportsChrome
;
protected
$app
;
protected
static
$phpProcess
;
/**
* Replace Dusk's Browser with our (extended) Browser
*/
protected
function
newBrowser
(
$driver
)
{
return
new
Browser
(
$driver
);
}
/**
* Prepare for Dusk test execution.
*
* @beforeClass
* @return void
*/
public
static
function
prepare
()
{
static
::
startWebServer
();
static
::
startChromeDriver
();
}
/**
* Create the RemoteWebDriver instance.
*
* @return \Facebook\WebDriver\Remote\RemoteWebDriver
*/
protected
function
driver
()
{
$options
=
(
new
ChromeOptions
())->
addArguments
([
'--lang=en_US'
,
'--disable-gpu'
,
'--headless'
,
]);
// For file download handling
$prefs
=
[
'profile.default_content_settings.popups'
=>
0
,
'download.default_directory'
=>
TESTS_DIR
.
'downloads'
,
];
$options
->
setExperimentalOption
(
'prefs'
,
$prefs
);
if
(
getenv
(
'TESTS_MODE'
)
==
'phone'
)
{
// Fake User-Agent string for mobile mode
$ua
=
'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Mobile Safari/537.36'
;
$options
->
setExperimentalOption
(
'mobileEmulation'
,
[
'userAgent'
=>
$ua
]);
$options
->
addArguments
([
'--window-size=375,667'
]);
}
else
if
(
getenv
(
'TESTS_MODE'
)
==
'tablet'
)
{
// Fake User-Agent string for mobile mode
$ua
=
'Mozilla/5.0 (Linux; Android 6.0.1; vivo 1603 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36'
;
$options
->
setExperimentalOption
(
'mobileEmulation'
,
[
'userAgent'
=>
$ua
]);
$options
->
addArguments
([
'--window-size=1024,768'
]);
}
else
{
$options
->
addArguments
([
'--window-size=1280,720'
]);
}
// Make sure downloads dir exists and is empty
if
(!
file_exists
(
TESTS_DIR
.
'downloads'
))
{
mkdir
(
TESTS_DIR
.
'downloads'
,
0777
,
true
);
}
else
{
foreach
(
glob
(
TESTS_DIR
.
'downloads/*'
)
as
$file
)
{
@
unlink
(
$file
);
}
}
return
RemoteWebDriver
::
create
(
'http://localhost:9515'
,
DesiredCapabilities
::
chrome
()->
setCapability
(
ChromeOptions
::
CAPABILITY
,
$options
)
);
}
/**
* Set up the test run
*
* @return void
*/
protected
function
setUp
()
{
parent
::
setUp
();
$this
->
app
=
\rcmail
::
get_instance
();
Browser
::
$baseUrl
=
'http://localhost:8000'
;
Browser
::
$storeScreenshotsAt
=
TESTS_DIR
.
'screenshots'
;
Browser
::
$storeConsoleLogAt
=
TESTS_DIR
.
'console'
;
// This folder must exist in case Browser will try to write logs to it
if
(!
is_dir
(
Browser
::
$storeConsoleLogAt
))
{
mkdir
(
Browser
::
$storeConsoleLogAt
,
0777
,
true
);
}
// Purge screenshots from the last test run
$pattern
=
sprintf
(
'failure-%s_%s-*'
,
str_replace
(
"
\\
"
,
'_'
,
get_class
(
$this
)),
$this
->
getName
(
false
)
);
try
{
$files
=
Finder
::
create
()->
files
()->
in
(
Browser
::
$storeScreenshotsAt
)->
name
(
$pattern
);
foreach
(
$files
as
$file
)
{
@
unlink
(
$file
->
getRealPath
());
}
}
catch
(
\Symfony\Component\Finder\Exception\DirectoryNotFoundException
$e
)
{
// ignore missing screenshots directory
}
// Purge console logs from the last test run
$pattern
=
sprintf
(
'%s_%s-*'
,
str_replace
(
"
\\
"
,
'_'
,
get_class
(
$this
)),
$this
->
getName
(
false
)
);
try
{
$files
=
Finder
::
create
()->
files
()->
in
(
Browser
::
$storeConsoleLogAt
)->
name
(
$pattern
);
foreach
(
$files
as
$file
)
{
@
unlink
(
$file
->
getRealPath
());
}
}
catch
(
\Symfony\Component\Finder\Exception\DirectoryNotFoundException
$e
)
{
// ignore missing screenshots directory
}
}
/**
* Starts PHP server.
*/
protected
static
function
startWebServer
()
{
$path
=
realpath
(
__DIR__
.
'/../../public_html'
);
$cmd
=
[
'php'
,
'-S'
,
'localhost:8000'
];
$env
=
[];
static
::
$phpProcess
=
new
Process
(
$cmd
,
null
,
$env
);
static
::
$phpProcess
->
setWorkingDirectory
(
$path
);
static
::
$phpProcess
->
start
();
static
::
afterClass
(
function
()
{
static
::
$phpProcess
->
stop
();
});
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 24, 1:45 PM (2 d, 5 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
45/90/d86acb2c107b2c863ea56e52fd41
Default Alt Text
TestCase.php (5 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline