summaryrefslogtreecommitdiffstats
path: root/src/test/java/com
diff options
context:
space:
mode:
authorSotaro SUZUKI <sotaro.suzuki@architector.jp>2014-10-01 16:17:34 +0900
committerJames Moger <james.moger@gitblit.com>2014-10-06 10:22:39 -0400
commit48da60f625b53dccbc4a34737eba55eb0eda181b (patch)
tree0b048e6247ce0ec196df7015c8fa77bf36e062a0 /src/test/java/com
parent8ba3b92816e65acc0d1d71ba23259deed616eefe (diff)
downloadiciql-48da60f625b53dccbc4a34737eba55eb0eda181b.tar.gz
iciql-48da60f625b53dccbc4a34737eba55eb0eda181b.zip
add support stackable condition: ex. X and (Y or Z)
see samples in src/test/java/com/iciql/test/StackableConditionsTest.java
Diffstat (limited to 'src/test/java/com')
-rw-r--r--src/test/java/com/iciql/test/IciqlSuite.java2
-rw-r--r--src/test/java/com/iciql/test/StackableConditionsTest.java178
2 files changed, 179 insertions, 1 deletions
diff --git a/src/test/java/com/iciql/test/IciqlSuite.java b/src/test/java/com/iciql/test/IciqlSuite.java
index 9c9ba39..a26bf08 100644
--- a/src/test/java/com/iciql/test/IciqlSuite.java
+++ b/src/test/java/com/iciql/test/IciqlSuite.java
@@ -93,7 +93,7 @@ import com.iciql.util.Utils;
@SuiteClasses({ AliasMapTest.class, AnnotationsTest.class, BooleanModelTest.class, ClobTest.class,
ConcurrencyTest.class, EnumsTest.class, ModelsTest.class, PrimitivesTest.class, OneOfTest.class,
RuntimeQueryTest.class, SamplesTest.class, UpdateTest.class, UpgradesTest.class, JoinTest.class,
- UUIDTest.class, ViewsTest.class, ForeignKeyTest.class, TransactionTest.class })
+ UUIDTest.class, ViewsTest.class, ForeignKeyTest.class, TransactionTest.class, StackableConditionsTest.class })
public class IciqlSuite {
private static final TestDb[] TEST_DBS = {
diff --git a/src/test/java/com/iciql/test/StackableConditionsTest.java b/src/test/java/com/iciql/test/StackableConditionsTest.java
new file mode 100644
index 0000000..15ae295
--- /dev/null
+++ b/src/test/java/com/iciql/test/StackableConditionsTest.java
@@ -0,0 +1,178 @@
+/*
+ * Copyright (c) 2009-2014, Architector Inc., Japan
+ * All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.iciql.test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import com.iciql.Conditions.And;
+import com.iciql.Conditions.Or;
+import com.iciql.Db;
+import com.iciql.IciqlException;
+import com.iciql.QueryWhere;
+import com.iciql.test.models.Customer;
+
+public class StackableConditionsTest {
+
+ enum Region {
+ JP, FR
+ }
+
+ private Db db;
+
+ @Before
+ public void setUp() {
+ db = IciqlSuite.openNewDb();
+ }
+
+ @After
+ public void tearDown() {
+ db.close();
+ }
+
+ private String search(Region region, String... customerIds) {
+ Customer model;
+ QueryWhere<Customer> query;
+
+ model = new Customer();
+ query = db.from(model).whereTrue();
+ if (customerIds != null) {
+ query.andOpenFalse();
+ for (String value : customerIds) {
+ query.or(model.customerId).is(value);
+ }
+ query.close();
+ }
+ if (region != null) {
+ query.and(model.region).is(region.name());
+ }
+ return query.toSQL();
+ }
+
+ @SuppressWarnings("serial")
+ @Test
+ public void andOrTest() {
+ assertEquals(
+ search(null, (String[]) null),
+ "SELECT * FROM Customer WHERE (true)");
+ assertEquals(
+ search(null, new String[0]),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) )");
+ assertEquals(
+ search(null, "0001"),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) OR customerId = '0001' )");
+ assertEquals(
+ search(null, "0001", "0002"),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) OR customerId = '0001' OR customerId = '0002' )");
+ assertEquals(
+ search(Region.JP, (String[]) null),
+ "SELECT * FROM Customer WHERE (true) AND region = 'JP'");
+ assertEquals(
+ search(Region.JP, new String[0]),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) ) AND region = 'JP'");
+ assertEquals(
+ search(Region.JP, "0001"),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) OR customerId = '0001' ) AND region = 'JP'");
+ assertEquals(
+ search(Region.JP, "0001", "0002"),
+ "SELECT * FROM Customer WHERE (true) AND ( (false) OR customerId = '0001' OR customerId = '0002' ) AND region = 'JP'");
+ }
+
+ @Test
+ public void errorTest() {
+ Customer model;
+
+ model = new Customer();
+ try {
+ db.from(model)
+ .where(model.customerId).is("0001")
+ .andOpenFalse()
+ .or(model.region).is("FR")
+ .or(model.region).is("JP")
+ .close()
+ .toSQL();
+ assertTrue(true);
+ }
+ catch (IciqlException error) {
+ assertTrue(false);
+ }
+ try {
+ db.from(model)
+ .where(model.customerId).is("0001")
+ .andOpenFalse()
+ .or(model.region).is("FR")
+ .or(model.region).is("JP")
+ .toSQL();
+ assertTrue(false);
+ }
+ catch (IciqlException error) {
+ assertTrue(true);
+ }
+ try {
+ db.from(model)
+ .where(model.customerId).is("0001")
+ .andOpenFalse()
+ .or(model.region).is("FR")
+ .or(model.region).is("JP")
+ .close()
+ .close();
+ assertTrue(false);
+ }
+ catch (IciqlException error) {
+ assertTrue(true);
+ }
+ }
+
+ @Test
+ public void fluentTest() {
+ final Customer model = new Customer();
+ assertEquals(
+ db.from(model).where(new And<Customer>(db, model) {{
+ and(model.customerId).is("0001");
+ and(new Or<Customer>(db, model) {{
+ or(model.region).is("CA");
+ or(model.region).is("LA");
+ }});
+ }}).toSQL(),
+ "SELECT * FROM Customer WHERE (true) AND customerId = '0001' AND ( (false) OR region = 'CA' OR region = 'LA' )");
+ assertEquals(
+ db.from(model).where(new Or<Customer>(db, model) {{
+ or(model.customerId).is("0001");
+ or(new And<Customer>(db, model) {{
+ and(model.customerId).is("0002");
+ and(model.region).is("LA");
+ }});
+ }}).toSQL(),
+ "SELECT * FROM Customer WHERE (false) OR customerId = '0001' OR ( (true) AND customerId = '0002' AND region = 'LA' )");
+ assertEquals(
+ db.from(model)
+ .where(model.customerId).isNotNull()
+ .and(new Or<Customer>(db, model) {{
+ or(model.region).is("LA");
+ or(model.region).is("CA");
+ }})
+ .and(model.region).isNotNull()
+ .toSQL(),
+ "SELECT * FROM Customer WHERE customerId IS NOT NULL AND ( (false) OR region = 'LA' OR region = 'CA' ) AND region IS NOT NULL");
+ }
+
+}