Add metrics to the framework
[ric-plt/xapp-frame-cpp.git] / test / metrics_test.cpp
1 // vim: ts=4 sw=4 noet :
2 /*
3 ==================================================================================
4        Copyright (c) 2020 Nokia
5        Copyright (c) 2020 AT&T Intellectual Property.
6
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18 ==================================================================================
19 */
20
21 /*
22         Mnemonic:       metric_test.cpp
23         Abstract:       This is the unit test driver for the metrics class.
24
25         Date:           20 July 2020
26         Author:         E. Scott Daniels
27 */
28
29 #include <errno.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <string.h>
35
36 #include <string>
37 #include <memory>
38
39 #include "../src/messaging/callback.hpp"
40 #include "../src/messaging/default_cb.hpp"
41 #include "../src/messaging/message.hpp"
42 #include "../src/messaging/messenger.hpp"
43 #include "../src/messaging/msg_component.hpp"
44 #include "../src/alarm/alarm.hpp"
45 #include "../src/xapp/xapp.hpp"
46
47 #include "../src/metrics/metrics.hpp"           // overtly pull the code under test to get coverage opts
48 #include "../src/metrics/metrics.cpp"
49
50 #include "ut_support.cpp"
51
52 int main( int argc, char** argv ) {
53         int             errors = 0;
54         std::shared_ptr<Xapp> x;
55         std::shared_ptr<xapp::Metrics> m;
56
57         set_test_name( "jhash_test" );
58
59         x = std::shared_ptr<Xapp>( new Xapp( "4560", true ) );
60         if( x == NULL ) {
61                 fprintf( stderr, "<FAIL> unable to allocate xapp object\n" );
62                 announce_results( 1 );
63                 return 1;
64         }
65
66         m = x->Alloc_metrics( );
67         m->Push_data( "barney_balance", 216.49 );
68         m->Push_data( "fred_balance", 760.88 );
69         m->Send( );
70
71         // ensure data is cleared after first send
72         m->Push_data( "barney_balance", 216.49 );
73         m->Push_data( "fred_balance", 760.88 );
74         m->Push_data( "wilma_balance", 1986.0430 );
75         m->Send();
76
77         m->Send();                              // shouldn't really send
78
79
80         // drive alternate builders
81         m = x->Alloc_metrics( "different-source" );
82         m->Push_data( "wilma_balance", 1986.0430 );
83         m->Send();
84
85         m = x->Alloc_metrics( "different-app", "different-source" );
86         m->Push_data( "wilma_balance", 1986.0430 );
87         m->Push_data( "pebbles_balance", 1982.0614 );
88         m->Send();
89
90
91         m->Set_reporter( "set-reporter" );
92         m->Set_source( "set-source" );
93
94
95         // drive move/copy adjunct functions
96
97         xapp::Metrics b = *m.get();                             // force the move/copy operator functions to trigger
98         xapp::Metrics c( NULL );                                // a useless metric without a message
99         xapp::Metrics f( NULL, "source" );              // a useless metric to drive direct construction
100         c = *m.get();                                                   // drive copy = operator
101
102         b = std::move( c );                                             // move = operator
103         xapp::Metrics d = std::move( b );                       // move constructor
104
105
106         // ---------------------------- end housekeeping ---------------------------
107         announce_results( errors );
108         return !!errors;
109 }