Passed
Push — php7build ( 8d6a18...cbd571 )
by Fabien
03:14
created

testHumanFileNameWithExperience()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 11
rs 9.4285
cc 1
eloc 7
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the FabienCrassat\CurriculumVitaeBundle Symfony bundle.
5
 *
6
 * (c) Fabien Crassat <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FabienCrassat\CurriculumVitaeBundle\Tests\Entity;
13
14
use FabienCrassat\CurriculumVitaeBundle\Entity\CurriculumVitae;
15
16
class CurriculumVitaeTest extends \PHPUnit\Framework\TestCase
17
{
18
    private $curriculumVitae;
19
    private $lang;
20
    private $interface;
21
    private $arrayToCompare;
22
23
    function setUp() {
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
24
        $this->lang = 'en';
25
    }
26
27
    public function testNoLanguage() {
28
        $this->interface = 'getDropDownLanguages';
29
30
        $this->arrayToCompare = array(
31
            $this->lang => $this->lang
32
        );
33
34
        $this->assertCVInterface('/../Resources/data/core.xml');
35
    }
36
37
    public function testSpecialCharacters() {
38
        $this->interface = 'getLookingFor';
39
40
        $this->arrayToCompare = array(
41
            'experience'   => 'Curriculum Vitae With Special Characters',
42
            'presentation' => 'AZERTY keyboard'
43
            .' Line 1 ²é"(-è_çà)='
44
            .' Line 1 with shift 1234567890°+'
45
            .' Line 1 with Alt Gr ~#{[|`\^@]}'
46
            .' Line 2 azertyuiop^$'
47
            .' Line 2 with shift AZERTYUIOP¨£'
48
            .' Line 2 with Alt Gr €¤'
49
            .' Line 3 qsdfghjklmù*'
50
            .' Line 3 with shift QSDFGHJKLM%µ'
51
            .' Line 3 with Alt Gr '
52
            .' Line 4 wxcvbn,;:!'
53
            .' Line 4 with shift WXCVBN?./§'
54
            .' Line 4 with Alt Gr '
55
            .' Escape Characters < > &'
56
            .' End',
57
        );
58
        $this->assertCVInterface('/../Resources/data/specialCharacters.xml');
59
    }
60
61
    public function testSimpleHumanFileName() {
62
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../Resources/data/core.xml');
63
        $this->assertSame('core', $this->curriculumVitae->getHumanFileName());
64
    }
65
66
    public function testHumanFileNameWithExperience() {
67
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../../Resources/data/example.xml');
68
        $this->assertSame('First Name Last Name - Curriculum Vitae Title',
69
            $this->curriculumVitae->getHumanFileName()
70
        );
71
72
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../Resources/data/backbone.xml');
73
        $this->assertSame('First Name Last Name - The job',
74
            $this->curriculumVitae->getHumanFileName()
75
        );
76
    }
77
78
    public function testHumanFileNameWithJob() {
79
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../Resources/data/backbone.xml');
80
        $this->assertSame('First Name Last Name - The job', $this->curriculumVitae->getHumanFileName());
81
    }
82
83
    public function testHumanFileNameWithOnLyName(){
84
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../Resources/data/justIdentityMySelf.xml');
85
        $this->assertSame('First Name Last Name', $this->curriculumVitae->getHumanFileName());
86
    }
87
88
    public function testNullReturnWithNoDeclarationInCurriculumVitaeTag() {
89
        $this->curriculumVitae = new CurriculumVitae(__DIR__.'/../Resources/data/core.xml');
90
        $identity              = $this->curriculumVitae->getIdentity();
91
        $this->assertFalse($identity === NULL);
92
        $this->assertTrue($identity == NULL);
93
    }
94
95
    private function assertCVInterface($pathToFile = '/../../Resources/data/example.xml') {
96
        $this->curriculumVitae = new CurriculumVitae(__DIR__.$pathToFile, $this->lang);
97
        $this->assertEquals($this->arrayToCompare, $this->curriculumVitae->{$this->interface}());
98
    }
99
}
100