7304096c34813e00cc4fb7da98fd889044377d08
[aai/sparky-be.git] / src / test / java / org / onap / aai / 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.onap.aai.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.onap.aai.sparky.analytics.HistogramSampler;
34 import org.powermock.modules.junit4.PowerMockRunner;
35
36 /**
37  * The Class HistogramSamplerTest.
38  */
39 @RunWith(PowerMockRunner.class)
40 public class HistogramSamplerTest {
41
42   protected SecureRandom random = new SecureRandom();
43
44   /**
45    * Inits the.
46    *
47    * @throws Exception the exception
48    */
49   @Before
50   public void init() throws Exception {
51     // nothing at the moment
52   }
53
54   /**
55    * Validate basic construction and delimited reporting.
56    */
57   @Test
58   public void validateBasicConstructionAndDelimitedReporting() {
59
60     HistogramSampler histoSampler = new HistogramSampler("[File byte size]", 500000, 22, 3);
61
62     SecureRandom random = new SecureRandom();
63
64     for (int x = 0; x < 100000; x++) {
65       histoSampler.track(random.nextInt(9999999));
66     }
67
68     System.out.println(histoSampler.getStats(false, "          "));
69
70   }
71
72
73   /**
74    * Validate basic construction and formatted reporting.
75    */
76   @Test
77   public void validateBasicConstructionAndFormattedReporting() {
78
79     HistogramSampler histoSampler = new HistogramSampler("[Queue Length Samples]", 100000, 15, 3);
80
81     SecureRandom random = new SecureRandom();
82
83     for (int x = 0; x < 100000; x++) {
84       histoSampler.track(random.nextInt(9999999));
85     }
86
87     System.out.println(histoSampler.getStats(true, "          "));
88
89   }
90
91 }