Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / test / java / org / openecomp / sparky / analytics / HistogramSamplerTest.java
1 /* 
2 * ============LICENSE_START=======================================================
3 * SPARKY (AAI UI service)
4 * ================================================================================
5 * Copyright © 2017 AT&T Intellectual Property.
6 * Copyright © 2017 Amdocs
7 * All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12
13 *      http://www.apache.org/licenses/LICENSE-2.0
14
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21
22 * ECOMP and OpenECOMP are trademarks
23 * and service marks of AT&T Intellectual Property.
24 */
25
26 package org.openecomp.sparky.analytics;
27
28 import java.security.SecureRandom;
29
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.powermock.modules.junit4.PowerMockRunner;
34
35 /**
36  * The Class HistogramSamplerTest.
37  */
38 @RunWith(PowerMockRunner.class)
39 public class HistogramSamplerTest {
40
41   protected SecureRandom random = new SecureRandom();
42
43   /**
44    * Inits the.
45    *
46    * @throws Exception the exception
47    */
48   @Before
49   public void init() throws Exception {
50     // nothing at the moment
51   }
52
53   /**
54    * Validate basic construction and delimited reporting.
55    */
56   @Test
57   public void validateBasicConstructionAndDelimitedReporting() {
58
59     HistogramSampler histoSampler = new HistogramSampler("[File byte size]", 500000, 22, 3);
60
61     SecureRandom random = new SecureRandom();
62
63     for (int x = 0; x < 100000; x++) {
64       histoSampler.track(random.nextInt(9999999));
65     }
66
67     System.out.println(histoSampler.getStats(false, "          "));
68
69   }
70
71
72   /**
73    * Validate basic construction and formatted reporting.
74    */
75   @Test
76   public void validateBasicConstructionAndFormattedReporting() {
77
78     HistogramSampler histoSampler = new HistogramSampler("[Queue Length Samples]", 100000, 15, 3);
79
80     SecureRandom random = new SecureRandom();
81
82     for (int x = 0; x < 100000; x++) {
83       histoSampler.track(random.nextInt(9999999));
84     }
85
86     System.out.println(histoSampler.getStats(true, "          "));
87
88   }
89
90 }