Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f48b70023c589937947b3af11d0c3cec6de575e1 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Copyright (c) 2010-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.transaction.CDOTransaction;
import org.eclipse.emf.cdo.util.CommitException;

import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;

/**
 * Bug 328790 - CDOResource.isLoaded returns false after adding/clearing contents of new resource
 * 
 * @author Caspar De Groot
 */
public class Bugzilla_328790_Test extends AbstractCDOTest
{
  public void test_newThenAdd1() throws CommitException
  {
    CDOSession session = openSession();
    ResourceSet resourceSet = new ResourceSetImpl();
    CDOTransaction tx = session.openTransaction(resourceSet);

    Resource resource = resourceSet.createResource(URI.createURI("cdo://myUri"));
    EObject object = getModel1Factory().createAddress();
    resource.getContents().add(object);

    assertEquals(true, resource.isLoaded());

    tx.commit();

    assertEquals(true, resource.isLoaded());

    tx.close();
    session.close();
  }

  public void test_newThenAdd2() throws CommitException
  {
    CDOSession session = openSession();
    CDOTransaction tx = session.openTransaction();

    CDOResource resource = tx.createResource(getResourcePath("/myUri"));
    EObject object = getModel1Factory().createAddress();
    resource.getContents().add(object);

    assertEquals(true, resource.isLoaded());

    tx.commit();

    assertEquals(true, resource.isLoaded());

    tx.close();
    session.close();
  }

  public void test_newThenClear() throws CommitException
  {
    CDOSession session = openSession();
    CDOTransaction tx = session.openTransaction();

    CDOResource resource = tx.createResource(getResourcePath("/myUri"));
    resource.getContents().clear();

    assertEquals(true, resource.isLoaded());

    tx.commit();

    assertEquals(true, resource.isLoaded());

    tx.close();
    session.close();
  }
}

Back to the top