forked from KnpLabs/php-github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepoCommentTest.php
More file actions
128 lines (107 loc) · 3.68 KB
/
RepoCommentTest.php
File metadata and controls
128 lines (107 loc) · 3.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
namespace Github\Tests\Integration;
/**
* @group integration
*/
class RepoCommentTest extends TestCase
{
/**
* @test
*/
public function shouldRetrieveComments()
{
$username = 'fabpot';
$repo = 'Twig';
$comments = $this->client->api('repo')->comments()->all($username, $repo);
$comment = array_pop($comments);
$this->assertArrayHasKey('line', $comment);
$this->assertArrayHasKey('body', $comment);
$this->assertArrayHasKey('user', $comment);
$this->assertArrayHasKey('created_at', $comment);
$this->assertArrayHasKey('id', $comment);
$this->assertArrayHasKey('url', $comment);
}
/**
* @test
*/
public function shouldRetrieveCommentsForCommit()
{
$username = 'fabpot';
$repo = 'Twig';
$sha = '3506cfad1d946f4a87e8c55849a18044efe2d5dc';
$comments = $this->client->api('repo')->comments()->all($username, $repo, $sha);
$comment = array_pop($comments);
$this->assertArrayHasKey('line', $comment);
$this->assertArrayHasKey('body', $comment);
$this->assertArrayHasKey('user', $comment);
$this->assertArrayHasKey('created_at', $comment);
$this->assertArrayHasKey('id', $comment);
$this->assertArrayHasKey('url', $comment);
}
/**
* @test
*/
public function shouldCreateCommentForCommit()
{
$username = 'KnpLabs';
$repo = 'php-github-api';
$sha = '22655813eb54e7d4e21545e396f919bcd245b50d';
$params = ['body' => '%'];
$comment = $this->client->api('repo')->comments()->create($username, $repo, $sha, $params);
$this->assertArrayHasKey('created_at', $comment);
$this->assertArrayHasKey('updated_at', $comment);
$this->assertArrayHasKey('url', $comment);
$this->assertArrayHasKey('id', $comment);
$this->assertArrayHasKey('body', $comment);
$this->assertArrayHasKey('user', $comment);
return $comment['id'];
}
/**
* @test
*
* @depends shouldCreateCommentForCommit
*/
public function shouldShowCommentByCommentId($commentId)
{
$username = 'KnpLabs';
$repo = 'php-github-api';
$comment = $this->client->api('repo')->comments()->show($username, $repo, $commentId);
$this->assertArrayHasKey('created_at', $comment);
$this->assertArrayHasKey('updated_at', $comment);
$this->assertArrayHasKey('url', $comment);
$this->assertArrayHasKey('id', $comment);
$this->assertArrayHasKey('body', $comment);
$this->assertArrayHasKey('user', $comment);
return $comment['id'];
}
/**
* @test
*
* @depends shouldShowCommentByCommentId
*/
public function shouldUpdateCommentByCommentId($commentId)
{
$username = 'KnpLabs';
$repo = 'php-github-api';
$params = ['body' => 'test update'];
$comment = $this->client->api('repo')->comments()->update($username, $repo, $commentId, $params);
$this->assertArrayHasKey('created_at', $comment);
$this->assertArrayHasKey('updated_at', $comment);
$this->assertArrayHasKey('url', $comment);
$this->assertArrayHasKey('id', $comment);
$this->assertArrayHasKey('body', $comment);
$this->assertArrayHasKey('user', $comment);
return $comment['id'];
}
/**
* @test
*
* @depends shouldUpdateCommentByCommentId
*/
public function shouldRemoveCommentByCommentId($commentId)
{
$username = 'KnpLabs';
$repo = 'php-github-api';
$this->client->api('repo')->comments()->remove($username, $repo, $commentId);
}
}