01: /* Copyright (C) 2004 - 2007 db4objects Inc. http://www.db4o.com
02:
03: This file is part of the db4o open source object database.
04:
05: db4o is free software; you can redistribute it and/or modify it under
06: the terms of version 2 of the GNU General Public License as published
07: by the Free Software Foundation and as clarified by db4objects' GPL
08: interpretation policy, available at
09: http://www.db4o.com/about/company/legalpolicies/gplinterpretation/
10: Alternatively you can write to db4objects, Inc., 1900 S Norfolk Street,
11: Suite 350, San Mateo, CA 94403, USA.
12:
13: db4o is distributed in the hope that it will be useful, but WITHOUT ANY
14: WARRANTY; without even the implied warranty of MERCHANTABILITY or
15: FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16: for more details.
17:
18: You should have received a copy of the GNU General Public License along
19: with this program; if not, write to the Free Software Foundation, Inc.,
20: 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21: package com.db4o.test.legacy.soda.ordered;
22:
23: import com.db4o.query.*;
24: import com.db4o.test.legacy.soda.*;
25:
26: public class STOIntegerWT implements STClass {
27:
28: public static transient SodaTest st;
29:
30: Integer i_int;
31:
32: public STOIntegerWT() {
33: }
34:
35: private STOIntegerWT(int a_int) {
36: i_int = new Integer(a_int);
37: }
38:
39: public Object[] store() {
40: return new Object[] { new STOIntegerWT(1001),
41: new STOIntegerWT(99), new STOIntegerWT(1),
42: new STOIntegerWT(909), new STOIntegerWT(1001),
43: new STOIntegerWT(0), new STOIntegerWT(1010),
44: new STOIntegerWT() };
45: }
46:
47: public void testAscending() {
48: Query q = st.query();
49: q.constrain(STOIntegerWT.class);
50: q.descend("i_int").orderAscending();
51: Object[] r = store();
52: st.expectOrdered(q, new Object[] { r[5], r[2], r[1], r[3],
53: r[0], r[4], r[6], r[7] });
54: }
55:
56: public void testDescending() {
57: Query q = st.query();
58: q.constrain(STOIntegerWT.class);
59: q.descend("i_int").orderDescending();
60: Object[] r = store();
61: st.expectOrdered(q, new Object[] { r[6], r[4], r[0], r[3],
62: r[1], r[2], r[5], r[7] });
63: }
64:
65: public void testAscendingGreater() {
66: Query q = st.query();
67: q.constrain(STOIntegerWT.class);
68: Query qInt = q.descend("i_int");
69: qInt.constrain(new Integer(100)).greater();
70: qInt.orderAscending();
71: Object[] r = store();
72: st.expectOrdered(q, new Object[] { r[3], r[0], r[4], r[6] });
73: }
74: }
|