1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179:
<?php
namespace Nethgui\Test\Unit\Nethgui\Utility;
class PamAuthenticatorTest extends \PHPUnit_Framework_TestCase
{
protected $object;
protected function setUp()
{
$this->object = new \Nethgui\Utility\PamAuthenticator();
$this->log = new \Nethgui\Log\Nullog();
}
private function addPasswordChatExpectations(\PHPUnit_Framework_MockObject_MockObject $mock)
{
$mock->expects($this->once())
->method('popen')
->with('/usr/bin/sudo /sbin/e-smith/pam-authenticate-pw >/dev/null 2>&1', 'w')
->will($this->returnValue('PipeDescriptor'));
$mock->expects($this->once())
->method('fwrite')
->with('PipeDescriptor', "user\npass")
->will($this->returnValue(9));
$mock->expects($this->once())
->method('pclose')
->with('PipeDescriptor')
->will($this->returnValue(0));
}
public function testPam0()
{
$phpwrapper = $this->getMock('Nethgui\Utility\PhpWrapper', array('popen', 'error_get_last'));
$phpwrapper->expects($this->once())
->method('popen')
->with('/usr/bin/sudo /sbin/e-smith/pam-authenticate-pw >/dev/null 2>&1', 'w')
->will($this->returnValue(FALSE));
$phpwrapper->expects($this->once())
->method('error_get_last')
->withAnyParameters()
->will($this->returnValue(array('type' => 'test', 'message' => 'expected failure', 'file' => __FILE__, 'line' => __LINE__)));
$object = new \Nethgui\Authorization\User($phpwrapper, $this->log);
$this->assertFalse($object->authenticate('user', 'pass'));
}
public function testPam1()
{
$phpwrapper = $this->getMockBuilder('Nethgui\Utility\PhpWrapper')
->disableArgumentCloning()
->setMethods(array('popen', 'fwrite', 'pclose', 'exec'))
->getMock();
$this->addPasswordChatExpectations($phpwrapper);
$phpwrapper->expects($this->once())
->method('exec')
->with($this->stringStartsWith('/usr/bin/id'), $this->anything(), $this->anything())
->will($this->returnCallback(function($cmd, &$output, &$exitCode) {
$exitCode = 0;
$output = array('g1 g2 g3');
}));
$object = new \Nethgui\Authorization\User($phpwrapper, $this->log);
$this->assertTrue($object->authenticate('user', 'pass'));
$this->assertEquals(array('g1', 'g2', 'g3'), $object->getCredential('groups'));
}
public function testPam2()
{
$phpwrapper = $this->getMock('Nethgui\Utility\PhpWrapper', array('popen', 'fwrite', 'pclose', 'exec'));
$this->addPasswordChatExpectations($phpwrapper);
$phpwrapper->expects($this->once())
->method('exec')
->withAnyParameters()
->will($this->returnCallback(function($cmd, &$output, &$exitCode) {
$exitCode = 1;
$output = array('error');
}));
$log = $this->getMock('Nethgui\Log\Nullog', array('warning'));
$log->expects($this->once())
->method('warning')
->withAnyParameters()
->will($this->returnValue($log))
;
$object = new \Nethgui\Authorization\User($phpwrapper, $log);
$this->assertTrue($object->authenticate('user', 'pass'));
$this->assertEquals(array(), $object->getCredential('groups'));
}
public function testAuthenticate()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
public function testGetLog()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
public function testSetLog()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
public function testSetPhpWrapper()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}