aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-09-04 16:48:02 +0200
committerRobin Appelman <robin@icewind.nl>2019-09-06 12:28:17 +0200
commit8ef5a366eccaab850dab4641619c704a0b36f3d9 (patch)
tree66358c6d83850bc3ef08a65db5730e764779f0ca /tests/lib
parent6d20876eb2aae5cb2269c7551e7a4f43e7a31222 (diff)
downloadnextcloud-server-8ef5a366eccaab850dab4641619c704a0b36f3d9.tar.gz
nextcloud-server-8ef5a366eccaab850dab4641619c704a0b36f3d9.zip
add MAX and MIN to functionbuilder
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/DB/QueryBuilder/FunctionBuilderTest.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/tests/lib/DB/QueryBuilder/FunctionBuilderTest.php b/tests/lib/DB/QueryBuilder/FunctionBuilderTest.php
index 136650741f5..a8af7f4fe07 100644
--- a/tests/lib/DB/QueryBuilder/FunctionBuilderTest.php
+++ b/tests/lib/DB/QueryBuilder/FunctionBuilderTest.php
@@ -120,4 +120,82 @@ class FunctionBuilderTest extends TestCase {
$this->assertGreaterThan(1, $query->execute()->fetchColumn());
}
+
+ private function setUpMinMax($value) {
+ $query = $this->connection->getQueryBuilder();
+
+ $query->insert('appconfig')
+ ->values([
+ 'appid' => $query->createNamedParameter('minmax'),
+ 'configkey' => $query->createNamedParameter(uniqid()),
+ 'configvalue' => $query->createNamedParameter((string)$value),
+ ]);
+ $query->execute();
+ }
+
+ private function clearMinMax() {
+ $query = $this->connection->getQueryBuilder();
+
+ $query->delete('appconfig')
+ ->where($query->expr()->eq('appid', $query->createNamedParameter('minmax')));
+ $query->execute();
+ }
+
+ public function testMaxEmpty() {
+ $this->clearMinMax();
+
+ $query = $this->connection->getQueryBuilder();
+
+ $query->select($query->func()->max($query->expr()->castColumn('configvalue', IQueryBuilder::PARAM_INT)));
+ $query->from('appconfig')
+ ->where($query->expr()->eq('appid', $query->createNamedParameter('minmax')))
+ ->setMaxResults(1);
+
+ $this->assertEquals(null, $query->execute()->fetchColumn());
+ }
+
+ public function testMinEmpty() {
+ $this->clearMinMax();
+
+ $query = $this->connection->getQueryBuilder();
+
+ $query->select($query->func()->min($query->expr()->castColumn('configvalue', IQueryBuilder::PARAM_INT)));
+ $query->from('appconfig')
+ ->where($query->expr()->eq('appid', $query->createNamedParameter('minmax')))
+ ->setMaxResults(1);
+
+ $this->assertEquals(null, $query->execute()->fetchColumn());
+ }
+
+ public function testMax() {
+ $this->clearMinMax();
+ $this->setUpMinMax(10);
+ $this->setUpMinMax(11);
+ $this->setUpMinMax(20);
+
+ $query = $this->connection->getQueryBuilder();
+
+ $query->select($query->func()->max($query->expr()->castColumn('configvalue', IQueryBuilder::PARAM_INT)));
+ $query->from('appconfig')
+ ->where($query->expr()->eq('appid', $query->createNamedParameter('minmax')))
+ ->setMaxResults(1);
+
+ $this->assertEquals(20, $query->execute()->fetchColumn());
+ }
+
+ public function testMin() {
+ $this->clearMinMax();
+ $this->setUpMinMax(10);
+ $this->setUpMinMax(11);
+ $this->setUpMinMax(20);
+
+ $query = $this->connection->getQueryBuilder();
+
+ $query->select($query->func()->min($query->expr()->castColumn('configvalue', IQueryBuilder::PARAM_INT)));
+ $query->from('appconfig')
+ ->where($query->expr()->eq('appid', $query->createNamedParameter('minmax')))
+ ->setMaxResults(1);
+
+ $this->assertEquals(10, $query->execute()->fetchColumn());
+ }
}