]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.db.tests/src/org/simantics/db/tests/api/support/clusterControl/WriteAfterClusterCollectTest3.java
Added missing org.simantics.db.{tests,testing} plug-ins.
[simantics/platform.git] / tests / org.simantics.db.tests / src / org / simantics / db / tests / api / support / clusterControl / WriteAfterClusterCollectTest3.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.api.support.clusterControl;
13
14 import org.junit.Test;
15 import org.simantics.db.Resource;
16 import org.simantics.db.WriteGraph;
17 import org.simantics.db.common.primitiverequest.HasStatementSubject;
18 import org.simantics.db.common.request.WriteResultRequest;
19 import org.simantics.db.exception.DatabaseException;
20 import org.simantics.db.service.ClusterControl;
21 import org.simantics.db.testing.base.ExistingDatabaseTest;
22 import org.simantics.db.testing.common.WriteQuery;
23
24 public class WriteAfterClusterCollectTest3 extends ExistingDatabaseTest {
25         
26         @Test
27         public void test() throws Exception{
28
29                 final Resource resource = getSession().syncRequest(new WriteResultRequest<Resource>() {
30                     @Override
31                     public Resource perform(WriteGraph g) throws DatabaseException {
32                         return g.newResource();
33                     }
34                 });
35                 
36                 checkException();
37
38                 getSession().syncRequest(new HasStatementSubject(resource));
39                 
40                 ClusterControl support = getSession().getService(ClusterControl.class);
41                 support.collectClusters(Integer.MAX_VALUE);
42                 
43                 checkException();
44                 
45         getSession().syncRequest(new WriteQuery(this) {
46                 
47             @Override
48             public void run(WriteGraph g) throws Throwable {
49
50                 g.newResource();
51                 
52             }
53             
54         });
55         
56         checkException();
57                 
58         }
59
60 }