Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b765dbcf28153eff50721934f7f5c153feba6a35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Caspar De Groot - initial API and implementation
 */
package org.eclipse.emf.cdo.tests.bugzilla;

import org.eclipse.emf.cdo.eresource.CDOResource;
import org.eclipse.emf.cdo.session.CDOSession;
import org.eclipse.emf.cdo.tests.AbstractCDOTest;
import org.eclipse.emf.cdo.tests.model1.Category;
import org.eclipse.emf.cdo.tests.model1.Company;
import org.eclipse.emf.cdo.tests.model1.Product1;
import org.eclipse.emf.cdo.transaction.CDOTransaction;

import org.eclipse.emf.ecore.EObject;

/**
 * @author Martin Fluegge
 */
public class Bugzilla_359669_Test extends AbstractCDOTest
{
  public void testReloadFromIndex() throws Exception
  {
    Category category = getModel1Factory().createCategory();

    CDOSession session = openSession();
    CDOTransaction transaction = session.openTransaction();
    CDOResource resource = transaction.createResource(getResourcePath("test1"));

    resource.getContents().add(category);
    transaction.commit();

    EObject reloaded = resource.getEObject("/0");
    assertEquals(category, reloaded);
  }

  public void testReloadFromIndexComplex() throws Exception
  {
    Product1 product0 = getModel1Factory().createProduct1();
    product0.setName("test1");
    Product1 product1 = getModel1Factory().createProduct1();
    product1.setName("test2");
    Product1 product2 = getModel1Factory().createProduct1();
    product2.setName("test3");

    Category category = getModel1Factory().createCategory();
    category.getProducts().add(product0);
    category.getProducts().add(product1);
    category.getProducts().add(product2);

    Company company = getModel1Factory().createCompany();
    company.getCategories().add(category);

    CDOSession session = openSession();
    CDOTransaction transaction = session.openTransaction();
    CDOResource resource = transaction.createResource(getResourcePath("test1"));

    resource.getContents().add(company);
    transaction.commit();

    EObject reloaded = resource.getEObject("//@categories.0/@products.2");
    assertEquals(product2, reloaded);
  }
}

Back to the top