summaryrefslogtreecommitdiff
blob: 23ac087ee4ef4433883aac31012a186c61622622 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php

namespace Flow\Tests;

use Flow\Container;
use Flow\Model\UUID;
use Title;

/**
 * @group Flow
 */
class UrlGeneratorTest extends FlowTestCase {

	protected $urlGenerator;

	protected function setUp() {
		parent::setUp();
		$this->urlGenerator = Container::get( 'url_generator' );
	}

	public function provideDataBoardLink() {
		return array (
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				'updated',
				true
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				'updated',
				false
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				'created',
				true
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				'created',
				false
			)
		);
	}

	/**
	 * @dataProvider provideDataBoardLink
	 */
	public function testBoardLink( Title $title, $sortBy = null, $saveSortBy = false ) {
		$anchor = $this->urlGenerator->boardLink( $title, $sortBy, $saveSortBy );
		$this->assertInstanceOf( '\Flow\Model\Anchor', $anchor );

		$link = $anchor->getFullURL();
		$option = wfParseUrl( $link );
		$this->assertArrayHasKey( 'query', $option );
		parse_str( $option['query'], $query );

		if ( $sortBy !== null ) {
			$this->assertEquals( $sortBy, $query['topiclist_sortby'] );
			if ( $saveSortBy ) {
				$this->assertEquals( '1', $query['topiclist_savesortby'] );
			}
		}
	}

	public function provideDataWatchTopicLink() {
		return array (
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				UUID::create()
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				UUID::create()
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				UUID::create()
			),
			array(
				Title::makeTitle( NS_MAIN, 'Test' ),
				UUID::create()
			)
		);
	}

	/**
	 * @dataProvider provideDataWatchTopicLink
	 */
	public function testWatchTopicLink( Title $title, $workflowId ) {
		$anchor = $this->urlGenerator->watchTopicLink( $title, $workflowId );
		$this->assertInstanceOf( '\Flow\Model\Anchor', $anchor );

		$link = $anchor->getFullURL();
		$option = wfParseUrl( $link );
		$this->assertArrayHasKey( 'query', $option );
		parse_str( $option['query'], $query );
		$this->assertEquals( 'watch', $query['action'] );
	}

	/**
	 * @dataProvider provideDataWatchTopicLink
	 */
	public function testUnwatchTopicLink( Title $title, $workflowId ) {
		$anchor = $this->urlGenerator->unwatchTopicLink( $title, $workflowId );
		$this->assertInstanceOf( '\Flow\Model\Anchor', $anchor );

		$link = $anchor->getFullURL();
		$option = wfParseUrl( $link );
		$this->assertArrayHasKey( 'query', $option );
		parse_str( $option['query'], $query );
		$this->assertEquals( 'unwatch', $query['action'] );
	}
}