|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace spec\Scriptotek\Alma\Users; |
|
4
|
|
|
|
|
5
|
|
|
use PhpSpec\ObjectBehavior; |
|
6
|
|
|
use Scriptotek\Alma\Client as AlmaClient; |
|
7
|
|
|
use Scriptotek\Alma\Users\Fees; |
|
8
|
|
|
use Scriptotek\Alma\Users\Loans; |
|
9
|
|
|
use Scriptotek\Alma\Users\Requests; |
|
10
|
|
|
use Scriptotek\Alma\Users\User; |
|
11
|
|
|
use spec\Scriptotek\Alma\SpecHelper; |
|
12
|
|
|
|
|
13
|
|
|
class UserSpec extends ObjectBehavior |
|
14
|
|
|
{ |
|
15
|
|
|
public function let(AlmaClient $client) |
|
16
|
|
|
{ |
|
17
|
|
|
$this->beConstructedWith($client, '12345'); |
|
18
|
|
|
|
|
19
|
|
|
$client->getJSON('/users/12345') |
|
20
|
|
|
->willReturn(SpecHelper::getDummyData('user_response.json')); |
|
21
|
|
|
} |
|
22
|
|
|
|
|
23
|
|
|
public function it_is_initializable() |
|
24
|
|
|
{ |
|
25
|
|
|
$this->shouldHaveType(User::class); |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
public function it_has_primary_id() |
|
29
|
|
|
{ |
|
30
|
|
|
$this->primaryId->shouldBe('12345'); |
|
|
|
|
|
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public function it_has_barcode() |
|
34
|
|
|
{ |
|
35
|
|
|
$this->barcode->shouldBe('ub54321'); |
|
|
|
|
|
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
public function it_has_barcodes() |
|
39
|
|
|
{ |
|
40
|
|
|
$this->barcodes->shouldBe(['ub54321', 'ntb12897787']); |
|
|
|
|
|
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
public function it_has_university_id() |
|
44
|
|
|
{ |
|
45
|
|
|
$this->universityId->shouldBe('[email protected]'); |
|
|
|
|
|
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
public function it_has_university_ids() |
|
49
|
|
|
{ |
|
50
|
|
|
$this->universityIds->shouldBe(['[email protected]']); |
|
|
|
|
|
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
public function it_has_identifiers() |
|
54
|
|
|
{ |
|
55
|
|
|
$this->identifiers->all()->shouldBe(['12345', 'ub54321', 'ntb12897787', '[email protected]']); |
|
|
|
|
|
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
public function it_has_loans(AlmaClient $client) |
|
59
|
|
|
{ |
|
60
|
|
|
SpecHelper::expectNoRequests($client); |
|
61
|
|
|
$this->loans->shouldHaveType(Loans::class); |
|
|
|
|
|
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
public function it_has_fees(AlmaClient $client) |
|
65
|
|
|
{ |
|
66
|
|
|
SpecHelper::expectNoRequests($client); |
|
67
|
|
|
$this->fees->shouldHaveType(Fees::class); |
|
|
|
|
|
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
public function it_has_requests() |
|
71
|
|
|
{ |
|
72
|
|
|
$this->requests->shouldHaveType(Requests::class); |
|
|
|
|
|
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public function it_has_sms() |
|
76
|
|
|
{ |
|
77
|
|
|
$this->getSmsNumber()->shouldBe('87654321'); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
public function it_can_change_sms() |
|
81
|
|
|
{ |
|
82
|
|
|
$this->setSmsNumber('12345678'); |
|
83
|
|
|
$this->getSmsNumber()->shouldBe('12345678'); |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
|
public function it_can_add_sms() |
|
87
|
|
|
{ |
|
88
|
|
|
$this->setSmsNumber('9999999'); |
|
89
|
|
|
$this->getSmsNumber()->shouldBe('9999999'); |
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
|
|
public function it_can_remove_sms() |
|
93
|
|
|
{ |
|
94
|
|
|
$this->unsetSmsNumber(); |
|
95
|
|
|
$this->getSmsNumber()->shouldBe(null); |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
} |
|
99
|
|
|
|
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.