Completed
Push — master ( 770316...74fc07 )
by Jeroen
09:08 queued 02:44
created

Tests/unit/Helper/Cipher/UrlSafeCipherTest.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Tests\Kunstmaan\UtilitiesBundle\Helper\Cipher;
4
5
use Kunstmaan\UtilitiesBundle\Helper\Cipher\UrlSafeCipher;
6
use PHPUnit\Framework\TestCase;
7
8
/**
9
 * UrlSafeCipherTest
10
 */
11
class UrlSafeCipherTest extends TestCase
12
{
13
    const SECRET = 'secret';
14
    const CONTENT = 'This is a random sentence which will be encrypted and then decrypted!';
15
16
    /**
17
     * @var UrlSafeCipher
18
     */
19
    protected $cipher;
20
21
    /**
22
     * Sets up the fixture, for example, opens a network connection.
23
     * This method is called before a test is executed.
24
     *
25
     * @covers \Kunstmaan\UtilitiesBundle\Helper\Cipher\UrlSafeCipher::__construct
26
     */
27
    protected function setUp()
28
    {
29
        $this->cipher = new UrlSafeCipher(self::SECRET);
30
    }
31
32
    /**
33
     * Tears down the fixture, for example, closes a network connection.
34
     * This method is called after a test is executed.
35
     */
36
    protected function tearDown()
37
    {
38
    }
39
40
    /**
41
     * @covers \Kunstmaan\UtilitiesBundle\Helper\Cipher\UrlSafeCipher::encrypt
42
     * @covers \Kunstmaan\UtilitiesBundle\Helper\Cipher\UrlSafeCipher::decrypt
43
     */
44 View Code Duplication
    public function testEncryptDecrypt()
0 ignored issues
show
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...
45
    {
46
        $encryptedValue = $this->cipher->encrypt(self::CONTENT);
47
        $this->assertNotEquals(self::CONTENT, $encryptedValue);
48
        $decryptedValue = $this->cipher->decrypt($encryptedValue);
49
        $this->assertEquals($decryptedValue, self::CONTENT);
50
    }
51
52
    /**
53
     * @covers \Kunstmaan\UtilitiesBundle\Helper\Cipher\UrlSafeCipher::hex2bin
54
     */
55 View Code Duplication
    public function testHex2bin()
0 ignored issues
show
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...
56
    {
57
        $hexValue = bin2hex(self::CONTENT);
58
        $this->assertNotEquals(self::CONTENT, $hexValue);
59
        $binValue = $this->cipher->hex2bin($hexValue);
60
        $this->assertEquals($binValue, self::CONTENT);
61
    }
62
}
63