mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Merge branch 'master' into 2.3
Conflicts: lib/Cake/Network/Http/HttpResponse.php
This commit is contained in:
commit
9c29fab4a4
3 changed files with 28 additions and 4 deletions
|
@ -128,7 +128,7 @@ class HttpSocketResponse implements ArrayAccess {
|
|||
* @return boolean
|
||||
*/
|
||||
public function isOk() {
|
||||
return $this->code == 200;
|
||||
return in_array($this->code, array(200, 201, 202, 203, 204, 205, 206));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -157,12 +157,36 @@ class HttpResponseTest extends CakeTestCase {
|
|||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = -1;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 201;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 'what?';
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 200;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 201;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 202;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 203;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 204;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 205;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 206;
|
||||
$this->assertTrue($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 207;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 208;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 209;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 210;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 226;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 288;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
$this->HttpResponse->code = 301;
|
||||
$this->assertFalse($this->HttpResponse->isOk());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -175,7 +175,7 @@ class CakeFixtureManager {
|
|||
return;
|
||||
}
|
||||
|
||||
$sources = $db->listSources();
|
||||
$sources = (array)$db->listSources();
|
||||
$table = $db->config['prefix'] . $fixture->table;
|
||||
$exists = in_array($table, $sources);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue