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 STOString implements STClass {
27:
28: public static transient SodaTest st;
29:
30: String foo;
31:
32: public STOString() {
33: }
34:
35: public STOString(String str) {
36: this .foo = str;
37: }
38:
39: public Object[] store() {
40: return new Object[] { new STOString(null),
41: new STOString("bbb"), new STOString("bbb"),
42: new STOString("dod"), new STOString("aaa"),
43: new STOString("Xbb"), new STOString("bbq") };
44: }
45:
46: public void testAscending() {
47: Query q = st.query();
48: q.constrain(STOString.class);
49: q.descend("foo").orderAscending();
50: Object[] r = store();
51: st.expectOrdered(q, new Object[] { r[5], r[4], r[1], r[2],
52: r[6], r[3], r[0] });
53: }
54:
55: public void testDescending() {
56: Query q = st.query();
57: q.constrain(STOString.class);
58: q.descend("foo").orderDescending();
59: Object[] r = store();
60: st.expectOrdered(q, new Object[] { r[3], r[6], r[2], r[1],
61: r[4], r[5], r[0] });
62: }
63:
64: public void testAscendingLike() {
65: Query q = st.query();
66: q.constrain(STOString.class);
67: Query qStr = q.descend("foo");
68: qStr.constrain("b").like();
69: qStr.orderAscending();
70: Object[] r = store();
71: st.expectOrdered(q, new Object[] { r[5], r[1], r[2], r[6] });
72: }
73:
74: public void testDescendingContains() {
75: Query q = st.query();
76: q.constrain(STOString.class);
77: Query qStr = q.descend("foo");
78: qStr.constrain("b").contains();
79: qStr.orderDescending();
80: Object[] r = store();
81: st.expectOrdered(q, new Object[] { r[6], r[2], r[1], r[5] });
82: }
83: }
|