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
d712605a
Commit
d712605a
authored
May 09, 2013
by
Rusinov Maxim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added and resolved Sqlite tests #15.
parent
aad6d7d9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
180 additions
and
22 deletions
+180
-22
.travis.yml
.travis.yml
+1
-0
Schema.php
framework/db/sqlite/Schema.php
+1
-1
DatabaseTestCase.php
tests/unit/DatabaseTestCase.php
+51
-0
config.php
tests/unit/data/config.php
+12
-6
mysql.sql
tests/unit/data/mysql.sql
+1
-5
sqlite.sql
tests/unit/data/sqlite.sql
+0
-0
DbCacheTest.php
tests/unit/framework/caching/DbCacheTest.php
+2
-1
ActiveRecordTest.php
tests/unit/framework/db/ActiveRecordTest.php
+2
-1
CommandTest.php
tests/unit/framework/db/CommandTest.php
+1
-1
ConnectionTest.php
tests/unit/framework/db/ConnectionTest.php
+5
-6
QueryTest.php
tests/unit/framework/db/QueryTest.php
+1
-1
SqliteActiveRecordTest.php
tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php
+13
-0
SqliteCommandTest.php
tests/unit/framework/db/sqlite/SqliteCommandTest.php
+22
-0
SqliteConnectionTest.php
tests/unit/framework/db/sqlite/SqliteConnectionTest.php
+47
-0
SqliteQueryTest.php
tests/unit/framework/db/sqlite/SqliteQueryTest.php
+21
-0
No files found.
.travis.yml
View file @
d712605a
...
...
@@ -7,6 +7,7 @@ php:
env
:
-
DB=mysql
-
DB=sqlite
before_script
:
-
sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS yiitest;'; fi"
...
...
framework/db/sqlite/Schema.php
View file @
d712605a
...
...
@@ -169,7 +169,7 @@ class Schema extends \yii\db\Schema
}
}
}
$column
->
phpType
=
$this
->
getColumnPhpType
(
$
this
->
type
);
$column
->
phpType
=
$this
->
getColumnPhpType
(
$
column
);
$value
=
$info
[
'dflt_value'
];
if
(
$column
->
type
===
'string'
)
{
...
...
tests/unit/DatabaseTestCase.php
0 → 100644
View file @
d712605a
<?php
namespace
yiiunit
;
class
DatabaseTestCase
extends
TestCase
{
protected
$database
;
protected
$driverName
=
'mysql'
;
protected
$db
;
protected
function
setUp
()
{
$databases
=
$this
->
getParam
(
'databases'
);
$this
->
database
=
$databases
[
$this
->
driverName
];
$pdo_database
=
'pdo_'
.
$this
->
driverName
;
if
(
!
extension_loaded
(
'pdo'
)
||
!
extension_loaded
(
$pdo_database
))
{
$this
->
markTestSkipped
(
'pdo and pdo_'
.
$pdo_database
.
' extension are required.'
);
}
}
/**
* @param bool $reset whether to clean up the test database
* @param bool $open whether to open and populate test database
* @return \yii\db\Connection
*/
public
function
getConnection
(
$reset
=
true
,
$open
=
true
)
{
if
(
!
$reset
&&
$this
->
db
)
{
return
$this
->
db
;
}
$db
=
new
\yii\db\Connection
;
$db
->
dsn
=
$this
->
database
[
'dsn'
];
if
(
isset
(
$this
->
database
[
'username'
]))
{
$db
->
username
=
$this
->
database
[
'username'
];
$db
->
password
=
$this
->
database
[
'password'
];
}
if
(
$open
)
{
$db
->
open
();
$lines
=
explode
(
';'
,
file_get_contents
(
$this
->
database
[
'fixture'
]));
foreach
(
$lines
as
$line
)
{
if
(
trim
(
$line
)
!==
''
)
{
$db
->
pdo
->
exec
(
$line
);
}
}
}
$this
->
db
=
$db
;
return
$db
;
}
}
\ No newline at end of file
tests/unit/data/config.php
View file @
d712605a
<?php
return
array
(
'mysql'
=>
array
(
'dsn'
=>
'mysql:host=127.0.0.1;dbname=yiitest'
,
'username'
=>
'travis'
,
'password'
=>
''
,
'fixture'
=>
__DIR__
.
'/mysql.sql'
,
),
'databases'
=>
array
(
'mysql'
=>
array
(
'dsn'
=>
'mysql:host=127.0.0.1;dbname=yiitest'
,
'username'
=>
'travis'
,
'password'
=>
''
,
'fixture'
=>
__DIR__
.
'/mysql.sql'
,
),
'sqlite'
=>
array
(
'dsn'
=>
'sqlite::memory:'
,
'fixture'
=>
__DIR__
.
'/sqlite.sql'
,
),
)
);
tests/unit/data/mysql.sql
View file @
d712605a
/**
* This is the database schema for testing MySQL support of Yii DAO and Active Record.
* The following database setup is required to perform then relevant tests:
* Database name: yiitest
* username: test
* password: test
* charset: utf8
* The database setup in config.php is required to perform then relevant tests:
*/
DROP
TABLE
IF
EXISTS
tbl_order_item
CASCADE
;
...
...
tests/unit/data/sqlite.sql
View file @
d712605a
This diff is collapsed.
Click to expand it.
tests/unit/framework/caching/DbCacheTest.php
View file @
d712605a
...
...
@@ -35,7 +35,8 @@ class DbCacheTest extends CacheTest
function
getConnection
(
$reset
=
true
)
{
if
(
$this
->
_connection
===
null
)
{
$params
=
$this
->
getParam
(
'mysql'
);
$databases
=
$this
->
getParam
(
'databases'
);
$params
=
$databases
[
'mysql'
];
$db
=
new
\yii\db\Connection
;
$db
->
dsn
=
$params
[
'dsn'
];
$db
->
username
=
$params
[
'username'
];
...
...
tests/unit/framework/db/ActiveRecordTest.php
View file @
d712605a
...
...
@@ -10,10 +10,11 @@ use yiiunit\data\ar\OrderItem;
use
yiiunit\data\ar\Order
;
use
yiiunit\data\ar\Item
;
class
ActiveRecordTest
extends
\yiiunit\
Mysql
TestCase
class
ActiveRecordTest
extends
\yiiunit\
Database
TestCase
{
public
function
setUp
()
{
parent
::
setUp
();
ActiveRecord
::
$db
=
$this
->
getConnection
();
}
...
...
tests/unit/framework/db/CommandTest.php
View file @
d712605a
...
...
@@ -7,7 +7,7 @@ use yii\db\Command;
use
yii\db\Query
;
use
yii\db\DataReader
;
class
CommandTest
extends
\yiiunit\
Mysql
TestCase
class
CommandTest
extends
\yiiunit\
Database
TestCase
{
function
testConstruct
()
{
...
...
tests/unit/framework/db/ConnectionTest.php
View file @
d712605a
...
...
@@ -4,12 +4,12 @@ namespace yiiunit\framework\db;
use
yii\db\Connection
;
class
ConnectionTest
extends
\yiiunit\
Mysql
TestCase
class
ConnectionTest
extends
\yiiunit\
Database
TestCase
{
function
testConstruct
()
{
$connection
=
$this
->
getConnection
(
false
);
$params
=
$this
->
getParam
(
'mysql'
)
;
$params
=
$this
->
database
;
$this
->
assertEquals
(
$params
[
'dsn'
],
$connection
->
dsn
);
$this
->
assertEquals
(
$params
[
'username'
],
$connection
->
username
);
...
...
@@ -18,7 +18,7 @@ class ConnectionTest extends \yiiunit\MysqlTestCase
function
testOpenClose
()
{
$connection
=
$this
->
getConnection
(
false
);
$connection
=
$this
->
getConnection
(
false
,
false
);
$this
->
assertFalse
(
$connection
->
isActive
);
$this
->
assertEquals
(
null
,
$connection
->
pdo
);
...
...
@@ -39,9 +39,8 @@ class ConnectionTest extends \yiiunit\MysqlTestCase
function
testGetDriverName
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
'mysql'
,
$connection
->
driverName
);
$this
->
assertFalse
(
$connection
->
isActive
);
$connection
=
$this
->
getConnection
(
false
,
false
);
$this
->
assertEquals
(
$this
->
driverName
,
$connection
->
driverName
);
}
function
testQuoteValue
()
...
...
tests/unit/framework/db/QueryTest.php
View file @
d712605a
...
...
@@ -7,7 +7,7 @@ use yii\db\Command;
use
yii\db\Query
;
use
yii\db\DataReader
;
class
QueryTest
extends
\yiiunit\
Mysql
TestCase
class
QueryTest
extends
\yiiunit\
Database
TestCase
{
function
testSelect
()
{
...
...
tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php
0 → 100644
View file @
d712605a
<?php
namespace
yiiunit\framework\db\sqlite
;
class
SqliteActiveRecordTest
extends
\yiiunit\framework\db\ActiveRecordTest
{
public
function
setUp
()
{
$this
->
driverName
=
'sqlite'
;
parent
::
setUp
();
}
}
\ No newline at end of file
tests/unit/framework/db/sqlite/SqliteCommandTest.php
0 → 100644
View file @
d712605a
<?php
namespace
yiiunit\framework\db\sqlite
;
class
SqliteCommandTest
extends
\yiiunit\framework\db\CommandTest
{
public
function
setUp
()
{
$this
->
driverName
=
'sqlite'
;
parent
::
setUp
();
}
function
testAutoQuoting
()
{
$db
=
$this
->
getConnection
(
false
);
$sql
=
'SELECT [[id]], [[t.name]] FROM {{tbl_customer}} t'
;
$command
=
$db
->
createCommand
(
$sql
);
$this
->
assertEquals
(
"SELECT
\"
id
\"
, 't'.
\"
name
\"
FROM 'tbl_customer' t"
,
$command
->
sql
);
}
}
\ No newline at end of file
tests/unit/framework/db/sqlite/SqliteConnectionTest.php
0 → 100644
View file @
d712605a
<?php
namespace
yiiunit\framework\db\sqlite
;
class
SqliteConnectionTest
extends
\yiiunit\framework\db\ConnectionTest
{
public
function
setUp
()
{
$this
->
driverName
=
'sqlite'
;
parent
::
setUp
();
}
function
testConstruct
()
{
$connection
=
$this
->
getConnection
(
false
);
$params
=
$this
->
database
;
$this
->
assertEquals
(
$params
[
'dsn'
],
$connection
->
dsn
);
}
function
testQuoteValue
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
123
,
$connection
->
quoteValue
(
123
));
$this
->
assertEquals
(
"'string'"
,
$connection
->
quoteValue
(
'string'
));
$this
->
assertEquals
(
"'It''s interesting'"
,
$connection
->
quoteValue
(
"It's interesting"
));
}
function
testQuoteTableName
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
"'table'"
,
$connection
->
quoteTableName
(
'table'
));
$this
->
assertEquals
(
"'schema'.'table'"
,
$connection
->
quoteTableName
(
'schema.table'
));
$this
->
assertEquals
(
'{{table}}'
,
$connection
->
quoteTableName
(
'{{table}}'
));
$this
->
assertEquals
(
'(table)'
,
$connection
->
quoteTableName
(
'(table)'
));
}
function
testQuoteColumnName
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
'"column"'
,
$connection
->
quoteColumnName
(
'column'
));
$this
->
assertEquals
(
"'table'.
\"
column
\"
"
,
$connection
->
quoteColumnName
(
'table.column'
));
$this
->
assertEquals
(
'[[column]]'
,
$connection
->
quoteColumnName
(
'[[column]]'
));
$this
->
assertEquals
(
'{{column}}'
,
$connection
->
quoteColumnName
(
'{{column}}'
));
$this
->
assertEquals
(
'(column)'
,
$connection
->
quoteColumnName
(
'(column)'
));
}
}
tests/unit/framework/db/sqlite/SqliteQueryTest.php
0 → 100644
View file @
d712605a
<?php
/**
* Created by JetBrains PhpStorm.
* User: RusMaxim
* Date: 09.05.13
* Time: 21:41
* To change this template use File | Settings | File Templates.
*/
namespace
yiiunit\framework\db\sqlite
;
class
SqliteQueryTest
extends
\yiiunit\framework\db\QueryTest
{
public
function
setUp
()
{
$this
->
driverName
=
'sqlite'
;
parent
::
setUp
();
}
}
\ No newline at end of file
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