Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 07f9cb2804b0198387ed100d7f7b4225b77a88e1 (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
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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;

import org.eclipse.emf.cdo.CDOSession;
import org.eclipse.emf.cdo.CDOTransaction;
import org.eclipse.emf.cdo.eresource.CDOResource;
import org.eclipse.emf.cdo.util.CDOUtil;
import org.eclipse.emf.cdo.util.LegacySystemNotAvailableException;

import org.eclipse.emf.ecore.xml.type.ProcessingInstruction;
import org.eclipse.emf.ecore.xml.type.XMLTypeFactory;
import org.eclipse.emf.ecore.xml.type.XMLTypePackage;

/**
 * @author Eike Stepper
 */
public class NoLegacyTest extends AbstractCDOTest
{
  public void testOpenLegacySession() throws Exception
  {
    CDOSession session = null;

    try
    {
      session = CDOUtil.openSession(getConnector(), REPOSITORY_NAME, false);
      fail("LegacySystemNotAvailableException expected");
    }
    catch (LegacySystemNotAvailableException ex)
    {
    }
    finally
    {
      if (session != null)
      {
        session.close();
      }
    }
  }

  public void testAttachLegacyObject() throws Exception
  {
    CDOSession session = CDOUtil.openSession(getConnector(), REPOSITORY_NAME, true);
    session.getPackageRegistry().putEPackage(XMLTypePackage.eINSTANCE);

    CDOTransaction transaction = session.openTransaction();
    CDOResource resource = transaction.createResource("/test1");

    ProcessingInstruction pi = XMLTypeFactory.eINSTANCE.createProcessingInstruction();
    pi.setData("data");
    pi.setTarget("target");

    try
    {
      resource.getContents().add(pi);
      fail("LegacySystemNotAvailableException expected");
    }
    catch (LegacySystemNotAvailableException ex)
    {
    }
    finally
    {
      session.close();
    }
  }
}

Back to the top