001: /*
002: * $Id: TestBooleanLiterals.java,v 1.5 2005/05/02 22:32:02 ahimanikya Exp $
003: * =======================================================================
004: * Copyright (c) 2002 Axion Development Team. All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions
008: * are met:
009: *
010: * 1. Redistributions of source code must retain the above
011: * copyright notice, this list of conditions and the following
012: * disclaimer.
013: *
014: * 2. Redistributions in binary form must reproduce the above copyright
015: * notice, this list of conditions and the following disclaimer in
016: * the documentation and/or other materials provided with the
017: * distribution.
018: *
019: * 3. The names "Tigris", "Axion", nor the names of its contributors may
020: * not be used to endorse or promote products derived from this
021: * software without specific prior written permission.
022: *
023: * 4. Products derived from this software may not be called "Axion", nor
024: * may "Tigris" or "Axion" appear in their names without specific prior
025: * written permission.
026: *
027: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
028: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
029: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
030: * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
031: * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
032: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
033: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
034: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
035: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
036: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
037: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
038: * =======================================================================
039: */
040:
041: package org.axiondb.functional;
042:
043: import java.sql.SQLException;
044:
045: import junit.framework.Test;
046: import junit.framework.TestSuite;
047:
048: /**
049: * @version $Revision: 1.5 $ $Date: 2005/05/02 22:32:02 $
050: * @author Rob Oxspring
051: * @author Rodney Waldhoff
052: */
053: public class TestBooleanLiterals extends AbstractFunctionalTest {
054:
055: //------------------------------------------------------------ Conventional
056:
057: public TestBooleanLiterals(String testName) {
058: super (testName);
059: }
060:
061: public static Test suite() {
062: return new TestSuite(TestBooleanLiterals.class);
063: }
064:
065: //--------------------------------------------------------------- Lifecycle
066:
067: public void setUp() throws Exception {
068: super .setUp();
069: _stmt
070: .execute("CREATE TABLE foobar (foo VARCHAR(3), bar BOOLEAN)");
071: _stmt.execute("INSERT INTO foobar VALUES ('aaa', true)");
072: _stmt.execute("INSERT INTO foobar VALUES ('bbb', false)");
073: _stmt.execute("INSERT INTO foobar VALUES ('ccc', true)");
074: _stmt.execute("INSERT INTO foobar VALUES ('ddd', false)");
075: }
076:
077: public void tearDown() throws Exception {
078: _stmt.execute("DROP TABLE foobar");
079: super .tearDown();
080: }
081:
082: //------------------------------------------------------------------- Tests
083:
084: public void testInsert() throws SQLException {
085: _rset = _stmt.executeQuery("SELECT COUNT(*) FROM foobar");
086: _rset.next();
087: assertEquals("Should start with 4 elements", 4, _rset.getInt(1));
088: _rset.close();
089:
090: _stmt.execute("INSERT INTO foobar VALUES ('eee', TRUE )");
091: _stmt.execute("INSERT INTO foobar VALUES ('fff', FALSE )");
092:
093: _rset = _stmt.executeQuery("SELECT COUNT(*) FROM foobar");
094: _rset.next();
095: assertEquals("Should now contain 6 elements", 6, _rset
096: .getInt(1));
097: _rset.close();
098: }
099:
100: public void testInsertOnStringLiteral() throws SQLException {
101: _stmt.execute("INSERT INTO foobar VALUES ('eee', 'TRUE' )");
102: _stmt.execute("INSERT INTO foobar VALUES ('fff', 'FALSE' )");
103:
104: _rset = _stmt.executeQuery("SELECT COUNT(*) FROM foobar");
105: _rset.next();
106: assertEquals("Should now contain 6 elements", 6, _rset
107: .getInt(1));
108: _rset.close();
109: }
110:
111: public void testWhere() throws SQLException {
112: _rset = _stmt
113: .executeQuery("SELECT foo FROM foobar WHERE bar=TRUE ORDER BY foo");
114: assertTrue(_rset.next());
115: assertEquals("aaa", _rset.getString(1));
116: assertTrue(_rset.next());
117: assertEquals("ccc", _rset.getString(1));
118: assertTrue(!_rset.next());
119: _rset.close();
120:
121: _rset = _stmt
122: .executeQuery("SELECT foo FROM foobar WHERE bar=FALSE ORDER BY foo");
123: assertTrue(_rset.next());
124: assertEquals("bbb", _rset.getString(1));
125: assertTrue(_rset.next());
126: assertEquals("ddd", _rset.getString(1));
127: assertTrue(!_rset.next());
128: _rset.close();
129: }
130:
131: public void testOrderBy() throws SQLException {
132: _rset = _stmt
133: .executeQuery("SELECT bar, foo FROM foobar ORDER BY bar, foo");
134: {
135: assertTrue(_rset.next());
136: assertEquals(false, _rset.getBoolean(1));
137: assertEquals("bbb", _rset.getString(2));
138: }
139: {
140: assertTrue(_rset.next());
141: assertEquals(false, _rset.getBoolean(1));
142: assertEquals("ddd", _rset.getString(2));
143: }
144: {
145: assertTrue(_rset.next());
146: assertEquals(true, _rset.getBoolean(1));
147: assertEquals("aaa", _rset.getString(2));
148: }
149: {
150: assertTrue(_rset.next());
151: assertEquals(true, _rset.getBoolean(1));
152: assertEquals("ccc", _rset.getString(2));
153: }
154: assertTrue(!_rset.next());
155: _rset.close();
156: }
157:
158: public void testOrderByDesc() throws SQLException {
159: _rset = _stmt
160: .executeQuery("SELECT bar, foo FROM foobar ORDER BY bar DESC, foo");
161: {
162: assertTrue(_rset.next());
163: assertEquals(true, _rset.getBoolean(1));
164: assertEquals("aaa", _rset.getString(2));
165: }
166: {
167: assertTrue(_rset.next());
168: assertEquals(true, _rset.getBoolean(1));
169: assertEquals("ccc", _rset.getString(2));
170: }
171: {
172: assertTrue(_rset.next());
173: assertEquals(false, _rset.getBoolean(1));
174: assertEquals("bbb", _rset.getString(2));
175: }
176: {
177: assertTrue(_rset.next());
178: assertEquals(false, _rset.getBoolean(1));
179: assertEquals("ddd", _rset.getString(2));
180: }
181: assertTrue(!_rset.next());
182: _rset.close();
183: }
184: }
|