1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2012, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\console\command\create;
- use lithium\util\Inflector;
- /**
- * Generate a Mock that extends the name of the given class in the `--library` namespace.
- *
- * `li3 create mock model Posts`
- * `li3 create --library=li3_plugin mock model Posts`
- *
- */
- class Mock extends \lithium\console\command\Create {
- /**
- * Get the namespace for the mock.
- *
- * @param string $request
- * @param array|string $options
- * @return string
- */
- protected function _namespace($request, $options = array()) {
- $request->params['command'] = $request->action;
- return parent::_namespace($request, array('prepend' => 'tests.mocks.'));
- }
- /**
- * Get the parent for the mock.
- *
- * @param string $request
- * @return string
- */
- protected function _parent($request) {
- $namespace = parent::_namespace($request);
- $class = Inflector::pluralize($request->action);
- return "\\{$namespace}\\{$class}";
- }
- /**
- * Get the class name for the mock.
- *
- * @param string $request
- * @return string
- */
- protected function _class($request) {
- $type = $request->action;
- $name = $request->args();
- if ($command = $this->_instance($type)) {
- $request->params['action'] = $name;
- $name = $command->invokeMethod('_class', array($request));
- }
- return Inflector::pluralize("Mock{$name}");
- }
- /**
- * Get the methods for the mock to override
- *
- * @param string $request
- * @return string
- */
- protected function _methods($request) {
- return null;
- }
- }
- ?>
|