01: /*
02: * Copyright 2004-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.compass.core.test.multialias;
18:
19: import org.compass.core.CompassHits;
20: import org.compass.core.CompassSession;
21: import org.compass.core.CompassTransaction;
22: import org.compass.core.test.AbstractTestCase;
23:
24: /**
25: * @author kimchy
26: */
27: public class MultiAliasTests extends AbstractTestCase {
28:
29: protected String[] getMappings() {
30: return new String[] { "multialias/multialias.cpm.xml" };
31: }
32:
33: public void testMultiAlias() {
34: CompassSession session = openSession();
35: CompassTransaction tr = session.beginTransaction();
36:
37: Long id = new Long(1);
38: A a = new A();
39: a.setId(id);
40: a.setValue("VALUE 1");
41: session.save("a1", a);
42:
43: a.setValue("VALUE 2");
44: session.save("a2", a);
45:
46: a = (A) session.load("a1", id);
47: assertEquals("VALUE 1", a.getValue());
48:
49: a = (A) session.load("a2", id);
50: assertEquals("VALUE 2", a.getValue());
51:
52: CompassHits hits = session.find("VALUE");
53: assertEquals(2, hits.getLength());
54:
55: tr.commit();
56: }
57: }
|