mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #153 from ajibarra/e4c1f28d849c6a60c369265a502315260babe80b
Preventing AppModel to be inspected inside CakeSchema
This commit is contained in:
commit
7596fcf45a
2 changed files with 44 additions and 3 deletions
|
@ -229,6 +229,11 @@ class CakeSchema extends Object {
|
|||
foreach ($models as $model) {
|
||||
$importModel = $model;
|
||||
$plugin = null;
|
||||
|
||||
if ($model == 'AppModel') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (isset($this->plugin)) {
|
||||
if ($model == $this->plugin . 'AppModel') {
|
||||
continue;
|
||||
|
@ -324,6 +329,7 @@ class CakeSchema extends Object {
|
|||
|
||||
ksort($tables);
|
||||
return compact('name', 'tables');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -603,6 +603,41 @@ class CakeSchemaTest extends CakeTestCase {
|
|||
$this->assertFalse(isset($read['tables']['missing']['posts_tags']), 'Join table marked as missing');
|
||||
}
|
||||
|
||||
/**
|
||||
* testSchemaReadWithAppModel method
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function testSchemaReadWithAppModel() {
|
||||
$connections = ConnectionManager::enumConnectionObjects();
|
||||
if (!empty($connections['default'])) {
|
||||
$backup = $connections['default'];
|
||||
ConnectionManager::drop('default');
|
||||
}
|
||||
ConnectionManager::create('default', $connections['test']);
|
||||
try {
|
||||
$read = $this->Schema->read(array(
|
||||
'connection' => 'default',
|
||||
'name' => 'TestApp',
|
||||
'models' => array('AppModel')
|
||||
));
|
||||
unset($read['tables']['missing']);
|
||||
$this->assertTrue(empty($read['tables']));
|
||||
if (!empty($backup)) {
|
||||
ConnectionManager::drop('default');
|
||||
ConnectionManager::create('default', $backup);
|
||||
}
|
||||
} catch(MissingTableException $mte) {
|
||||
if (!empty($backup)) {
|
||||
ConnectionManager::drop('default');
|
||||
ConnectionManager::create('default', $backup);
|
||||
}
|
||||
$this->fail($mte->getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* testSchemaReadWithOddTablePrefix method
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue