File "ShareInstancesTest.php"

Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/vendor/level-2/dice/tests/ShareInstancesTest.php
File size: 3.67 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/* @description Dice - A minimal Dependency Injection Container for PHP *
 * @author Tom Butler tom@r.je *
 * @copyright 2012-2018 Tom Butler <tom@r.je> | https:// r.je/dice.html *
 * @license http:// www.opensource.org/licenses/bsd-license.php BSD License *
 * @version 3.0 */
class ShareInstancesTest extends DiceTest {
	public function testShareInstances() {
		$rule = [];
		$rule['shareInstances'] = ['Shared'];
		$dice = $this->dice->addRule('TestSharedInstancesTop', $rule);


		$shareTest = $dice->create('TestSharedInstancesTop');

		$this->assertinstanceOf('TestSharedInstancesTop', $shareTest);

		$this->assertInstanceOf('SharedInstanceTest1', $shareTest->share1);
		$this->assertInstanceOf('SharedInstanceTest2', $shareTest->share2);

		$this->assertSame($shareTest->shared, $shareTest->share1->shared);
		$this->assertSame($shareTest->share1->shared, $shareTest->share2->shared);
		$this->assertEquals($shareTest->shared->uniq, $shareTest->share1->shared->uniq);
		$this->assertEquals($shareTest->share1->shared->uniq, $shareTest->share2->shared->uniq);

	}

	public function testNamedShareInstances() {

		$rule = [];
		$rule['instanceOf'] = 'Shared';
		$dice = $this->dice->addRule('$Shared', $rule);

		$rule = [];
		$rule['shareInstances'] = ['$Shared'];
		$dice = $dice->addRule('TestSharedInstancesTop', $rule);


		$shareTest = $dice->create('TestSharedInstancesTop');

		$this->assertinstanceOf('TestSharedInstancesTop', $shareTest);

		$this->assertInstanceOf('SharedInstanceTest1', $shareTest->share1);
		$this->assertInstanceOf('SharedInstanceTest2', $shareTest->share2);

		$this->assertSame($shareTest->shared, $shareTest->share1->shared);
		$this->assertSame($shareTest->share1->shared, $shareTest->share2->shared);
		$this->assertEquals($shareTest->shared->uniq, $shareTest->share1->shared->uniq);
		$this->assertEquals($shareTest->share1->shared->uniq, $shareTest->share2->shared->uniq);


		$shareTest2 = $dice->create('TestSharedInstancesTop');
		$this->assertNotSame($shareTest2->share1->shared, $shareTest->share2->shared);
	}


	public function testShareInstancesNested() {
		$rule = [];
		$rule['shareInstances'] = ['F'];
		$dice = $this->dice->addRule('A4',$rule);
		$a = $dice->create('A4');
		$this->assertTrue($a->m1->f === $a->m2->e->f);
	}


	public function testShareInstancesMultiple() {
		$rule = [];
		$rule['shareInstances'] = ['Shared'];
		$dice = $this->dice->addRule('TestSharedInstancesTop', $rule);


		$shareTest = $dice->create('TestSharedInstancesTop');

		$this->assertinstanceOf('TestSharedInstancesTop', $shareTest);

		$this->assertInstanceOf('SharedInstanceTest1', $shareTest->share1);
		$this->assertInstanceOf('SharedInstanceTest2', $shareTest->share2);

		$this->assertSame($shareTest->shared, $shareTest->share1->shared);
		$this->assertSame($shareTest->share1->shared, $shareTest->share2->shared);
		$this->assertEquals($shareTest->shared->uniq, $shareTest->share1->shared->uniq);
		$this->assertEquals($shareTest->share1->shared->uniq, $shareTest->share2->shared->uniq);


		$shareTest2 = $dice->create('TestSharedInstancesTop');
		$this->assertSame($shareTest2->shared, $shareTest2->share1->shared);
		$this->assertSame($shareTest2->share1->shared, $shareTest2->share2->shared);
		$this->assertEquals($shareTest2->shared->uniq, $shareTest2->share1->shared->uniq);
		$this->assertEquals($shareTest2->share1->shared->uniq, $shareTest2->share2->shared->uniq);

		$this->assertNotSame($shareTest->shared, $shareTest2->shared);
		$this->assertNotSame($shareTest->share1->shared, $shareTest2->share2->shared);
		$this->assertNotEquals($shareTest->shared->uniq, $shareTest2->shared->uniq);
		$this->assertNotEquals($shareTest->share1->shared->uniq, $shareTest2->share2->shared->uniq);

	}
}