Fix cluster test warnings
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / utils / TestUtils.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.utils;
10
11 import akka.actor.ActorRef;
12 import akka.actor.ActorSystem;
13 import akka.actor.Props;
14 import java.util.List;
15 import org.junit.Assert;
16
17 public class TestUtils {
18
19     public static void assertFirstSentMessage(final ActorSystem actorSystem, final ActorRef actorRef, final Class<?> clazz){
20         ActorContext testContext = new ActorContext(actorSystem, actorSystem.actorOf(
21             Props.create(DoNothingActor.class)), new MockClusterWrapper(), new MockConfiguration());
22         Object messages = testContext
23             .executeOperation(actorRef, "messages");
24
25         Assert.assertNotNull(messages);
26
27         Assert.assertTrue(messages instanceof List);
28
29         List<?> listMessages = (List<?>) messages;
30
31         Assert.assertEquals(1, listMessages.size());
32
33         Assert.assertTrue(listMessages.get(0).getClass().equals(clazz));
34     }
35 }