Change nexus values to properties
[appc.git] / app-c / appc / appc-dispatcher / appc-dispatcher-common / execution-queue-management-lib / src / test / java / org / openecomp / appc / executionqueue / TestExecutionQueueService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.executionqueue;
23
24 import org.junit.Assert;
25 import org.junit.Test;
26 import org.mockito.Mockito;
27 import org.openecomp.appc.exceptions.APPCException;
28 import org.openecomp.appc.executionqueue.ExecutionQueueService;
29 import org.openecomp.appc.executionqueue.impl.ExecutionQueueServiceFactory;
30 import org.powermock.api.mockito.PowerMockito;
31
32 import java.util.concurrent.TimeUnit;
33
34
35 public class TestExecutionQueueService {
36
37     @Test
38     public void testPositiveFlow(){
39         Message message = new Message();
40         ExecutionQueueService service =  ExecutionQueueServiceFactory.getExecutionQueueService();
41         try {
42             service.putMessage(message);
43             waitFor(5000);
44             Assert.assertTrue(message.isRunExecuted());
45         } catch (APPCException e) {
46             Assert.fail(e.toString());
47         }
48     }
49
50 //    @Test
51     public void testTimeout(){
52         ExecutionQueueService service =  ExecutionQueueServiceFactory.getExecutionQueueService();
53         Message message = new Message();
54         Listener listener = new Listener();
55         service.registerMessageExpirationListener(listener);
56         try {
57             service.putMessage(message,1, TimeUnit.MILLISECONDS);
58             waitFor(5000);
59             Assert.assertTrue(listener.isListenerExecuted());
60         } catch (APPCException e) {
61             e.printStackTrace();
62         }
63     }
64
65     private void waitFor(long milliSeconds){
66         try {
67             Thread.sleep(milliSeconds);
68         } catch (InterruptedException e) {
69             Assert.fail(e.toString());
70         }
71     }
72 }