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
|
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
require_once dirname(__FILE__) . '/common_groups_test_case.php';
/**
* @group functional
*/
class phpbb_functional_ucp_groups_test extends phpbb_functional_common_groups_test_case
{
protected $db;
protected function get_url()
{
return 'ucp.php?i=groups&mode=manage&action=edit';
}
protected function get_teampage_settings()
{
if (!isset($this->db))
{
$this->db = $this->get_db();
}
$sql = 'SELECT g.group_legend AS group_legend, t.teampage_position AS group_teampage
FROM ' . GROUPS_TABLE . ' g
LEFT JOIN ' . TEAMPAGE_TABLE . ' t
ON (t.group_id = g.group_id)
WHERE g.group_id = 5';
$result = $this->db->sql_query($sql);
$group_row = $this->db->sql_fetchrow($result);
$this->db->sql_freeresult($result);
return $group_row;
}
public function test_ucp_groups_teampage()
{
$this->group_manage_login();
// Test if group_legend or group_teampage are modified while
// submitting the ucp_group_manage page
$form = $this->get_group_manage_form();
$teampage_settings = $this->get_teampage_settings();
$crawler = self::submit($form);
$this->assertContains($this->lang('GROUP_UPDATED'), $crawler->text());
$this->assertEquals($teampage_settings, $this->get_teampage_settings());
}
public function test_create_request_group()
{
$this->login();
$this->admin_login();
$this->add_lang('acp/groups');
$crawler = self::request('GET', 'adm/index.php?i=acp_groups&mode=manage&sid=' . $this->sid);
$form = $crawler->selectButton($this->lang('SUBMIT'))->form();
$crawler = self::submit($form, array('group_name' => 'request-group'));
$form = $crawler->selectButton($this->lang('SUBMIT'))->form();
$crawler = self::submit($form, array('group_name' => 'request-group'));
$this->assertContainsLang('GROUP_CREATED', $crawler->filter('#main')->text());
$group_id = $this->get_group_id('request-group');
// Make admin group leader
$crawler = self::request('GET', 'adm/index.php?i=acp_groups&mode=manage&action=list&g=' . $group_id . '&sid=' . $this->sid);
$form = $crawler->filter('input[name=addusers]')->selectButton($this->lang('SUBMIT'))->form();
$crawler = self::submit($form, [
'leader' => 1,
'usernames' => 'admin',
]);
$this->assertContainsLang('GROUP_MODS_ADDED', $crawler->filter('#main')->text());
}
/**
* @depends test_create_request_group
*/
public function test_request_group_membership()
{
$this->create_user('request-group-user');
$this->login('request-group-user');
$this->add_lang('groups');
$group_id = $this->get_group_id('request-group');
$crawler = self::request('GET', 'ucp.php?i=ucp_groups&mode=membership&sid=' . $this->sid);
$form = $crawler->selectButton($this->lang('SUBMIT'))->form();
$crawler = self::submit($form, ['selected' => $group_id, 'action' => 'join']);
$this->assertContainsLang('GROUP_JOIN_PENDING_CONFIRM', $crawler->text());
$form = $crawler->selectButton($this->lang('YES'))->form();
$crawler = self::submit($form);
$this->assertContainsLang('GROUP_JOINED_PENDING', $crawler->text());
}
/**
* @depends test_request_group_membership
*/
public function test_approve_group_membership()
{
$this->login();
$this->add_lang('acp/groups');
$group_id = $this->get_group_id('request-group');
$crawler = self::request('GET', 'ucp.php?i=ucp_groups&mode=manage&action=list&g=' . $group_id . '&sid=' . $this->sid);
$form = $crawler->filter('input[name=update]')->selectButton($this->lang('SUBMIT'))->form();
$crawler = self::submit($form, [
'mark' => [$crawler->filter('input[name="mark[]"]')->first()->attr('value')],
'action' => 'approve',
]);
$this->assertContainsLang('USERS_APPROVED', $crawler->text());
}
}
|