mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
107 lines
3.2 KiB
PHP
107 lines
3.2 KiB
PHP
<?php
|
|
|
|
use Faker\Generator;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class OpportunitiesCest
|
|
{
|
|
/**
|
|
* @var Generator $fakeData
|
|
*/
|
|
protected $fakeData;
|
|
|
|
/**
|
|
* @var integer $fakeDataSeed
|
|
*/
|
|
protected $fakeDataSeed;
|
|
|
|
/**
|
|
* @param AcceptanceTester $I
|
|
*/
|
|
public function _before(AcceptanceTester $I)
|
|
{
|
|
if (!$this->fakeData) {
|
|
$this->fakeData = Faker\Factory::create();
|
|
}
|
|
|
|
$this->fakeDataSeed = mt_rand(0, 2048);
|
|
$this->fakeData->seed($this->fakeDataSeed);
|
|
}
|
|
|
|
/**
|
|
* @param \AcceptanceTester $I
|
|
* @param \Step\Acceptance\ListView $listView
|
|
*
|
|
* As an administrator I want to view the opportunities module.
|
|
*/
|
|
public function testScenarioViewOpportunitiesModule(
|
|
\AcceptanceTester $I,
|
|
\Step\Acceptance\ListView $listView
|
|
) {
|
|
$I->wantTo('View the opportunities module for testing');
|
|
|
|
// Navigate to opportunities list-view
|
|
$I->loginAsAdmin();
|
|
$I->visitPage('Opportunities', 'index');
|
|
$listView->waitForListViewVisible();
|
|
|
|
$I->see('Opportunities', '.module-title-text');
|
|
}
|
|
|
|
/**
|
|
* @param \AcceptanceTester $I
|
|
* @param \Step\Acceptance\DetailView $detailView
|
|
* @param \Step\Acceptance\ListView $listView
|
|
* @param \Step\Acceptance\Opportunities $opportunities
|
|
* @param \Step\Acceptance\AccountsTester $account
|
|
*
|
|
* As administrative user I want to create an opportunity so that I can test
|
|
* the standard fields.
|
|
*/
|
|
public function testScenarioCreateOpportunity(
|
|
\AcceptanceTester $I,
|
|
\Step\Acceptance\DetailView $detailView,
|
|
\Step\Acceptance\ListView $listView,
|
|
\Step\Acceptance\Opportunities $opportunities,
|
|
\Step\Acceptance\AccountsTester $account
|
|
) {
|
|
$I->wantTo('Create an opportunity');
|
|
|
|
// Navigate to accounts list-view
|
|
$I->loginAsAdmin();
|
|
$I->visitPage('Accounts', 'index');
|
|
$listView->waitForListViewVisible();
|
|
|
|
// Create account
|
|
$this->fakeData->seed($this->fakeDataSeed);
|
|
$account_name = 'Test_'. $this->fakeData->company();
|
|
$account->createAccount($account_name);
|
|
|
|
// Navigate to opportunities list-view
|
|
$I->visitPage('Opportunities', 'index');
|
|
$listView->waitForListViewVisible();
|
|
|
|
// Create opportunity
|
|
$this->fakeData->seed($this->fakeDataSeed);
|
|
$opportunities->createOpportunity('Test_'. $this->fakeData->company(), $account_name);
|
|
|
|
// Delete opportunity
|
|
$detailView->clickActionMenuItem('Delete');
|
|
$detailView->acceptPopup();
|
|
$listView->waitForListViewVisible();
|
|
|
|
// Delete account
|
|
$I->visitPage('Accounts', 'index');
|
|
$listView->waitForListViewVisible();
|
|
$listView->clickFilterButton();
|
|
$I->fillField('#name_basic', $account_name);
|
|
$I->click('#search_form_submit');
|
|
$listView->waitForListViewVisible();
|
|
$listView->clickNameLink($account_name);
|
|
$detailView->waitForDetailViewVisible();
|
|
$detailView->clickActionMenuItem('Delete');
|
|
$detailView->acceptPopup();
|
|
$listView->waitForListViewVisible();
|
|
}
|
|
}
|