Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 19 | package teststub |
| 20 | |
| 21 | import ( |
| 22 | "fmt" |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 23 | "testing" |
| 24 | ) |
| 25 | |
| 26 | //----------------------------------------------------------------------------- |
| 27 | // |
| 28 | //----------------------------------------------------------------------------- |
| 29 | type RmrControl struct { |
| 30 | TestWrapper |
Juha Hyttinen | cd78aee | 2020-04-07 17:49:08 +0300 | [diff] [blame^] | 31 | RmrSrcId |
| 32 | RmrRtgSvc |
| 33 | syncChan chan struct{} |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | func (tc *RmrControl) ReadyCB(data interface{}) { |
| 37 | tc.syncChan <- struct{}{} |
| 38 | return |
| 39 | } |
| 40 | |
| 41 | func (tc *RmrControl) WaitCB() { |
| 42 | <-tc.syncChan |
| 43 | } |
| 44 | |
Juha Hyttinen | cd78aee | 2020-04-07 17:49:08 +0300 | [diff] [blame^] | 45 | func (tc *RmrControl) Init(desc string, srcId RmrSrcId, rtgSvc RmrRtgSvc) { |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 46 | tc.TestWrapper.Init(desc) |
Juha Hyttinen | cd78aee | 2020-04-07 17:49:08 +0300 | [diff] [blame^] | 47 | |
| 48 | tc.RmrSrcId = srcId |
| 49 | tc.RmrSrcId.Enable() |
| 50 | |
| 51 | tc.RmrRtgSvc = rtgSvc |
| 52 | tc.RmrRtgSvc.Enable() |
| 53 | |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 54 | tc.syncChan = make(chan struct{}) |
| 55 | } |
| 56 | |
| 57 | func (tc *RmrControl) TestError(t *testing.T, pattern string, args ...interface{}) { |
| 58 | tc.Logger.Error(fmt.Sprintf(pattern, args...)) |
| 59 | t.Errorf(fmt.Sprintf(pattern, args...)) |
| 60 | } |
| 61 | |
| 62 | func (tc *RmrControl) TestLog(t *testing.T, pattern string, args ...interface{}) { |
| 63 | tc.Logger.Info(fmt.Sprintf(pattern, args...)) |
| 64 | t.Logf(fmt.Sprintf(pattern, args...)) |
| 65 | } |