for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hipanel\modules\server\tests\acceptance\client;
use hipanel\helpers\Url;
use hipanel\tests\_support\Step\Acceptance\Client;
class OrderServerCest
{
public function ensureIndexPageWorks(Client $I)
$I->login();
$I->needPage(Url::to('/server/order/index'));
$I->see('Order server', 'h1');
$I->see('OpenVZ', 'h3');
$I->see('XEN SSD', 'h3');
$I->seeLink('ORDER SERVER', Url::to('/server/order/open-vz'));
$I->seeLink('ORDER SERVER', Url::to('/server/order/xen-ssd'));
$I->see(<<<MSG
VDS based on OpenVZ - is an inexpensive and reliable solution for small projects
that do not require many resources
(HTML web-sites, landing pages, small blogs, personal websites, business cards, etc.).
An additional advantage of our VDS based on OpenVZ is utilization
of SSD cache system that improves performance of the disk subsystem
during frequently accessed data readings.
MSG
, 'p');
The main advantage of a VDS based on XEN with SSD is speed.
It is more than 250 times faster than a conventional HDD.
Due to Xen virtualization type, all resources are assigned to user
and the operation of your VDS does not depend on the main server's load.
Virtual dedicated server based on Xen is a perfect solution for most medium and large projects
because of its performance that is highly competitive with the performance of a dedicated server.
}