summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitattributes2
-rw-r--r--tests/simple_unit/Tickets/Ticket589Test.php22
-rw-r--r--tests/simple_unit/Tickets/sqlmap.xml21
3 files changed, 45 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index 82d13fe6..64f8a224 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -2834,6 +2834,8 @@ tests/simple_unit/TableGateway/MagicCallTest.php -text
tests/simple_unit/TableGateway/TableGatewayPgsqlTest.php -text
tests/simple_unit/TableGateway/TableInfoGatewayTest.php -text
tests/simple_unit/TableGateway/TestFindByPk.php -text
+tests/simple_unit/Tickets/Ticket589Test.php -text
+tests/simple_unit/Tickets/sqlmap.xml -text
tests/simple_unit/application.xml -text
tests/simple_unit/unit.php -text
tests/simple_unit/ws.php -text
diff --git a/tests/simple_unit/Tickets/Ticket589Test.php b/tests/simple_unit/Tickets/Ticket589Test.php
new file mode 100644
index 00000000..26f4f7ed
--- /dev/null
+++ b/tests/simple_unit/Tickets/Ticket589Test.php
@@ -0,0 +1,22 @@
+<?php
+
+Prado::using('System.Data.SqlMap.TSqlMapManager');
+
+class Ticket589Test extends UnitTestCase
+{
+ function test()
+ {
+ $manager = new TSqlMapManager();
+ try
+ {
+ $manager->configureXml(dirname(__FILE__).'/sqlmap.xml');
+ $this->fail();
+ }catch(TSqlMapConfigurationException $e)
+ {
+ $expect = 'Invalid property \'parametrClass\' for class \'TSqlMapStatement\' for tag \'<statement id="findNotVisitedWatchedTopicList"';
+ $this->assertEqual(strpos($e->getMessage(),$expect),0);
+ }
+ }
+}
+
+?> \ No newline at end of file
diff --git a/tests/simple_unit/Tickets/sqlmap.xml b/tests/simple_unit/Tickets/sqlmap.xml
new file mode 100644
index 00000000..81918fbc
--- /dev/null
+++ b/tests/simple_unit/Tickets/sqlmap.xml
@@ -0,0 +1,21 @@
+<sqlmap>
+
+ <statement
+ id="findNotVisitedWatchedTopicList"
+ resultClass="TopicRecord"
+ parametrClass="array"
+ >
+ <![CDATA[
+ SELECT rt.*
+ FROM rbx_watched_topic as rwt
+ LEFT JOIN rbx_topic as rt
+ ON rwt.topic_id = rt.topic_id
+ WHERE user_id = #user_id# AND
+ ( rt.created > #last_visit# OR
+ rt.modified > #last_visit# OR
+ rwt.visited = 0 )
+ ORDER BY rt.title ASC
+ ]]>
+ </statement>
+
+</sqlmap> \ No newline at end of file