1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?php
namespace Codeception\Lib\Generator;
use Behat\Gherkin\Node\StepNode;
use Codeception\Test\Loader\Gherkin;
use Codeception\Util\Template;
use Symfony\Component\Finder\Finder;
class GherkinSnippets
{
protected $template = <<<EOF
/**
* @{{type}} {{text}}
*/
public function {{methodName}}({{params}})
{
throw new \Codeception\Exception\Incomplete("Step `{{text}}` is not defined");
}
EOF;
protected $snippets = [];
protected $processed = [];
protected $features = [];
public function __construct($settings, $test = null)
{
$loader = new Gherkin($settings);
$pattern = $loader->getPattern();
$path = $settings['path'];
if (!empty($test)) {
$path = $settings['path'].'/'.$test;
if (preg_match($pattern, $test)) {
$path = dirname($path);
$pattern = basename($test);
}
}
$finder = Finder::create()
->files()
->sortByName()
->in($path)
->followLinks()
->name($pattern);
foreach ($finder as $file) {
$pathname = str_replace("//", "/", $file->getPathname());
$loader->loadTests($pathname);
}
$availableSteps = $loader->getSteps();
$allSteps = [];
foreach ($availableSteps as $stepGroup) {
$allSteps = array_merge($allSteps, $stepGroup);
}
foreach ($loader->getTests() as $test) {
/** @var $test \Codeception\Test\Gherkin **/
$steps = $test->getScenarioNode()->getSteps();
if ($test->getFeatureNode()->hasBackground()) {
$steps = array_merge($steps, $test->getFeatureNode()->getBackground()->getSteps());
}
foreach ($steps as $step) {
$matched = false;
$text = $step->getText();
if (self::stepHasPyStringArgument($step)) {
// pretend it is inline argument
$text .= ' ""';
}
foreach (array_keys($allSteps) as $pattern) {
if (preg_match($pattern, $text)) {
$matched = true;
break;
}
}
if (!$matched) {
$this->addSnippet($step);
$file = str_ireplace($settings['path'], '', $test->getFeatureNode()->getFile());
if (!in_array($file, $this->features)) {
$this->features[] = $file;
}
}
}
}
}
public function addSnippet(StepNode $step)
{
$args = [];
$pattern = $step->getText();
// match numbers (not in quotes)
if (preg_match_all('~([\d\.])(?=([^"]*"[^"]*")*[^"]*$)~', $pattern, $matches)) {
foreach ($matches[1] as $num => $param) {
$num++;
$args[] = '$num' . $num;
$pattern = str_replace($param, ":num$num", $pattern);
}
}
// match quoted string
if (preg_match_all('~"(.*?)"~', $pattern, $matches)) {
foreach ($matches[1] as $num => $param) {
$num++;
$args[] = '$arg' . $num;
$pattern = str_replace('"'.$param.'"', ":arg$num", $pattern);
}
}
// Has multiline argument at the end of step?
if (self::stepHasPyStringArgument($step)) {
$num = count($args) + 1;
$pattern .= " :arg$num";
$args[] = '$arg' . $num;
}
if (in_array($pattern, $this->processed)) {
return;
}
$methodName = preg_replace('~(\s+?|\'|\"|\W)~', '', ucwords(preg_replace('~"(.*?)"|\d+~', '', $step->getText())));
if (empty($methodName)) {
$methodName = 'step_' . substr(sha1($pattern), 0, 9);
}
$this->snippets[] = (new Template($this->template))
->place('type', $step->getKeywordType())
->place('text', $pattern)
->place('methodName', lcfirst($methodName))
->place('params', implode(', ', $args))
->produce();
$this->processed[] = $pattern;
}
public function getSnippets()
{
return $this->snippets;
}
public function getFeatures()
{
return $this->features;
}
public static function stepHasPyStringArgument(StepNode $step)
{
if ($step->hasArguments()) {
$stepArgs = $step->getArguments();
if ($stepArgs[count($stepArgs) - 1]->getNodeType() == "PyString") {
return true;
}
}
return false;
}
}