Viewing file: SignedResponseTest.php (1.55 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * Unit tests for Response messages signed */ class OneLogin_Saml_SignedResponseTest extends PHPUnit_Framework_TestCase { private $_settings;
/** * Initializes the Test Suite */ public function setUp() { $settingsDir = TEST_ROOT .'/settings/'; include $settingsDir.'settings1.php';
$settings = new OneLogin_Saml2_Settings($settingsInfo); $this->_settings = $settings; }
/** * Tests the getNameId method of the OneLogin_Saml2_Response * Case valid signed response, unsigned assertion * * @covers OneLogin_Saml2_Response::getNameId */ public function testResponseSignedAssertionNot() { // The Response is signed, the Assertion is not $message = file_get_contents(TEST_ROOT . '/data/responses/open_saml_response.xml'); $response = new OneLogin_Saml2_Response($this->_settings, base64_encode($message));
$this->assertEquals('someone@example.org', $response->getNameId()); }
/** * Tests the getNameId method of the OneLogin_Saml2_Response * Case valid signed response, signed assertion * * @covers OneLogin_Saml2_Response::getNameId */ public function testResponseAndAssertionSigned() { // Both the Response and the Asseretion are signed $message = file_get_contents(TEST_ROOT . '/data/responses/simple_saml_php.xml'); $response = new OneLogin_Saml2_Response($this->_settings, base64_encode($message));
$this->assertEquals('someone@example.com', $response->getNameId()); } }
|