5

我想为我正在创建的 CakePHP shell 编写单元测试,但在测试文档或烘焙中没有提到它们:

---------------------------------------------------------------
Bake Tests
Path: /home/brad/sites/farmlogs/app/Test/
---------------------------------------------------------------
---------------------------------------------------------------
Select an object type:
---------------------------------------------------------------
1. Model
2. Controller
3. Component
4. Behavior
5. Helper
Enter the type of object to bake a test for or (q)uit (1/2/3/4/5/q) 

由于 CakePHP 似乎没有默认的 shell 测试设置,我的基本 shell 测试的结构应该是什么样的?

4

2 回答 2

6

从 Mark Story 的AssetCompress和 CakeDC 的Migrations中的示例来看,只需模仿其他测试的目录结构:

Test/
  Case/
    Console/
      Command/
        Task/
          MyShellTaskTest.php
        MyShellTest.php

您的测试可以扩展 CakeTestCase 对象,就像任何其他通用测试一样:

class MyShellTest extends CakeTestCase {
}

如果需要,您可以覆盖基本 shell,就像使用 Controller 测试一样:

class TestMyShell extends MyShell {
}

没什么特别的,只要遵守约定。

于 2012-09-18T16:13:37.097 回答
1

我认为 app/lib/lib/Cake/Console/Command/TestShellTest.php 可以作为参考。

1、在app/Test/Case/Console/Command/yourfile.php中创建文件,使用App::uses('your class', 'relative path').
例如:

App::uses('yourShellClass', 'Console/Command');
App::uses('ShellDispatcher', 'Console');
App::uses('Shell', 'Console');

2、从你的shell类A编写一个模拟类B,其函数使用A类中的数据返回。例如:

 class TestYourShellClass extends YourShellClass {
         public function F1 ($parms){
               //if you need use database here, you can 
               //$this->yourModel = ClassRegistry::init('yourModel');
               return $this->_F1($parms);      
         }

    }

3、编写A类的测试类,需要在启动时初始化。例如:

 class YourShellClassTest extends CakeTestCase {
        public function setUp()
        {
            parent::setUp();
            $out = $this->getMock('ConsoleOutput', [], [], '', false);
            $in = $this->getMock('ConsoleInput', [], [], '', false);
            $this->Shell = $this->getMock(
                // this is your class B, which mocks class A.
                'TestYourShellClass',
                ['in', 'out', 'hr', 'help', 'error', 'err', '_stop', 'initialize', '_run', 'clear'],
                [$out, $out, $in]
            );
            $this->Shell->OptionParser = $this->getMock('ConsoleOptionParser', [], [null, false]);
        }

        /**
         *  tear down method.
         *  
         *  @return void
         */
        public function tearDown()
        {
            parent::tearDown();
            unset($this->Dispatch, $this->Shell);
        }       
   }

4、测试功能可以这样。

 /**
 *  test _F1.
 *  
 *  @return void
 */
public function testF1()
{
    $this->Shell->startup();
    $return = $this->Shell->F1();
    $expectedSellerCount = 14;
    $this->assertSame($expectedSellerCount, $return);
}

然后你可以在http://yourdomain/test.php查看结果

于 2017-03-14T07:08:53.080 回答