aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/hooks/legacyemitter.php
blob: a7bed879a722959414bee8752688ceb0f0fcfeda (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
<?php
/**
 * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace Test\Hooks;

/**
 * Class DummyLegacyEmitter
 *
 * class to make LegacyEmitter::emit publicly available
 *
 * @package Test\Hooks
 */
class DummyLegacyEmitter extends \OC\Hooks\LegacyEmitter {
	public function emitEvent($scope, $method, $arguments = array()) {
		$this->emit($scope, $method, $arguments);
	}
}

class LegacyEmitter extends BasicEmitter {

	//we can't use exceptions here since OC_Hooks catches all exceptions
	private static $emitted = false;

	public function setUp() {
		$this->emitter = new DummyLegacyEmitter();
		self::$emitted = false;
		\OC_Hook::clear('Test','test');
	}

	public static function staticLegacyCallBack() {
		self::$emitted = true;
	}

	public static function staticLegacyArgumentsCallBack($arguments) {
		if ($arguments['foo'] == 'foo' and $arguments['bar'] == 'bar')
			self::$emitted = true;
	}

	public function testLegacyHook() {
		\OC_Hook::connect('Test', 'test', '\Test\Hooks\LegacyEmitter', 'staticLegacyCallBack');
		$this->emitter->emitEvent('Test', 'test');
		$this->assertEquals(true, self::$emitted);
	}

	public function testLegacyArguments() {
		\OC_Hook::connect('Test', 'test', '\Test\Hooks\LegacyEmitter', 'staticLegacyArgumentsCallBack');
		$this->emitter->emitEvent('Test', 'test', array('foo' => 'foo', 'bar' => 'bar'));
		$this->assertEquals(true, self::$emitted);
	}
}