You are here

class CasPropertyBagTest in CAS 8

Same name and namespace in other branches
  1. 2.x tests/src/Unit/CasPropertyBagTest.php \Drupal\Tests\cas\Unit\CasPropertyBagTest

CasPropertyBag unit tests.

@group cas

@coversDefaultClass \Drupal\cas\CasPropertyBag

Hierarchy

Expanded class hierarchy of CasPropertyBagTest

File

tests/src/Unit/CasPropertyBagTest.php, line 16

Namespace

Drupal\Tests\cas\Unit
View source
class CasPropertyBagTest extends UnitTestCase {

  /**
   * Test constructing a bag with a username.
   *
   * @covers ::__construct
   */
  public function testConstruct() {
    $name = $this
      ->randomMachineName(8);
    $bag = new CasPropertyBag($name);
    $this
      ->assertEquals($name, $bag
      ->getUsername());
    $this
      ->assertEquals($name, $bag
      ->getOriginalUsername());
  }

  /**
   * Test setting a username.
   *
   * @covers ::setUsername
   */
  public function testSetUsername() {
    $name = $this
      ->randomMachineName(8);
    $bag = new CasPropertyBag($name);
    $new_name = $this
      ->randomMachineName(8);
    $bag
      ->setUsername($new_name);
    $this
      ->assertEquals($new_name, $bag
      ->getUsername());
    $this
      ->assertEquals($name, $bag
      ->getOriginalUsername());
  }

  /**
   * Test setting a proxy granting ticket.
   *
   * @covers ::setPgt
   */
  public function testSetPgt() {
    $bag = new CasPropertyBag($this
      ->randomMachineName(8));
    $pgt = $this
      ->randomMachineName(24);
    $bag
      ->setPgt($pgt);
    $this
      ->assertEquals($pgt, $bag
      ->getPgt());
  }

  /**
   * Test setting the attributes array.
   *
   * @covers ::setAttributes
   */
  public function testSetAttributes() {
    $bag = new CasPropertyBag($this
      ->randomMachineName(8));
    $attributes = [
      'foo' => [
        'bar',
      ],
      'baz' => [
        'quux, foobar',
      ],
    ];
    $bag
      ->setAttributes($attributes);
    $this
      ->assertEquals($attributes, $bag
      ->getAttributes());
  }

  /**
   * Test getting the username.
   *
   * @covers ::getUsername
   */
  public function testGetUsername() {
    $name = $this
      ->randomMachineName(8);
    $bag = new CasPropertyBag($name);
    $reflection = new \ReflectionClass($bag);
    $property = $reflection
      ->getProperty('username');
    $property
      ->setAccessible(TRUE);
    $new_name = $this
      ->randomMachineName(8);
    $property
      ->setValue($bag, $new_name);
    $this
      ->assertEquals($new_name, $bag
      ->getUsername());
    $this
      ->assertEquals($name, $bag
      ->getOriginalUsername());
  }

  /**
   * Test getting the proxy granting ticket.
   *
   * @covers ::getPgt
   */
  public function testGetPgt() {
    $bag = new CasPropertyBag($this
      ->randomMachineName(8));
    $reflection = new \ReflectionClass($bag);
    $property = $reflection
      ->getProperty('pgt');
    $property
      ->setAccessible(TRUE);
    $pgt = $this
      ->randomMachineName(24);
    $property
      ->setValue($bag, $pgt);
    $this
      ->assertEquals($pgt, $bag
      ->getPgt());
  }

  /**
   * Test getting the attributes.
   *
   * @covers ::getAttributes
   */
  public function testGetAttributes() {
    $bag = new CasPropertyBag($this
      ->randomMachineName(8));
    $reflection = new \ReflectionClass($bag);
    $property = $reflection
      ->getProperty('attributes');
    $property
      ->setAccessible(TRUE);
    $attributes = [
      'foo' => [
        'bar',
      ],
      'baz' => [
        'quux',
        'foobar',
      ],
    ];
    $property
      ->setValue($bag, $attributes);
    $this
      ->assertEquals($attributes, $bag
      ->getAttributes());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CasPropertyBagTest::testConstruct public function Test constructing a bag with a username.
CasPropertyBagTest::testGetAttributes public function Test getting the attributes.
CasPropertyBagTest::testGetPgt public function Test getting the proxy granting ticket.
CasPropertyBagTest::testGetUsername public function Test getting the username.
CasPropertyBagTest::testSetAttributes public function Test setting the attributes array.
CasPropertyBagTest::testSetPgt public function Test setting a proxy granting ticket.
CasPropertyBagTest::testSetUsername public function Test setting a username.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340