Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Tomáš Trávníček
doctrine-dbal
Commits
10e3407e
Commit
10e3407e
authored
Oct 28, 2009
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0][DDC-70] Added some EntityManager tests provided by beberlei.
parent
f572c372
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
122 additions
and
1 deletion
+122
-1
EntityManager.php
lib/Doctrine/ORM/EntityManager.php
+2
-0
EntityManagerTest.php
tests/Doctrine/Tests/ORM/EntityManagerTest.php
+120
-1
No files found.
lib/Doctrine/ORM/EntityManager.php
View file @
10e3407e
...
...
@@ -449,6 +449,7 @@ class EntityManager
*/
public
function
merge
(
$entity
)
{
$this
->
_errorIfClosed
();
return
$this
->
_unitOfWork
->
merge
(
$entity
);
}
...
...
@@ -461,6 +462,7 @@ class EntityManager
*/
public
function
copy
(
$entity
,
$deep
=
false
)
{
$this
->
_errorIfClosed
();
throw
DoctrineException
::
notImplemented
(
__FUNCTION__
,
__CLASS__
);
}
...
...
tests/Doctrine/Tests/ORM/EntityManagerTest.php
View file @
10e3407e
...
...
@@ -22,5 +22,124 @@ class EntityManagerTest extends \Doctrine\Tests\OrmTestCase
$this
->
fail
(
"Setting invalid flushmode did not trigger exception."
);
}
catch
(
\Doctrine\ORM\EntityManagerException
$expected
)
{}
$this
->
_em
->
setFlushMode
(
$prev
);
}
}
public
function
testGetConnection
()
{
$this
->
assertType
(
'\Doctrine\DBAL\Connection'
,
$this
->
_em
->
getConnection
());
}
public
function
testGetMetadataFactory
()
{
$this
->
assertType
(
'\Doctrine\ORM\Mapping\ClassMetadataFactory'
,
$this
->
_em
->
getMetadataFactory
());
}
public
function
testGetConfiguration
()
{
$this
->
assertType
(
'\Doctrine\ORM\Configuration'
,
$this
->
_em
->
getConfiguration
());
}
public
function
testGetUnitOfWork
()
{
$this
->
assertType
(
'\Doctrine\ORM\UnitOfWork'
,
$this
->
_em
->
getUnitOfWork
());
}
public
function
testGetProxyFactory
()
{
$this
->
assertType
(
'\Doctrine\ORM\Proxy\ProxyFactory'
,
$this
->
_em
->
getProxyFactory
());
}
public
function
testGetEventManager
()
{
$this
->
assertType
(
'\Doctrine\Common\EventManager'
,
$this
->
_em
->
getEventManager
());
}
public
function
testGetDefaultFlushMode_OnCommit
()
{
$this
->
assertEquals
(
\Doctrine\ORM\EntityManager
::
FLUSHMODE_COMMIT
,
$this
->
_em
->
getFlushMode
());
}
public
function
testCommit_FlushModeOnCommit_FlushUnitOfWork
()
{
$this
->
markTestSkipped
(
'_unitOfWork is private, but EntityManager does not use getUnitofWork() all the time'
);
$uow
=
$this
->
getMock
(
'\Doctrine\ORM\UnitOfWork'
,
array
(),
array
(),
''
,
false
);
$uow
->
expects
(
$this
->
once
())
->
method
(
'flush'
);
$this
->
_em
->
setUnitOfWork
(
$uow
);
$this
->
_em
->
setFlushMode
(
\Doctrine\ORM\EntityManager
::
FLUSHMODE_COMMIT
);
$this
->
assertSame
(
$uow
,
$this
->
_em
->
getUnitOfWork
());
$this
->
_em
->
beginTransaction
();
$this
->
_em
->
commit
();
}
public
function
testCommit_FlushModeAuto_FlushUnitOfWork
()
{
$this
->
markTestSkipped
(
'_unitOfWork is private, but EntityManager does not use getUnitofWork() all the time'
);
$uow
=
$this
->
getMock
(
'\Doctrine\ORM\UnitOfWork'
,
array
(),
array
(),
''
,
false
);
$uow
->
expects
(
$this
->
once
())
->
method
(
'flush'
);
$this
->
_em
->
setUnitOfWork
(
$uow
);
$this
->
_em
->
setFlushMode
(
\Doctrine\ORM\EntityManager
::
FLUSHMODE_AUTO
);
$this
->
assertSame
(
$uow
,
$this
->
_em
->
getUnitOfWork
());
$this
->
_em
->
beginTransaction
();
$this
->
_em
->
commit
();
}
public
function
testCreateNativeQuery
()
{
$rsm
=
new
\Doctrine\ORM\Query\ResultSetMapping
();
$query
=
$this
->
_em
->
createNativeQuery
(
'SELECT foo'
,
$rsm
);
$this
->
assertSame
(
'SELECT foo'
,
$query
->
getSql
());
}
public
function
testCreateQueryBuilder
()
{
$this
->
assertType
(
'\Doctrine\ORM\QueryBuilder'
,
$this
->
_em
->
createQueryBuilder
());
}
public
function
testCreateQuery_DqlIsOptional
()
{
$this
->
assertType
(
'\Doctrine\ORM\Query'
,
$this
->
_em
->
createQuery
());
}
public
function
testCreateQuery
()
{
$q
=
$this
->
_em
->
createQuery
(
'SELECT 1'
);
$this
->
assertType
(
'\Doctrine\ORM\Query'
,
$q
);
$this
->
assertEquals
(
'SELECT 1'
,
$q
->
getDql
());
}
static
public
function
dataAffectedByErrorIfClosedException
()
{
return
array
(
array
(
'flush'
),
array
(
'persist'
),
array
(
'remove'
),
array
(
'merge'
),
array
(
'refresh'
),
array
(
'copy'
),
);
}
/**
* @dataProvider dataAffectedByErrorIfClosedException
* @param string $methodName
*/
public
function
testAffectedByErrorIfClosedException
(
$methodName
)
{
$this
->
setExpectedException
(
'Doctrine\ORM\EntityManagerException'
,
'Closed'
);
$this
->
_em
->
close
();
$this
->
_em
->
$methodName
(
new
\stdClass
());
}
}
\ 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