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
782f073e
Commit
782f073e
authored
May 28, 2007
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a failing test.
parent
b774c987
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
349 additions
and
180 deletions
+349
-180
MultiJoin2TestCase.php
tests/Query/MultiJoin2TestCase.php
+72
-0
MultiJoinTestCase.php
tests/Query/MultiJoinTestCase.php
+180
-180
classes.php
tests/classes.php
+95
-0
run.php
tests/run.php
+2
-0
No files found.
tests/Query/MultiJoin2TestCase.php
0 → 100644
View file @
782f073e
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
/**
* Doctrine_Query_MultiJoin2_TestCase
*
* @package Doctrine
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/
class
Doctrine_Query_MultiJoin2_TestCase
extends
Doctrine_UnitTestCase
{
public
function
testInitializeData
()
{
$query
=
new
Doctrine_Query
(
$this
->
connection
);
$cat
=
new
QueryTest_Category
();
$cat
->
rootCategoryId
=
0
;
$cat
->
parentCategoryId
=
0
;
$cat
->
name
=
"Cat1"
;
$cat
->
position
=
0
;
$cat
->
save
();
$board
=
new
QueryTest_Board
();
$board
->
name
=
"B1"
;
$board
->
categoryId
=
$cat
->
id
;
$board
->
position
=
0
;
$board
->
save
();
$author
=
new
QueryTest_User
();
$author
->
username
=
"romanb"
;
$author
->
save
();
$lastEntry
=
new
QueryTest_Entry
();
$lastEntry
->
authorId
=
$author
->
id
;
$lastEntry
->
date
=
1234
;
$lastEntry
->
save
();
}
public
function
testMultipleJoinFetchingWithDeepJoins
()
{
$query
=
new
Doctrine_Query
(
$this
->
connection
);
$categories
=
$query
->
select
(
"c.*, subCats.*, b.*, le.*, a.*"
)
->
from
(
"QueryTest_Category c"
)
->
leftJoin
(
"c.subCategories subCats"
)
->
leftJoin
(
"c.boards b"
)
->
leftJoin
(
"b.lastEntry le"
)
->
leftJoin
(
"le.author a"
)
->
where
(
"c.parentCategoryId = 0"
)
->
orderBy
(
"c.position ASC, subCats.position ASC, b.position ASC"
)
->
execute
();
}
}
tests/Query/MultiJoinTestCase.php
View file @
782f073e
This diff is collapsed.
Click to expand it.
tests/classes.php
View file @
782f073e
...
...
@@ -625,4 +625,99 @@ class ValidatorTest_FootballPlayer extends Doctrine_Record {
}
}
class
QueryTest_Category
extends
Doctrine_Record
{
/**
* The depth of the category inside the tree.
* Non-persistent field.
*
* @var integer
*/
public
$depth
;
/**
* Table definition.
*/
public
function
setTableDefinition
()
{
$this
->
hasColumn
(
'rootCategoryId as rootCategoryId'
,
'integer'
,
4
,
array
(
'default'
=>
0
));
$this
->
hasColumn
(
'parentCategoryId as parentCategoryId'
,
'integer'
,
4
,
array
(
'notnull'
,
'default'
=>
0
));
$this
->
hasColumn
(
'name as name'
,
'string'
,
50
,
array
(
'notnull'
,
'unique'
));
$this
->
hasColumn
(
'position as position'
,
'integer'
,
4
,
array
(
'default'
=>
0
,
'notnull'
));
}
/**
* Relations definition.
*/
public
function
setUp
()
{
$this
->
ownsMany
(
'QueryTest_Category as subCategories'
,
'subCategories.parentCategoryId'
);
$this
->
hasOne
(
'QueryTest_Category as rootCategory'
,
'QueryTest_Category.rootCategoryId'
);
$this
->
ownsMany
(
'QueryTest_Board as boards'
,
'QueryTest_Board.categoryId'
);
}
}
class
QueryTest_Board
extends
Doctrine_Record
{
/**
* Initializes the table definition.
*/
public
function
setTableDefinition
()
{
$this
->
hasColumn
(
'categoryId as categoryId'
,
'integer'
,
4
,
array
(
'notnull'
));
$this
->
hasColumn
(
'name as name'
,
'string'
,
100
,
array
(
'notnull'
,
'unique'
));
$this
->
hasColumn
(
'lastEntryId as lastEntryId'
,
'integer'
,
4
,
array
(
'default'
=>
0
,
'notnull'
));
$this
->
hasColumn
(
'position as position'
,
'integer'
,
4
,
array
(
'default'
=>
0
,
'notnull'
));
}
/**
* Initializes the relations.
*/
public
function
setUp
()
{
$this
->
hasOne
(
'QueryTest_Category as category'
,
'QueryTest_Board.categoryId'
);
$this
->
ownsOne
(
'QueryTest_Entry as lastEntry'
,
'QueryTest_Board.lastEntryId'
);
}
}
class
QueryTest_Entry
extends
Doctrine_Record
{
/**
* Table structure.
*/
public
function
setTableDefinition
()
{
$this
->
hasColumn
(
'authorId as authorId'
,
'integer'
,
4
,
array
(
'notnull'
));
$this
->
hasColumn
(
'date as date'
,
'integer'
,
4
,
array
(
'notnull'
));
}
/**
* Runtime definition of the relationships to other entities.
*/
public
function
setUp
()
{
$this
->
hasOne
(
'QueryTest_User as author'
,
'QueryTest_Entry.authorId'
);
}
}
class
QueryTest_User
extends
Doctrine_Record
{
public
function
setTableDefinition
()
{
$this
->
hasColumn
(
'username as username'
,
'string'
,
50
,
array
(
'notnull'
,
'unique'
));
}
}
?>
tests/run.php
View file @
782f073e
...
...
@@ -202,6 +202,8 @@ $test->addTestCase(new Doctrine_CustomResultSetOrderTestCase());
$test
->
addTestCase
(
new
Doctrine_Query_MultiJoin_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_MultiJoin2_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_ReferenceModel_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_ComponentAlias_TestCase
());
...
...
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