Example #1
0
 public function test_get_effective_user_name()
 {
     // Guessing this test should be accurate most of the time... unless run via sudo
     $whoami = trim(shell_exec('whoami'));
     $shell = new Shell();
     $username = $shell->get_effective_user_name();
     $this->assertEquals($whoami, $username, 'Effective user name');
 }