-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContextSpec.php
More file actions
86 lines (64 loc) · 2.45 KB
/
Copy pathContextSpec.php
File metadata and controls
86 lines (64 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
namespace Interop\Queue\Spec;
use Interop\Queue\Consumer;
use Interop\Queue\Context;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use Interop\Queue\Queue;
use Interop\Queue\Topic;
use PHPUnit\Framework\TestCase;
abstract class ContextSpec extends TestCase
{
public function testShouldImplementContextInterface()
{
$this->assertInstanceOf(Context::class, $this->createContext());
}
public function testShouldCreateEmptyMessageOnCreateMessageMethodCallWithoutArguments()
{
$context = $this->createContext();
$message = $context->createMessage();
$this->assertInstanceOf(Message::class, $message);
$this->assertSame('', $message->getBody());
$this->assertSame([], $message->getHeaders());
$this->assertSame([], $message->getProperties());
}
public function testShouldCreateMessageOnCreateMessageMethodCallWithArguments()
{
$context = $this->createContext();
$message = $context->createMessage('theBody', ['foo' => 'fooVal'], ['bar' => 'barVal']);
$this->assertInstanceOf(Message::class, $message);
$this->assertSame('theBody', $message->getBody());
$this->assertSame(['bar' => 'barVal'], $message->getHeaders());
$this->assertSame(['foo' => 'fooVal'], $message->getProperties());
}
public function testShouldCreateTopicWithGivenName()
{
$context = $this->createContext();
$topic = $context->createTopic('theName');
$this->assertInstanceOf(Topic::class, $topic);
$this->assertSame('theName', $topic->getTopicName());
}
public function testShouldCreateQueueWithGivenName()
{
$context = $this->createContext();
$queue = $context->createQueue('theName');
$this->assertInstanceOf(Queue::class, $queue);
$this->assertSame('theName', $queue->getQueueName());
}
public function testShouldCreateProducerOnCreateProducerMethodCall()
{
$context = $this->createContext();
$producer = $context->createProducer();
$this->assertInstanceOf(Producer::class, $producer);
}
public function testShouldCreateConsumerOnCreateConsumerMethodCall()
{
$context = $this->createContext();
$consumer = $context->createConsumer($context->createQueue('aQueue'));
$this->assertInstanceOf(Consumer::class, $consumer);
}
/**
* @return Context
*/
abstract protected function createContext();
}