gpt4 book ai didi

database - CakePHP PHPUnit 装置每次都删除数据库表

转载 作者:太空狗 更新时间:2023-10-30 01:53:21 26 4
gpt4 key购买 nike

我正在尝试对我的模型运行一个简单的单元测试。问题是每次我运行测试时,我的数据库表都会被删除。我有 public $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 的值 enter image description here

实际上这会截断整个数据库。我的 table 丢在哪里了?

最佳答案

接受的答案没有解决问题:

I have public $dropTables = false; Can anyone figure out why the merchant_rejects table is still being dropped?

来自 cakephp 文档:

$dropTables

Control table create/drops on each test method.

Set this to false to avoid tables to be dropped if they already exist between each test method. Tables will still be dropped at the end of each test runner execution.

注意这部分:

Tables will still be dropped at the end of each test runner execution

因此,即使您public $dropTables = false; 在每次测试运行后绑定(bind)到 fixture 的表仍然会被删除。接受的答案不会阻止这种情况。

要防止这种情况,请执行以下操作...

像这样创建你的 fixture :

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;
}
}

这可以防止 fixture 在每个测试方法之后被截断和掉落。这是通过使 fixture “假装”它在测试之间删除和截断表来完成的。然而,这意味着 fixture 会认为表已删除并尝试在每个测试方法运行开始时重新创建它,这将导致错误(关于创建现有表的警告),因此您还必须...

这样做:

In MovieStarTest add public $dropTables = false;. This will prevent the fixture from attempting to drop a table if it already exists. As a result of not dropping a table at the beginning of a test, the fixture will not attempt to create the table. This is what we want because the table already exists.

现在您将在 CakeTestCase::test*() 方法调用之间保留数据。

关于database - CakePHP PHPUnit 装置每次都删除数据库表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21198435/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com