function SecureSiteScriptDigestMD5UnitTest::testSecureSiteScriptDigestMD5Stored in Secure Site 6.2
Same name and namespace in other branches
- 7.2 securesite.test \SecureSiteScriptDigestMD5UnitTest::testSecureSiteScriptDigestMD5Stored()
Check response to stored password.
File
- ./
securesite.test, line 274 - Tests for Secure Site module.
Class
- SecureSiteScriptDigestMD5UnitTest
- Unit tests for digest_md5.php.
Code
function testSecureSiteScriptDigestMD5Stored() {
$ha1 = md5($this->user->name . ':' . $this->challenge['realm'] . ':' . $this->user->pass_raw);
$response = md5($ha1 . ':' . $this->challenge['nonce'] . ':' . md5('GET:/'));
$this->data[] = 'nonce="' . $this->challenge['nonce'] . '"';
$this->data[] = 'response="' . $response . '"';
$command = $this->digest_md5 . ' data=' . escapeshellarg(implode(', ', $this->data)) . ' method=GET';
$authentication = _securesite_parse_directives(exec($command, $output, $status));
$rspauth = md5($ha1 . ':' . $this->challenge['nonce'] . ':' . md5(':/'));
$this
->assertTrue($status == 0 && isset($authentication['rspauth']) && $authentication['rspauth'] == $rspauth, t('Checking response to stored password.'));
}