Completed
Push — develop ( 321e68...dce9ea )
by Carsten
09:20
created

SummaryFormContext::iSaveCustomerNote()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
dl 7
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
nc 1
nop 0
1
<?php
2
/**
3
 * YAWIK
4
 *
5
 * @filesource
6
 * @license MIT
7
 * @copyright  2013 - 2017 Cross Solution <http://cross-solution.de>
8
 */
9
10
namespace Yawik\Behat;
11
12
13
use Behat\Behat\Context\Context;
14
use Doctrine\Common\Util\Inflector;
15
16
class SummaryFormContext implements Context
17
{
18
	use CommonContextTrait;
19
	
20
	private $elementMap = array(
21
		'name' => '#sf-nameForm',
22
		'location' => '#sf-locationForm',
23
		'employees' => '#sf-employeesManagement',
24
		'workflow' => '#sf-workflowSettings',
25
		'jobTitleAndLocation' => '#general-locationForm',
26
		'jobClassification' => '#sf-general-classifications',
27
		'customerNote' => '#sf-general-customerNote',
28
		'personalInformations' => '#sf-contact-contact',
29
		'resumePersonalInformations' => '#sf-contact',
30
	);
31
	
32
	/**
33
	 * @When I click edit on :name form
34
	 * @TODO: [ZF3] move this method to CoreContext
35
	 */
36
	public function iClickEditOnForm($name)
37
	{
38
		$this->iClickForm($name);
39
		$name = Inflector::camelize($name);
40
		$type = $this->elementMap[$name];
41
		$locator = $type.' .sf-summary .sf-controls button';
42
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
43
		if(!$element){
44
			throw new \Exception('No element found with this locator: "'.$locator.'"');
45
		}
46
		$element->click();
47
	}
48
	
49
	/**
50
	 * @When I click :form form
51
	 */
52
	public function iClickForm($name)
53
	{
54
		$name = Inflector::camelize($name);
55
		$type = $this->elementMap[$name];
56
		$locator = $type.' .sf-summary';
57
		$session = $this->minkContext->getSession();
58
		$script = <<<EOC
59
var tElement = jQuery("$locator .sf-controls");
60
tElement.css('display','block');
61
tElement.css('visibility','visible');
62
EOC;
63
		$session->executeScript($script);
64
	}
65
	
66
	/**
67
	 * @When I save :type form
68
	 */
69
	public function iSaveForm($type)
70
	{
71
		$type = Inflector::camelize($type);
72
		$method = 'iSave'.$type;
73
		if(method_exists($this,$method)){
74
			call_user_func([$this,$method]);
75
		}else{
76
			$locator = $this->elementMap[$type].'-buttons-submit';
77
			$this->coreContext->scrollIntoView($locator);
78
			$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
79
			$element->click();
80
		}
81
	}
82
	
83 View Code Duplication
	public function iSaveOrganizationName()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
84
	{
85
		$locator = '#nameForm-buttons-submit';
86
		$this->coreContext->scrollIntoView($locator);
87
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
88
		$element->click();
89
	}
90
	
91
	/**
92
	 * Saving organization workflow
93
	 */
94
	public function iSaveWorkflow()
95
	{
96
		$locator = '#workflowSettings-buttons-submit';
97
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
98
		$element->click();
99
	}
100
	
101 View Code Duplication
	public function iSaveOrganizationLocation()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
102
	{
103
		$locator = '#locationForm-buttons-submit';
104
		$this->coreContext->scrollIntoView($locator);
105
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
106
		$element->click();
107
	}
108
	
109
	
110 View Code Duplication
	public function iSaveJobClassification()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
111
	{
112
		$locator = '#general-classifications-buttons-submit';
113
		$this->coreContext->scrollIntoView($locator);
114
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
115
		$element->click();
116
	}
117
	
118 View Code Duplication
	public function iSaveCustomerNote()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
119
	{
120
		$locator = '#general-customerNote-buttons-submit';
121
		$this->coreContext->scrollIntoView('#sf-general-customerNote');
122
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
123
		$element->click();
124
	}
125
	
126
}