]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.db.tests/src/org/simantics/db/tests/client/JournalTestFail.java
Added missing org.simantics.db.{tests,testing} plug-ins.
[simantics/platform.git] / tests / org.simantics.db.tests / src / org / simantics / db / tests / client / JournalTestFail.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.tests.client;
13
14 import org.junit.Test;
15 import org.simantics.db.ReadGraph;
16 import org.simantics.db.Resource;
17 import org.simantics.db.Session;
18 import org.simantics.db.WriteGraph;
19 import org.simantics.db.common.request.WriteRequest;
20 import org.simantics.db.exception.DatabaseException;
21 import org.simantics.db.request.Read;
22 import org.simantics.db.service.XSupport;
23 import org.simantics.db.testing.annotation.Fails;
24 import org.simantics.db.testing.base.ExistingDatabaseTest;
25
26 public class JournalTestFail extends ExistingDatabaseTest {
27
28     @Test
29     @Fails
30     public void testJournalFail() throws DatabaseException{
31         final Session s = getSession();
32         s.syncRequest(new WriteRequest() {
33             @Override
34             public void perform(WriteGraph g) throws DatabaseException {
35                 XSupport xs = (XSupport)g.getService(XSupport.class);
36                 xs.corruptCluster(null);
37                 xs.flushCluster(null);
38             }
39         });
40         if (DEBUG)
41             System.out.println("Write done.");
42         s.syncRequest(new Read<Resource>() {
43             @Override
44             public Resource perform(ReadGraph g) throws DatabaseException {
45                 return null;
46             }
47         });
48     }
49 }