Merge "Fixed for bug 1197"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / AbstractActorTest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.datastore;
10
11 import akka.actor.ActorSystem;
12 import akka.testkit.JavaTestKit;
13 import org.apache.commons.io.FileUtils;
14 import org.junit.AfterClass;
15 import org.junit.BeforeClass;
16
17 import java.io.File;
18 import java.io.IOException;
19
20 public abstract class AbstractActorTest {
21     private static ActorSystem system;
22
23     @BeforeClass
24     public static void setUpClass() throws IOException {
25         File journal = new File("journal");
26
27         if(journal.exists()) {
28             FileUtils.deleteDirectory(journal);
29         }
30
31         System.setProperty("shard.persistent", "false");
32         system = ActorSystem.create("test");
33     }
34
35     @AfterClass
36     public static void tearDownClass() throws IOException {
37         JavaTestKit.shutdownActorSystem(system);
38         system = null;
39
40         File journal = new File("journal");
41
42         if(journal.exists()) {
43             FileUtils.deleteDirectory(journal);
44         }
45     }
46
47     protected ActorSystem getSystem() {
48         return system;
49     }
50
51 }