blob: 06c434bab106d82fa72f4ee676595823c3dd69c6 [file] [log] [blame]
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +02001/*
2==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17==================================================================================
18*/
19package teststub
20
21import (
22 "fmt"
23 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
24 "os"
25 "testing"
26)
27
28//-----------------------------------------------------------------------------
29//
30//-----------------------------------------------------------------------------
31type RmrControl struct {
32 TestWrapper
33 syncChan chan struct{}
34}
35
36func (tc *RmrControl) ReadyCB(data interface{}) {
37 tc.syncChan <- struct{}{}
38 return
39}
40
41func (tc *RmrControl) WaitCB() {
42 <-tc.syncChan
43}
44
45func (tc *RmrControl) Init(desc string, rtfile string, port string) {
46 tc.TestWrapper.Init(desc)
47 os.Setenv("RMR_SEED_RT", rtfile)
48 os.Setenv("RMR_SRC_ID", "localhost:"+port)
Juha Hyttinenad41fea2020-04-03 10:11:46 +030049 //os.Setenv("RMR_RTG_SVC", "localhost:"+rtport)
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +020050 xapp.Logger.Info("Using rt file %s", os.Getenv("RMR_SEED_RT"))
51 xapp.Logger.Info("Using src id %s", os.Getenv("RMR_SRC_ID"))
Juha Hyttinenc2a6b3a2020-03-18 11:45:57 +020052 //xapp.Logger.Info("Using rtg svc %s", os.Getenv("RMR_RTG_SVC"))
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +020053 tc.syncChan = make(chan struct{})
54}
55
56func (tc *RmrControl) TestError(t *testing.T, pattern string, args ...interface{}) {
57 tc.Logger.Error(fmt.Sprintf(pattern, args...))
58 t.Errorf(fmt.Sprintf(pattern, args...))
59}
60
61func (tc *RmrControl) TestLog(t *testing.T, pattern string, args ...interface{}) {
62 tc.Logger.Info(fmt.Sprintf(pattern, args...))
63 t.Logf(fmt.Sprintf(pattern, args...))
64}