function testCalling() { $manager = new Manager(); $tid = 1; $manager->getConfiguration()->set('Cti\\Direct\\Service', 'list', array('Common\\Api')); $response = $manager->call('Cti\\Direct\\Service', 'handle', array('request' => Request::create((object) array('action' => 'Api', 'method' => 'greet', 'tid' => $tid, 'type' => 'type', 'data' => array('Cti'))))); $this->assertSame($response->getResult(), "Hello, Cti!"); // test cache by tid $responseWithSameTid = $manager->call('Cti\\Direct\\Service', 'handle', array('request' => Request::create((object) array('action' => 'Api', 'method' => 'anotherGreet', 'tid' => $tid, 'type' => 'type', 'data' => array('Cti2'))))); $this->assertSame($response, $responseWithSameTid); // test exception $response = $manager->call('Cti\\Direct\\Service', 'handle', array('request' => Request::create((object) array('action' => 'Api', 'method' => 'exception', 'tid' => ++$tid, 'type' => 'type', 'data' => array('message'))))); $this->assertSame($response->getType(), 'exception'); $this->assertSame($response->getResult(), 'message'); $this->assertNotNull($response->getFile()); $this->assertNotNull($response->getLine()); // test incorrect action $response = $manager->call('Cti\\Direct\\Service', 'handle', array('request' => Request::create((object) array('action' => 'no_action', 'method' => 'no_method', 'tid' => ++$tid, 'type' => 'type', 'data' => array())))); $this->assertSame($response->getType(), 'exception'); $this->assertContains("Action no_action not found", $response->getResult()); // test incorrect method $response = $manager->call('Cti\\Direct\\Service', 'handle', array('request' => Request::create((object) array('action' => 'Api', 'method' => 'no_method', 'tid' => ++$tid, 'type' => 'type', 'data' => array())))); $this->assertSame($response->getType(), 'exception'); $this->assertContains("Method no_method not found", $response->getResult()); }
/** * @param Manager $manager * @param Request $request * @return Response * @throws Exception */ function handle(Manager $manager, Request $request) { $response = $request->generateResponse(); if (isset($this->responses[$request->getTid()])) { return $this->responses[$request->getTid()]; } try { if (!isset($this->classes[$request->getAction()])) { throw new Exception(sprintf("Action %s not found", $request->getAction())); } foreach ($this->actions[$request->getAction()] as $info) { if ($request->getMethod() == $info['name']) { $response->setType($request->getType()); $response->setResult($manager->call($this->classes[$request->getAction()], $request->getMethod(), $request->getData())); break; } } if (!$response->getType()) { throw new Exception(sprintf("Method %s not found", $response->getMethod())); } } catch (Exception $e) { $response->setType('exception'); $response->setResult($e->getMessage()); $response->setFile($e->getFile()); $response->setLine($e->getLine()); } return $this->responses[$response->getTid()] = $response; }
public function testCache() { $manager = new Manager(); $startTime = microtime(1); $manager->get('Inject\\FullClassName'); $manager->get('Inject\\ShortClassName'); $manager->get('Inject\\ByNamespace'); $manager->call('Common\\Application', 'extractModuleFromManager'); $parsingTime = microtime(1) - $startTime; $data = $manager->get('Cti\\Di\\Cache')->getData(); $manager = new Manager(); $manager->get('Cti\\Di\\Cache')->setData($data); $startTime = microtime(1); $manager->get('Inject\\FullClassName'); $manager->get('Inject\\ShortClassName'); $manager->get('Inject\\ByNamespace'); $manager->call('Common\\Application', 'extractModuleFromManager'); $cachedTime = microtime(1) - $startTime; $this->assertGreaterThan($cachedTime, $parsingTime); $this->assertNull($manager->get('Cti\\Di\\Cache')->get(2, array(3))); }
public function testMethodParamNotFoundException() { $this->setExpectedException('Exception'); $m = new Manager(); $m->call('Common\\Application', 'greet'); }