summaryrefslogtreecommitdiffstats
path: root/tests/com/iciql/test/DefaultValuesTest.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-08-09 11:28:48 -0400
committerJames Moger <james.moger@gmail.com>2011-08-09 11:28:48 -0400
commit1a2339a9f1f96ddca64ab392dd7f9e1621e6c201 (patch)
tree413631f6e46e2bb2826e67f98df5b5180468833b /tests/com/iciql/test/DefaultValuesTest.java
parentfec6df5eaac334540e220d7f7c05c9d21357f554 (diff)
downloadiciql-1a2339a9f1f96ddca64ab392dd7f9e1621e6c201.tar.gz
iciql-1a2339a9f1f96ddca64ab392dd7f9e1621e6c201.zip
IQTable.primaryKey is now an array. Default values from objects.
Also fixed an error with allowing null objects. Noted rapid churn of iciql in documentation. Changed build constants for next release.
Diffstat (limited to 'tests/com/iciql/test/DefaultValuesTest.java')
-rw-r--r--tests/com/iciql/test/DefaultValuesTest.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/com/iciql/test/DefaultValuesTest.java b/tests/com/iciql/test/DefaultValuesTest.java
new file mode 100644
index 0000000..b39dd7c
--- /dev/null
+++ b/tests/com/iciql/test/DefaultValuesTest.java
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2011 James Moger.
+ *
+ * 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.assertTrue;
+
+import java.util.List;
+
+import org.junit.Test;
+
+import com.iciql.Db;
+import com.iciql.DbInspector;
+import com.iciql.ValidationRemark;
+import com.iciql.test.models.DefaultValuesModel;
+
+/**
+ * Tests default object values.
+ */
+public class DefaultValuesTest {
+
+ @Test
+ public void testDefaultObjectValues() {
+ Db db = Db.open("jdbc:h2:mem:", "sa", "sa");
+
+ // insert random model
+ DefaultValuesModel model = new DefaultValuesModel();
+ db.insert(model);
+
+ DefaultValuesModel v = new DefaultValuesModel();
+
+ // retrieve model and compare
+ DefaultValuesModel retrievedModel = db.from(v).selectFirst();
+ assertTrue(model.myInteger.equals(retrievedModel.myInteger));
+ assertTrue(model.myDate.equals(retrievedModel.myDate));
+ assertTrue(model.myEnumIdTree.equals(retrievedModel.myEnumIdTree));
+ assertTrue(model.myNameTree.equals(retrievedModel.myNameTree));
+ assertTrue(model.myOrdinalTree.equals(retrievedModel.myOrdinalTree));
+ assertTrue(retrievedModel.myNullTree == null);
+
+ DbInspector inspector = new DbInspector(db);
+ List<ValidationRemark> remarks = inspector.validateModel(model, false);
+ db.close();
+ for (ValidationRemark remark : remarks) {
+ System.out.println(remark.toString());
+ }
+ }
+}