mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-03-02 07:39:45 +00:00
Merge branch 'master' into 2.3
This commit is contained in:
commit
4bdaa2b5a0
3 changed files with 58 additions and 0 deletions
36
build.xml
36
build.xml
|
@ -40,6 +40,9 @@
|
||||||
<include name="cake" />
|
<include name="cake" />
|
||||||
</fileset>
|
</fileset>
|
||||||
|
|
||||||
|
<fileset id="non-tests" dir="./lib/Cake">
|
||||||
|
<exclude name=".lib/Cake/Test" />
|
||||||
|
</fileset>
|
||||||
|
|
||||||
<!-- start fresh each time. Remove the dist and build dirs -->
|
<!-- start fresh each time. Remove the dist and build dirs -->
|
||||||
<target name="clean">
|
<target name="clean">
|
||||||
|
@ -205,10 +208,43 @@
|
||||||
<exec command="ssh cakephp@cakephp.org pirum add ${pirum.dir} ${pirum.dir}/${pear.package}.tgz" checkreturn="true" />
|
<exec command="ssh cakephp@cakephp.org pirum add ${pirum.dir} ${pirum.dir}/${pear.package}.tgz" checkreturn="true" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="codestyle" description="Check codestyle (human readable format)">
|
||||||
|
<phpcodesniffer
|
||||||
|
standard="CakePHP"
|
||||||
|
allowedFileExtensions="php">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
</phpcodesniffer>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="reports-ci">
|
||||||
|
<phpcodesniffer
|
||||||
|
standard="CakePHP"
|
||||||
|
allowedFileExtensions="php">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
<formatter type="checkstyle" outfile="checkstyle.xml" />
|
||||||
|
</phpcodesniffer>
|
||||||
|
<phpcpd
|
||||||
|
minLines="4"
|
||||||
|
minTokens="50">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
<formatter type="pmd" outfile="pmd-cpd.xml"/>
|
||||||
|
</phpcpd>
|
||||||
|
<phpdepend>
|
||||||
|
<fileset refid="non-tests" />
|
||||||
|
<logger type="jdepend-xml" outfile="jdepend.xml"/>
|
||||||
|
</phpdepend>
|
||||||
|
<phpmd rulesets="codesize,unusedcode,design">
|
||||||
|
<fileset refid="non-tests" />
|
||||||
|
<formatter type="xml" outfile="reports/pmd.html"/>
|
||||||
|
</phpmd>
|
||||||
|
</target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Top level easy to type targets
|
Top level easy to type targets
|
||||||
-->
|
-->
|
||||||
<target name="build" depends="generate-package" description="Generate a pear package" />
|
<target name="build" depends="generate-package" description="Generate a pear package" />
|
||||||
<target name="release" depends="release-commit,build,distribute" description="Release a new version of CakePHP" />
|
<target name="release" depends="release-commit,build,distribute" description="Release a new version of CakePHP" />
|
||||||
|
<target name="code-reports" depends="reports-ci"
|
||||||
|
description="Run the code reports, generating XML output for CI server use." />
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -1752,6 +1752,10 @@ class Model extends Object implements CakeEventListener {
|
||||||
$this->_saveMulti($joined, $this->id, $db);
|
$this->_saveMulti($joined, $this->id, $db);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($success && $count === 0) {
|
||||||
|
$success = false;
|
||||||
|
}
|
||||||
|
|
||||||
if ($success && $count > 0) {
|
if ($success && $count > 0) {
|
||||||
if (!empty($this->data)) {
|
if (!empty($this->data)) {
|
||||||
if ($created) {
|
if ($created) {
|
||||||
|
|
|
@ -24,6 +24,24 @@ require_once dirname(__FILE__) . DS . 'ModelTestBase.php';
|
||||||
*/
|
*/
|
||||||
class ModelWriteTest extends BaseModelTest {
|
class ModelWriteTest extends BaseModelTest {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test save() failing when there is no data.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testInsertNoData() {
|
||||||
|
$this->loadFixtures('Bid');
|
||||||
|
$Bid = ClassRegistry::init('Bid');
|
||||||
|
|
||||||
|
$this->assertFalse($Bid->save());
|
||||||
|
|
||||||
|
$result = $Bid->save(array('Bid' => array()));
|
||||||
|
$this->assertFalse($result);
|
||||||
|
|
||||||
|
$result = $Bid->save(array('Bid' => array('not in schema' => 1)));
|
||||||
|
$this->assertFalse($result);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* testInsertAnotherHabtmRecordWithSameForeignKey method
|
* testInsertAnotherHabtmRecordWithSameForeignKey method
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue