aboutsummaryrefslogtreecommitdiffstats
path: root/tests/event/exception_listener_test.php
blob: fbae9e25b7fa5841ef0803c47d6b19bb160c37a9 (plain)
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
<?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.
*
*/

class exception_listener extends phpbb_test_case
{
	public function phpbb_exception_data()
	{
		return array(
			array(
				true,
				new \Exception(),
				array(
					'status_code' => 500,
				),
			),
			array(
				true,
				new \Exception('AJAX_ERROR_TEXT'),
				array(
					'status_code' => 500,
					'content' => 'AJAX_ERROR_TEXT',
				),
			),
			array(
				true,
				new \phpbb\exception\runtime_exception('AJAX_ERROR_TEXT'),
				array(
					'status_code' => 500,
					'content' => 'Something went wrong when processing your request.',
				),
			),
			array(
				true,
				new \Symfony\Component\HttpKernel\Exception\HttpException(404, 'AJAX_ERROR_TEXT'),
				array(
					'status_code' => 404,
					'content' => 'AJAX_ERROR_TEXT',
				),
			),
			array(
				true,
				new \phpbb\exception\http_exception(404, 'AJAX_ERROR_TEXT'),
				array(
					'status_code' => 404,
					'content' => 'Something went wrong when processing your request.',
				),
			),
			array(
				true,
				new \phpbb\exception\http_exception(404, 'CURRENT_TIME', array('today')),
				array(
					'status_code' => 404,
					'content' => 'It is currently today',
				),
			),
		);
	}

	/**
	 * @dataProvider phpbb_exception_data
	 */
	public function test_phpbb_exception($is_ajax, $exception, $expected)
	{
		$request = \Symfony\Component\HttpFoundation\Request::create('test.php', 'GET', array(), array(), array(), $is_ajax ? array('HTTP_X_REQUESTED_WITH' => 'XMLHttpRequest') : array());

		$template = $this->getMockBuilder('\phpbb\template\twig\twig')
			->disableOriginalConstructor()
			->getMock();

		global $phpbb_root_path, $phpEx;

		$lang_loader = new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx);
		$lang = new \phpbb\language\language($lang_loader);

		$exception_listener = new \phpbb\event\kernel_exception_subscriber($template, $lang);

		$event = new \Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent($this->createMock('Symfony\Component\HttpKernel\HttpKernelInterface'), $request, \Symfony\Component\HttpKernel\HttpKernelInterface::MASTER_REQUEST, $exception);
		$exception_listener->on_kernel_exception($event);

		$response = $event->getResponse();

		$this->assertEquals($expected['status_code'], $response->getStatusCode());
		$this->assertEquals($is_ajax, $response instanceof \Symfony\Component\HttpFoundation\JsonResponse);

		if (isset($expected['content']))
		{
			$this->assertContains($expected['content'], $response->getContent());
		}
	}
}