# disco/1.3.48/vendor/micropackage/requirements/tests/Checker/test-plugins.php

Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO, version 1.3.48. 124 lines.

- Page: https://pluginprobe.com/plugins/disco/1.3.48/code/vendor/micropackage/requirements/tests/Checker/test-plugins.php
- Raw: https://pluginprobe.com/plugins/disco/1.3.48/raw/vendor/micropackage/requirements/tests/Checker/test-plugins.php
- Modified: 2024-09-18T11:17:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/disco/1.3.48/code/vendor/micropackage/requirements/tests/Checker/test-plugins.php#L10-L20`.

```php
<?php
/**
 * Class TestPlugins
 *
 * @package micropackage/requirements
 */

namespace Micropackage\Requirements\Test\Checker;

use phpmock\Mock;
use phpmock\MockBuilder;
use Micropackage\Requirements\Requirements;
use Micropackage\Requirements\Checker\Plugins as TestedChecker;

/**
 * Plugins checker test case.
 */
class TestPlugins extends \WP_UnitTestCase {

	use \phpmock\phpunit\PHPMock;

	public function setUp() {
		parent::setUp();
		$this->checker = new TestedChecker();
	}

	public function tearDown() {
		parent::tearDown();
		Mock::disableAll();
	}

	public function bad_params() {
		return [
			[ '5.3' ],
			[ 1 ],
			[ true ],
		];
	}

	public function test_get_name_should_return_valid_name() {
		$this->assertSame( 'plugins', $this->checker->get_name() );
	}

	/**
	 * @dataProvider bad_params
	 * @expectedException Exception
	 */
	public function test_check_should_throw_exception_if_passed_not_array( $param ) {
		$this->checker->check( $param );
	}

	public function test_check_should_pass_if_one_required_plugin_is_active() {

		$wp_get_active_and_valid_plugins = $this->getFunctionMock( 'Micropackage\Requirements\Checker', 'wp_get_active_and_valid_plugins' );
		$wp_get_active_and_valid_plugins->expects( $this->once() )->willReturn( [
			WP_PLUGIN_DIR . '/plugin-one/plugin-one.php',
			WP_PLUGIN_DIR . '/plugin-two/plugin-two.php',
		] );

		$this->checker->check( [
			[ 'file' => 'plugin-one/plugin-one.php', 'name' => 'Plugin One' ],
		] );

		$this->assertEmpty( $this->checker->get_errors() );

	}

	public function test_check_should_pass_if_all_required_plugins_are_active() {

		$wp_get_active_and_valid_plugins = $this->getFunctionMock( 'Micropackage\Requirements\Checker', 'wp_get_active_and_valid_plugins' );
		$wp_get_active_and_valid_plugins->expects( $this->once() )->willReturn( [
			WP_PLUGIN_DIR . '/plugin-one/plugin-one.php',
			WP_PLUGIN_DIR . '/plugin-two/plugin-two.php',
		] );

		$this->checker->check( [
			[ 'file' => 'plugin-one/plugin-one.php', 'name' => 'Plugin One' ],
			[ 'file' => 'plugin-two/plugin-two.php', 'name' => 'Plugin Two' ],
		] );

		$this->assertEmpty( $this->checker->get_errors() );

	}

	public function test_check_should_fail_if_at_least_one_required_plugin_is_not_active() {

		$wp_get_active_and_valid_plugins = $this->getFunctionMock( 'Micropackage\Requirements\Checker', 'wp_get_active_and_valid_plugins' );
		$wp_get_active_and_valid_plugins->expects( $this->once() )->willReturn( [
			WP_PLUGIN_DIR . '/plugin-one/plugin-one.php',
		] );

		$this->checker->check( [
			[ 'file' => 'plugin-two/plugin-two.php', 'name' => 'Plugin Two' ],
		] );

		$errors = $this->checker->get_errors();

		$this->assertNotEmpty( $errors );
		$this->assertCount( 1, $errors );
		$this->assertContains( 'Plugin Two', $errors[0] );

	}

	public function test_check_should_fail_if_two_required_plugins_are_not_active() {

		$wp_get_active_and_valid_plugins = $this->getFunctionMock( 'Micropackage\Requirements\Checker', 'wp_get_active_and_valid_plugins' );
		$wp_get_active_and_valid_plugins->expects( $this->once() )->willReturn( [] );

		$this->checker->check( [
			[ 'file' => 'plugin-one/plugin-one.php', 'name' => 'Plugin One' ],
			[ 'file' => 'plugin-two/plugin-two.php', 'name' => 'Plugin Two' ],
		] );

		$errors = $this->checker->get_errors();

		$this->assertNotEmpty( $errors );
		$this->assertCount( 2, $errors );
		$this->assertContains( 'Plugin One', $errors[0] );
		$this->assertContains( 'Plugin Two', $errors[1] );

	}

}

```
