]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.db.tests/src/org/simantics/db/tests/api/support/clusterControl/DenyCollectedResourceTest3.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 / DenyCollectedResourceTest3.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.service.ClusterControl;
19 import org.simantics.db.testing.base.ExistingDatabaseTest;
20 import org.simantics.db.testing.common.WriteQuery;
21 import org.simantics.layer0.Layer0;
22 import org.simantics.utils.DataContainer;
23
24 /**
25  * Creates large amount of instances in multiple transactions
26  * and the tries to verify that instances are written into the database.
27  * 
28  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
29  *
30  */
31 public class DenyCollectedResourceTest3 extends ExistingDatabaseTest {
32
33         @Test
34     public void test() throws Exception{
35
36         final Resource rootLib = getSession().getRootLibrary();
37         final DataContainer<Resource> foreign = new DataContainer<Resource>();
38
39         getSession().syncRequest(new HasStatementSubject(rootLib));
40
41         getSession().syncRequest(new WriteQuery(this) {
42             @Override
43             public void run(WriteGraph g) throws Throwable {
44
45                 Layer0 b = Layer0.getInstance(g);
46                 g.flushCluster();
47                 Resource f = g.newResource();
48                 g.claim(f, b.InstanceOf, b.Type);
49                 foreign.set(f);
50
51             }
52
53         });
54
55         ClusterControl support = getSession().getService(ClusterControl.class);
56         support.collectClusters(Integer.MAX_VALUE);
57
58         getSession().syncRequest(new WriteQuery(this) {
59             @Override
60             public void run(WriteGraph g) throws Throwable {
61
62                 g.deny(rootLib, rootLib, null, foreign.get());
63
64             }
65
66         });
67
68         checkException();
69
70     }
71
72 }