summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticFormsSelect/tests/phpunit/Unit/SemanticFormsSelectInputTest.php
blob: dac06300141949b0d2a20c5b00abe59a25d5963b (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
<?php

namespace SFS\Tests;

use SFS\SemanticFormsSelectInput;

/**
 * @covers  \SFS\SemanticFormsSelectInput
 * @group   semantic-forms-select
 *
 * @license GNU GPL v2+
 * @since   3.0.0
 *
 * @author  FelixAba
 */
class SemanticFormsSelectInputTest extends \PHPUnit_Framework_TestCase {

	private $SFSInput;


	protected function setUp() {
		parent::setUp();
		$value = '';
		$inputName = '';
		$isMandatory = false;
		$isDisabled = false;

		$otherArgs = [ 'template' => 'Foo', 'field' => '',
		                    'function' => 'Bar', 'is_list' => true ];

		$parserOutput = $this->getMockBuilder( '\ParserOutput' )
			->disableOriginalConstructor()->getMock();

		$parser = $this->getMockBuilder( '\Parser' )
			->disableOriginalConstructor()->getMock();

		$parser->expects( $this->any() )->method( 'getOutput' )->will(
				$this->returnValue( $parserOutput )
			);
		$this->SFSInput = new SemanticFormsSelectInput(
			$value, $inputName, $isMandatory, $isDisabled, $otherArgs
		);
	}

	protected function tearDown() {
		unset( $this->SelectField );
		parent::tearDown();
	}

	public function testCanConstruct() {

		$this->assertInstanceOf(
			'\SFS\SemanticFormsSelectInput', $this->SFSInput
		);
	}

	public function testGetHTMLText() {

		$this->assertInternalType(
			'string', $this->SFSInput->getHtmlText()
		);
	}

	public function testGetName() {

		$this->assertEquals(
			'SF_Select', $this->SFSInput->getName()
		);
	}

	public function testGetParameters() {

		$this->assertInternalType( 'array', $this->SFSInput->getParameters() );
	}


	public function testGetResourceModuleNames() {
		$rsmn = [ 'ext.sf_select.scriptselect' ];

		$this->assertEquals( $rsmn, $this->SFSInput->getResourceModuleNames() );
	}

}