Completed
Push — master ( c2a4dc...f4221b )
by Joschi
03:32
created

RelationTest::setUpBeforeClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 7
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 14
rs 9.4285
1
<?php
2
3
/**
4
 * apparat-object
5
 *
6
 * @category    Apparat
7
 * @package     Apparat\Object
8
 * @subpackage  Apparat\Object\Test
9
 * @author      Joschi Kuphal <[email protected]> / @jkphl
10
 * @copyright   Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
11
 * @license     http://opensource.org/licenses/MIT The MIT License (MIT)
12
 */
13
14
/***********************************************************************************
15
 *  The MIT License (MIT)
16
 *
17
 *  Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
18
 *
19
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
20
 *  this software and associated documentation files (the "Software"), to deal in
21
 *  the Software without restriction, including without limitation the rights to
22
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
 *  the Software, and to permit persons to whom the Software is furnished to do so,
24
 *  subject to the following conditions:
25
 *
26
 *  The above copyright notice and this permission notice shall be included in all
27
 *  copies or substantial portions of the Software.
28
 *
29
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
 ***********************************************************************************/
36
37
namespace Apparat\Object\Tests;
38
39
use Apparat\Object\Application\Model\Object\Article;
40
use Apparat\Object\Domain\Factory\RelationFactory;
41
use Apparat\Object\Domain\Repository\Repository;
42
use Apparat\Object\Infrastructure\Repository\FileAdapterStrategy;
43
use Apparat\Object\Ports\Object;
44
use Apparat\Object\Ports\Relation;
45
46
/**
47
 * Object relation test
48
 *
49
 * @package Apparat\Object
50
 * @subpackage Apparat\Object\Tests
51
 */
52
class RelationTest extends AbstractDisabledAutoconnectorTest
53
{
54
    /**
55
     * Example object path
56
     *
57
     * @var string
58
     */
59
    const OBJECT_PATH = '/2015/12/21/1.article/1';
60
61
    /**
62
     * Test repository
63
     *
64
     * @var Repository
65
     */
66
    protected static $repository = null;
67
68
    /**
69
     * Setup
70
     */
71
    public static function setUpBeforeClass()
72
    {
73
        \Apparat\Object\Ports\Repository::register(
74
            getenv('REPOSITORY_URL'),
75
            [
76
                'type' => FileAdapterStrategy::TYPE,
77
                'root' => __DIR__.DIRECTORY_SEPARATOR.'Fixture',
78
            ]
79
        );
80
81
        self::$repository = \Apparat\Object\Ports\Repository::instance(getenv('REPOSITORY_URL'));
82
83
        \date_default_timezone_set('UTC');
84
    }
85
86
    /**
87
     * Test the addition of an object relation
88
     *
89
     * @expectedException \Apparat\Object\Domain\Model\Relation\OutOfBoundsException
90
     * @expectedExceptionCode 1462401333
91
     */
92
    public function testObjectAddRelation()
93
    {
94
        $article = Object::instance(getenv('REPOSITORY_URL').self::OBJECT_PATH);
95
        $this->assertInstanceOf(Article::class, $article);
96
        $article->addRelation('http://example.com <[email protected]> John Doe', Relation::EMBEDDED_BY);
97
        $this->assertEquals(2, count($article->findRelations([Relation::URL => 'example.com'])));
98
        foreach ($article->findRelations([Relation::EMAIL => 'tollwerk.de']) as $relation) {
99
            $article->deleteRelation($relation);
100
        }
101
        $this->assertEquals(2, count($article->getRelations()));
102
        $article->addRelation('http://example.com <[email protected]> John Doe', 'invalid');
103
    }
104
105
    /**
106
     * Test a relation construction with repeated email
107
     *
108
     * @expectedException \Apparat\Object\Domain\Model\Relation\InvalidArgumentException
109
     * @expectedExceptionCode 1462395977
110
     */
111
    public function testInvalidRelationEmail()
112
    {
113
        RelationFactory::createFromString(Relation::CONTRIBUTED_BY, '<invalid', self::$repository );
114
    }
115
116
    /**
117
     * Test a relation construction with repeated email
118
     *
119
     * @expectedException \Apparat\Object\Domain\Model\Relation\InvalidArgumentException
120
     * @expectedExceptionCode 1462394737
121
     */
122
    public function testRepeatedRelationEmail()
123
    {
124
        RelationFactory::createFromString(
125
            Relation::CONTRIBUTED_BY,
126
            '<[email protected]> <[email protected]>',
127
            self::$repository
128
        );
129
    }
130
131
    /**
132
     * Test a relation construction with repeated URL
133
     *
134
     * @expectedException \Apparat\Object\Domain\Model\Relation\InvalidArgumentException
135
     * @expectedExceptionCode 1462394737
136
     */
137
    public function testRepeatedRelationUrl()
138
    {
139
        RelationFactory::createFromString(
140
            Relation::CONTRIBUTED_BY,
141
            'http://example.com http://example.com',
142
            self::$repository
143
        );
144
    }
145
}
146