Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
ee1689da
Commit
ee1689da
authored
Nov 01, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some more on active record unit tests and sqlite
sqlite does not seem to allow using boolean values in select query
parent
937a55f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
5 deletions
+25
-5
ActiveRecordTest.php
tests/unit/framework/db/ActiveRecordTest.php
+19
-0
SqliteActiveRecordTest.php
tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php
+6
-5
No files found.
tests/unit/framework/db/ActiveRecordTest.php
View file @
ee1689da
...
...
@@ -427,6 +427,25 @@ class ActiveRecordTest extends DatabaseTestCase
$this
->
assertEquals
(
''
,
$record
->
stringcol
);
}
public
function
testStoreEmpty
()
{
$record
=
new
NullValues
();
$record
->
id
=
1
;
// this is to simulate empty html form submission
$record
->
var1
=
''
;
$record
->
var2
=
''
;
$record
->
var3
=
''
;
$record
->
stringcol
=
''
;
$record
->
save
(
false
);
$this
->
assertTrue
(
$record
->
refresh
());
// https://github.com/yiisoft/yii2/commit/34945b0b69011bc7cab684c7f7095d837892a0d4#commitcomment-4458225
$this
->
assertTrue
(
$record
->
var1
===
$record
->
var2
);
$this
->
assertTrue
(
$record
->
var2
===
$record
->
var3
);
}
/**
* Some PDO implementations(e.g. cubrid) do not support boolean values.
* Make sure this does not affect AR layer.
...
...
tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php
View file @
ee1689da
...
...
@@ -35,10 +35,11 @@ class SqliteActiveRecordTest extends ActiveRecordTest
// evaluate to false or null so we accept it
$this
->
assertTrue
(
0
==
$customer
->
status
);
$customers
=
Customer
::
find
()
->
where
([
'status'
=>
true
])
->
all
();
$this
->
assertEquals
(
2
,
count
(
$customers
));
$customers
=
Customer
::
find
()
->
where
([
'status'
=>
false
])
->
all
();
$this
->
assertEquals
(
1
,
count
(
$customers
));
// select with boolean values does not seem to work in sqlite
// $customers = Customer::find()->where(['status' => true])->all();
// $this->assertEquals(2, count($customers));
//
// $customers = Customer::find()->where(['status' => false])->all();
// $this->assertEquals(1, count($customers));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment