Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5ad3ae0f7cd88947872408eeccc864b1c4639f46 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright (c) 2004 - 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:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.tests.bugzilla;

import org.eclipse.emf.cdo.common.branch.CDOBranch;
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.config.IRepositoryConfig;
import org.eclipse.emf.cdo.tests.config.impl.ConfigTest.CleanRepositoriesBefore;
import org.eclipse.emf.cdo.tests.config.impl.ConfigTest.Requires;
import org.eclipse.emf.cdo.tests.model1.Category;
import org.eclipse.emf.cdo.transaction.CDOTransaction;
import org.eclipse.emf.cdo.util.CDOUtil;
import org.eclipse.emf.cdo.view.CDOView;

import org.eclipse.net4j.util.io.IOUtil;

/**
 * Make timeouts in read-access requests configurable
 * <p>
 * See bug 369646.
 *
 * @author Eike Stepper
 */
@CleanRepositoriesBefore
@Requires(IRepositoryConfig.CAPABILITY_BRANCHING)
public class Bugzilla_369646_Test extends AbstractCDOTest
{
  public void testSetBranchWithSubBranches() throws Exception
  {
    // Note: as of bug 369646, this fails with DBStore and range-based branching mapping strategy.
    // The reason is that this strategy uses partially loaded resources internally.

    // Set up a resource with 1 object as content
    CDOSession session = openSession();
    CDOTransaction transaction = session.openTransaction();
    CDOResource res = transaction.createResource(getResourcePath("/test"));

    Category c = getModel1Factory().createCategory();
    c.setName("Test");

    res.getContents().add(c);
    transaction.commit();

    // Create two cascading branches
    CDOBranch sub1 = transaction.getBranch().createBranch("sub1");
    CDOBranch sub2 = sub1.createBranch("sub2");

    // Now delete the contents in the sub2 branch
    transaction.setBranch(sub2);
    res.getContents().remove(0);
    transaction.commit();

    // And now try to switch the transaction to the parent branch
    transaction.setBranch(sub1);
  }

  public void testSetBranchWithPCL() throws Exception
  {
    {
      // Set up a resource with 10 objects as content
      CDOSession session = openSession();
      CDOTransaction transaction = session.openTransaction();
      CDOResource res = transaction.createResource(getResourcePath("/test"));

      Category cat = getModel1Factory().createCategory();
      cat.setName("Container");
      res.getContents().add(cat);

      for (int i = 0; i < 10; i++)
      {
        Category c = getModel1Factory().createCategory();
        c.setName("Test " + i);
        cat.getCategories().add(c);
      }

      transaction.commit();

      // Create a branch
      CDOBranch sub1 = transaction.getBranch().createBranch("sub1");
      transaction.setBranch(sub1);

      // Modify list in branch
      cat.getCategories().remove(3);
      cat.getCategories().remove(7);

      // Commit
      transaction.commit();
      session.close();
    }

    // Now clear the cache on server
    clearCache(getRepository().getRevisionManager());

    // Open a new session with PCL enabled
    CDOSession session = openSession();
    session.options().setCollectionLoadingPolicy(CDOUtil.createCollectionLoadingPolicy(1, 1));

    // Load the category into the resource (is now partially loaded)
    CDOView view = session.openView();
    CDOResource res = view.getResource(getResourcePath("/test"));
    Category cat = (Category)res.getContents().get(0);

    // And switch view target
    view.setBranch(view.getBranch().getBranches()[0]);
    IOUtil.OUT().println("Result: " + cat.getCategories());
  }
}

Back to the top