/* * Copyright (c) 2010-2012, 2016 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: * Victor Roldan Betancort - initial API and implementation * Eike Stepper - maintenance */ package org.eclipse.emf.cdo.tests.bugzilla; import org.eclipse.emf.cdo.common.branch.CDOBranch; 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.Requires; import org.eclipse.emf.cdo.transaction.CDOTransaction; /** * InvalidObjectException when switching branch * <p> * See bug 303807 * * @author Victor Roldan Betancort */ @Requires(IRepositoryConfig.CAPABILITY_BRANCHING) public class Bugzilla_303807_Test extends AbstractCDOTest { public void testBugzilla_303807() throws Exception { CDOSession session = openSession(); // Commit to main branch a new resource CDOBranch mainBranch = session.getBranchManager().getMainBranch(); CDOTransaction transaction = session.openTransaction(mainBranch); transaction.createResource(getResourcePath("/test1")); transaction.commit(); // Switch transaction to a new branch CDOBranch newBranch = mainBranch.createBranch("foobar"); transaction.setBranch(newBranch); transaction.getRootResource().getContents().size(); } }