Example #1
0
 public function testConstruct()
 {
     $this->if($command = uniqid())->then->exception(function () use($command) {
         new TestedClass($command);
     })->isInstanceOf('\\InvalidArgumentException')->hasMessage(sprintf('Invalid command: %s', $command))->if($command = ':username!user@host COMMAND #channel param otherParam :Message')->then->object($object = new TestedClass($command))->isInstanceOf('\\Philip\\IRC\\Request')->boolean($object->isFromServer())->isEqualTo(false)->boolean($object->isFromUser())->isEqualTo(true)->boolean($object->getServer())->isEqualTo(false)->string($object->getSendingUser())->isEqualTo('username')->string($object->getHost())->isEqualTo('host')->string($object->getCommand())->isIdenticalTo('COMMAND')->string($object->getSource())->isEqualTo('#channel')->array($object->getParams())->isEqualTo(array('param', 'otherParam'))->string($object->getMessage())->isEqualTo('Message')->if($command = ':server.name COMMAND param otherParam :Message')->then->object($object = new TestedClass($command))->isInstanceOf('\\Philip\\IRC\\Request')->boolean($object->isFromServer())->isEqualTo(true)->boolean($object->isFromUser())->isEqualTo(false)->boolean($object->getSendingUser())->isEqualTo(false)->boolean($object->getSource())->isEqualTo(false)->boolean($object->getSource())->isEqualTo(false)->string($object->getServer())->isEqualTo('server.name')->string($object->getHost())->isEmpty()->string($object->getCommand())->isIdenticalTo('COMMAND')->array($object->getParams())->isEqualTo(array('param', 'otherParam'))->string($object->getMessage())->isEqualTo('Message')->if($command = ':username!user@host COMMAND #channel :Message')->then->object($object = new TestedClass($command))->isInstanceOf('\\Philip\\IRC\\Request')->array($object->getParams())->isEmpty()->if($command = ':server.name COMMAND :Message')->then->object($object = new TestedClass($command))->isInstanceOf('\\Philip\\IRC\\Request')->array($object->getParams())->isEmpty();
 }
Example #2
0
 public function updateFromRequest(Request $request)
 {
     $this->ipAddress = $request->getHost();
     $this->username = $request->getSendingUser();
     //depending on how different a Minion becomes from a user.
     // I may consider creating a UserFactory that creates Users/Minions
     if (stripos($this->username, 'Minion') !== false) {
         $this->setIsMinion(true);
     }
     if (!$this->getLevel()) {
         $this->level = 1;
     }
 }