我正在尝试对我的模型进行简单的单元测试。问题是每次运行测试时,我的数据库表都被删除了。我有公共$ dropTables = false;任何人都可以找出为什么merchant_rejects表仍然被删除?正如您将看到的,我在我的夹具中尝试了许多不同的方法。
我想我必须逐步完成代码并找出删除表的时间。
以下是我的夹具MovieStarFixture.php的代码:
class MovieStarFixture extends CakeTestFixture {
// NEW TRY from http://stackoverflow.com/a/2548908/55124
var $name = 'MovieStar';
var $fields = array(
'id' => array(
'type'=>'string',
'null' => false,
'default' => NULL,
'length' => 36,
'key' => 'primary'),
'movie_id' => array(
'type'=>'string',
'null' => false,
'default' => NULL,
'length' => 36),
'trace' => array('type'=>'string', 'null' => false, 'default' => NULL),
'star_date' => array(
'type'=>'datetime',
'null' => false,
'default' => NULL),
'movie_star_type_id' => array(
'type'=>'string',
'null' => false,
'default' => NULL,
'length' => 36),
'code' => array('type'=>'text', 'null' => false, 'default' => NULL),
'amount' => array('type'=>'float', 'null' => false, 'default' => 0),
'movie_star_recurrance_id' => array(
'type'=>'string',
'null' => false,
'default' => NULL,
'length' => 36),
'open' => array('type'=>'boolean', 'null' => false, 'default' => '1'),
'loss_axia' => array('type'=>'float', 'null' => true, 'default' => 0),
'loss_mgr1' => array('type'=>'float', 'null' => true, 'default' => 0),
'loss_mgr2' => array('type'=>'float', 'null' => true, 'default' => 0),
'loss_rep' => array('type'=>'float', 'null' => true, 'default' => 0)
);
var $records = array(
array(
'id' => '52ab9259-0070-4583-8d6f-4ac6c0a81cd7',
'movie_id' => '440b7d13-5618-4560-be1d-93c5a2900a5e',
'trace' => '3331313133423',
'star_date' => '2013-12-13',
'movie_star_type_id' => '64f7c386-6725-4c62-83ac-ae309bec8b10',
'code' => 'C01',
'amount' => '222.0000',
'movie_star_recurrance_id' => '',
'open' => true,
'loss_axia' => '23.0000',
'loss_mgr1' => '0',
'loss_mgr2' => '0',
'loss_rep' => '0'
));
// THESE ARE ALL OF THE OTHER METHODS I HAVE TRIED
// Loading Fixture Methods / / / / / / / / / / / / / / / / / / / / / / / /
// #1 - Import model and records / / / / / / / / / / / / / / / / / / / / /
//public $import = array('model' => 'MovieStar', 'records' => true);
// #2 - Use onlt table info - no model / / / / / / / / / / / / / / / / / /
// public $import = array('table' => 'movie_stars', 'records' => true);
// #3 - Specify Model and Create Records - Binds Data to Database/ / / / /
/*
public $records = array(
array(
'MovieStar' => array(
'id' => '52ab917d-549c-493b-9ef5-54a1c0a81cd7',
'movie_id' => '440b7d13-5618-4560-be1d-93c5a2900a5e',
'trace' => '3331313133',
'star_date' => '2013-12-13',
'movie_star_type_id' => '64f7c386-6725-4c62-83ac-ae309bec8b10',
'code' => 'C01',
'amount' => '122.0000',
'movie_star_recurrance_id' => '',
'open' => true,
'loss_axia' => null,
'loss_mgr1' => null,
'loss_mgr2' => null,
'loss_rep' => null
)
)
);
public $import = array('model' => 'MovieStar', 'records' => false);
*/
// #4 - Specify Model and Create Records in Init / / / / / / / / / / / / /
// public $import = 'MovieStar';
/* public function init() {
$records = array(
array(
'MovieStar' => array(
'id' => '52ab917d-549c-493b-9ef5-54a1c0a81cd7',
'movie_id' => '440b7d13-5618-4560-be1d-93c5a2900a5e',
'trace' => '3331313133',
'star_date' => '2013-12-13',
'movie_star_type_id' => '64f7c386-6725-4c62-83ac-ae309bec8b10',
'code' => 'C01',
'amount' => '122.0000',
'movie_star_recurrance_id' => '523525',
'open' => true,
'loss_axia' => null,
'loss_mgr1' => null,
'loss_mgr2' => null,
'loss_rep' => null
)
)
);
parent::init();
}*/
// #5 - Try Model Setup / / / / / / / / / / / / / / / / / / / / / / / /
// This drops all records after the first test
/*public $records = array(
array(
'MovieStar' => array(
'id' => '52ab917d-549c-493b-9ef5-54a1c0a81cd7',
'movie_id' => '440b7d13-5618-4560-be1d-93c5a2900a5e',
'trace' => '3331313133',
'star_date' => '2013-12-13',
'movie_star_type_id' => '64f7c386-6725-4c62-83ac-ae309bec8b10',
'code' => 'C01',
'amount' => '122.0000',
'movie_star_recurrance_id' => '',
'open' => true,
'loss_axia' => null,
'loss_mgr1' => null,
'loss_mgr2' => null,
'loss_rep' => null
)
)
);
}*/
这是我的MovieStarTest.php:
<?php
App::uses('Controller', 'Controller');
App::uses('View', 'View');
App::uses('MovieStar', 'Model');
/**
* MovieStar Test Case
*
*/
class MovieStarTest extends CakeTestCase {
/**
* Fixtures
*
* @var array
*/
public $fixtures = array(
'app.movie_star'//,
//'app.movie_star_recurrance',
//'app.movie_star_type',
//'app.movie',
//'app.user',
//'app.movie_star_line',
//'app.movie_star_status'
);
public $autoFixtures = false;
public $dropTables = false;
/**
* setUp method
*
* @return void
*/
public function setUp() {
parent::setUp();
$this->MovieStar =& ClassRegistry::init('MovieStar');
$this->MovieStar->useDbConfig = 'test';
//$this->MovieStar->query("SELECT truncate_tables('axia')");
// load data
$this->loadFixtures('MovieStar');
}
/**
* tearDown method
*
* @return void
*/
public function testFixtures() {
$numberOfResults = $this->MovieStar->find('count');
debug($numberOfResults);
$resultGreaterThanMinimumValue = $numberOfResults > 2;
$this->assertTrue($resultGreaterThanMinimumValue);
}
public function testFixtures2() {
$numberOfResults = $this->MovieStar->find('count');
debug('$numberOfResults');
debug($numberOfResults);
$resultIsZero = $numberOfResults == 0;
$this->assertTrue($resultIsZero);
}
public function testFindStarsByMovieId() {
$movieId = '440b7d13-5618-4560-be1d-93c5a2900a5e';
$result = $this->MovieStar->findStarsByMovieId($movieId);
$expected = array(
array(
'MovieStar' => array(
'id' => '52ab9259-0070-4583-8d6f-4ac6c0a81cd7',
'movie_id' => '440b7d13-5618-4560-be1d-93c5a2900a5e',
'trace' => '3331313133423',
'star_date' => '2013-12-13',
'movie_star_type_id' => '64f7c386-6725-4c62-83ac-ae309bec8b10',
'code' => 'C01',
'amount' => '222.0000',
'movie_star_recurrance_id' => '',
'open' => true,
'loss_axia' => '23.0000',
'loss_mgr1' => null,
'loss_mgr2' => null,
'loss_rep' => null
)
)
);
debug("Expected");
debug($expected);
debug("Result");
debug($result);
$this->assertEquals($expected, $result);
}
public function tearDown() {
//$this->MovieStar->deleteAll(true, true);
//unset($this->MovieStar);
parent::tearDown();
}
}
我应该能够通过添加
来删除表 public $dropTables = false;
但我没有看到在lib / Cake / TestSuite / Fixture / CakeFixtureManager.php中检查此方法之前dropTables的值
实际上这会截断整个数据库。我的桌子被丢弃在哪里?
答案 0 :(得分:8)
接受的答案无法解决问题:
我有公共$ dropTables = false;任何人都可以找出原因 merchant_rejects表还在被删除吗?
来自cakephp docs:
$ dropTables
控制表创建/删除每个测试方法。
将此值设置为false可避免在已存在的情况下删除表 每种测试方法之间。表格仍将在最后删除 每个测试运行执行。
请注意这一部分:
在每个测试运行程序执行结束时仍会删除表
因此,即使您public $dropTables = false;
每次测试运行后仍然会丢弃与灯具相关联的表格。接受的答案并不能阻止这一点。
为防止这种情况,请执行以下操作...
像这样创建你的夹具:
class MovieStarFixture extends CakeTestFixture {
public $import = 'MovieStar';
//data will be loaded into this fixture by the test cases
// do not truncate movie_stars table between tests
public function truncate($db){
return null;
}
// do not drop movie_stars table between tests
public function drop($db){
return null;
}
}
这可以防止夹具在每种测试方法后截断和掉落。这是通过使夹具“假装”它下降并在测试之间截断表来完成的。但是这意味着夹具会认为表被删除并尝试在每个测试方法运行开始时重新创建它,这将导致错误(关于创建现有表的警告),所以你还必须...
这样做:
在MovieStarTest中添加
public $dropTables = false;
。 这样可以防止灯具试图掉落一张桌子 已经存在。由于没有在开始时丢弃一个表 在测试中,灯具不会尝试创建表格。这是 我们想要什么,因为该表已经存在。
现在,您将在CakeTestCase :: test *()方法调用之间保留数据。
答案 1 :(得分:3)
CakePHP在测试时创建和删除所有表是默认行为。
为每次测试(重新)创建它们,您有以下选择:
我使用选项号。 2因为我为CakePHP导入(和删除)每个测试的数据太多了。
public $import = array('model' => 'YourModel', 'records' => false, 'connection' => 'default');
我指定了连接“default”,以便CakePHP查找我的默认连接以导入架构信息。我认为问题是你的$ import变量试图从测试连接导入表。这些将在第一次运行后停止存在,当它们被丢弃时。
答案 2 :(得分:1)
看起来像lib / Cake / TestSuite / Fixture / CakeFixtureManager.php有一个用于删除数据库的shutDown()函数。我很想知道代码中的哪个位置应该在到达此函数之前检查$ dropTables值。
答案 3 :(得分:1)
根据Xavier的回答,您可以通过执行以下操作来确保只填充一次表,而无需在测试级别设置dropTables = false:
class MovieStarFixture extends CakeTestFixture
{
public $import = ['model' => 'MovieStar', 'connection' => 'default', 'records' => true];
private $created_flag = false;
public function create($db)
{
$success = null;
if (!$this->created_flag) {
$success = parent::create($db);
}
return $success;
}
public function truncate($db)
{
$success = null;
if (!$this->created_flag) {
$success = parent::truncate($db);
}
return $success;
}
public function insert($db)
{
$success = null;
if (!$this->created_flag) {
$success = parent::insert($db);
$this->created_flag = true;
}
return $success;
}
public function drop($db)
{
$success = null;
if (!$this->created_flag) {
$success = parent::drop($db);
}
}
}
在隔离和速度之间总是需要考虑,但是如果你有一个大的表在测试的整个生命周期内都不会被改变,那么这可以带来巨大的性能提升。