Completed
Push — master ( 17df9a...99bd38 )
by Arnold
03:12
created

PcreExtensionTest   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 54
Duplicated Lines 14.81 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 10
c 1
b 0
f 0
lcom 1
cbo 1
dl 8
loc 54
rs 10

10 Methods

Rating   Name   Duplication   Size   Complexity  
A buildEnv() 8 8 1
A process() 0 5 1
A check() 0 4 1
A testQuote() 0 3 1
A testQuoteDelimiter() 0 3 1
A testPregMatch() 0 3 1
A testPregMatchNo() 0 3 1
A testPregMatchError() 0 3 1
A testPregGet() 0 3 1
A testPregGetDefault() 0 3 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Jasny\Twig;
4
5
use Jasny\Twig\PcreExtension;
6
7
class PcreExtensionTest extends PHPUnit_Framework_TestCase {
8
9 View Code Duplication
    private function buildEnv($template) {
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...
10
        $loader = new Twig_Loader_Array(array(
11
            'template' => $template,
12
        ));
13
        $twig = new Twig_Environment($loader);
14
        $twig->addExtension(new PcreExtension());
15
        return $twig;
16
    }
17
    
18
    private function process($template, $data = array()) {
19
        $twig = $this->buildEnv($template);
20
        $result = $twig->render('template', $data);
21
        return $result;
22
    }
23
    
24
    private function check($expected, $template) {
25
        $result = $this->process($template);
26
        $this->assertEquals($expected, $result);
27
    }
28
29
    public function testQuote() {
30
        $this->check('foo\(\)', '{{ "foo()"|preg_quote }}');
31
    }
32
    
33
    public function testQuoteDelimiter() {
34
        $this->check('foo\@bar', '{{ "foo@bar"|preg_quote("@") }}');
35
    }
36
    
37
    public function testPregMatch() {
38
        $this->check('YES', '{% if "foo"|preg_match("/oo/") %}YES{% else %}NO{% endif %}');
39
    }
40
41
    public function testPregMatchNo() {
42
        $this->check('NO', '{% if "fod"|preg_match("/oo/") %}YES{% else %}NO{% endif %}');
43
    }
44
45
    /**
46
     * @expectedException Twig_Error_Runtime
47
     */
48
    public function testPregMatchError() {
49
        $this->check('NO', '{% if "fod"|preg_match("/o//o/") %}YES{% else %}NO{% endif %}');
50
    }
51
    
52
    public function testPregGet() {
53
        $this->check('d', '{{ "food"|preg_get("/oo(.)/", 1) }}');
54
    }
55
    
56
    public function testPregGetDefault() {
57
        $this->check('ood', '{{ "food"|preg_get("/oo(.)/") }}');
58
    }
59
    
60
}
61