Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 73f88959f4224d9e62b7fd59071f42b45fb7a52b (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
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * Copyright (c) 2014 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:
 *    Simon McDuff - initial API and implementation
 *    Eike Stepper - maintenance
 */
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.Company;
import org.eclipse.emf.cdo.transaction.CDOTransaction;
import org.eclipse.emf.cdo.view.CDOView;

import org.eclipse.emf.ecore.EObject;

/**
 * Bug 400311 - CDOObject modifies Store even for Touch notifications.
 *
 * @author Eike Stepper
 */
public class Bugzilla_400311_Test extends AbstractCDOTest
{
  public void testOneFeature() throws Exception
  {
    CDOSession session = openSession();
    CDOTransaction transaction = session.openTransaction();
    CDOResource resource = transaction.getOrCreateResource(getResourcePath("/test1"));

    Company company = getModel1Factory().createCompany();
    company.setName("Eclipse");
    resource.getContents().add(company);

    transaction.commit();
    assertDirty(company, transaction, false);

    company.setName("XYZ");
    assertDirty(company, transaction, true);

    company.setName("Eclipse");
    assertDirty(company, transaction, false);

    transaction.commit();
    assertDirty(company, transaction, false);

    company.setName("ABC");
    assertDirty(company, transaction, true);

    transaction.commit();
    assertDirty(company, transaction, false);
  }

  public void testTwoFeaturesUndoOne() throws Exception
  {
    CDOSession session = openSession();
    CDOTransaction transaction = session.openTransaction();
    CDOResource resource = transaction.getOrCreateResource(getResourcePath("/test1"));

    Company company = getModel1Factory().createCompany();
    company.setName("Eclipse");
    company.setStreet("1");
    resource.getContents().add(company);

    transaction.commit();
    assertDirty(company, transaction, false);

    company.setName("XYZ");
    company.setStreet("2");
    assertDirty(company, transaction, true);

    company.setName("Eclipse");
    assertDirty(company, transaction, true);

    company.setStreet("1");
    assertDirty(company, transaction, false);

    transaction.commit();
    assertDirty(company, transaction, false);
  }

  private static void assertDirty(EObject eObject, CDOView view, boolean dirty)
  {
    if (dirty)
    {
      assertDirty(eObject, view);
    }
    else
    {
      assertClean(eObject, view);
    }

    assertEquals(dirty, view.isDirty());
  }
}

Back to the top