Пример #1
0
 /**
  * Test run Error Controller
  */
 public function testErrorController()
 {
     // setup Request
     Request::setRequestUri(uniqid('module') . '/' . uniqid('controller'));
     Request::setMethod(Request::METHOD_GET);
     // run Application
     $this->getApp()->process();
     $this->assertEquals(Router::getErrorModule(), $this->getApp()->getModule());
     $this->assertEquals(Router::getErrorController(), $this->getApp()->getController());
 }
Пример #2
0
 /**
  * prepareRequest
  *
  * @param string $uri in format "module/controllers"
  * @param array $params of request
  * @param string $method HTTP
  * @param bool $ajax
  * @return Http\Request
  */
 private function prepareRequest($uri, array $params = null, $method = Http\Request::METHOD_GET, $ajax = false)
 {
     Request::setRequestUri($uri);
     Request::setOptions(Config::getData('request'));
     Request::setMethod($method);
     // process $_GET params
     if ($query = stristr($uri, '?')) {
         $query = substr($query, 1);
         // remove `?` sign
         parse_str($query, $_GET);
         // fill $_GET
     }
     // process custom params
     if ($params) {
         Request::setParams($params);
     }
     if ($ajax) {
         $_SERVER['HTTP_ACCEPT'] = 'application/json';
         $_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
     } else {
         $_SERVER['HTTP_ACCEPT'] = 'text/html';
     }
 }
Пример #3
0
 /**
  * HEAD should return EXCEPTION
  * @expectedException \Bluz\Application\Exception\NotImplementedException
  */
 public function testNotImplementedException()
 {
     Request::setMethod(Request::METHOD_TRACE);
     $this->processRest();
 }
Пример #4
0
 /**
  * HEAD should return EXCEPTION
  * @expectedException \Bluz\Application\Exception\NotImplementedException
  */
 public function testNotImplementedException()
 {
     Request::setMethod(Request::METHOD_HEAD);
     $this->processCrud();
 }