chr
2026-04-05 fe750b791d5b517cc4e9bc8e99a9a75139a0cfba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
//            Copyright Keysight Technologies 2012-2019
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at http://mozilla.org/MPL/2.0/.
using NUnit.Framework;
using OpenTap.Diagnostic;
using System;
using System.Collections.Generic;
using System.Linq;
using OpenTap.EngineUnitTestUtils;
 
namespace OpenTap.Engine.UnitTests
{
    [TestFixture]
    public class LoggingTest
    {
        public class CountingListener : ILogListener
        {
            public int RecvdMessages = 0;
 
            public void EventsLogged(IEnumerable<Event> events)
            {
                int count = 0;
                using (IEnumerator<Event> enumerator = events.GetEnumerator())
                {
                    while (enumerator.MoveNext())
                        count++;
                }
                RecvdMessages += count;
            }
 
            public void Flush()
            {
            }
        }
 
        [Test]
        public void SimpleAsyncTest()
        {
            var ctx = OpenTap.Diagnostic.LogFactory.CreateContext();
            var counter = new CountingListener();
 
            var log = ctx.CreateLog("Test");
            ctx.AttachListener(counter);
 
            ctx.Async = true;
            ctx.MessageBufferSize = 0;
 
            log.LogEvent(0, "abc");
            log.LogEvent(0, "abc{0}", "t");
            log.LogEvent(0, 0, "abc");
            log.LogEvent(0, 0, "abc{0}", "t");
 
            ctx.Flush();
 
            Assert.AreEqual(4, counter.RecvdMessages);
        }
 
        [Test]
        public void SimpleSyncTest()
        {
            var ctx = OpenTap.Diagnostic.LogFactory.CreateContext();
            var counter = new CountingListener();
 
            var log = ctx.CreateLog("Test");
            ctx.AttachListener(counter);
 
            ctx.Async = false;
            ctx.MessageBufferSize = 0;
 
            log.LogEvent(0, "abc");
            log.LogEvent(0, "abc{0}", "t");
            log.LogEvent(0, 0, "abc");
            log.LogEvent(0, 0, "abc{0}", "t");
 
            ctx.Flush();
 
            Assert.AreEqual(4, counter.RecvdMessages);
        }
 
        [Test]
        public void SimpleBufferTest()
        {
            var ctx = OpenTap.Diagnostic.LogFactory.CreateContext();
            var counter = new CountingListener();
 
            var log = ctx.CreateLog("Test");
            ctx.AttachListener(counter);
 
            ctx.Async = false;
            ctx.MessageBufferSize = 1;
 
            log.LogEvent(0, "abc");
            log.LogEvent(0, "abc{0}", "t");
            log.LogEvent(0, 0, "abc");
            log.LogEvent(0, 0, "abc{0}", "t");
 
            ctx.Flush();
 
            Assert.AreEqual(4, counter.RecvdMessages);
        }
 
        [Test, Ignore("This is will generate false positives.")]
        public void CrudePerformanceTest()
        {
            int count = 10 * 1000 * 1000;
            double MaxNSPerMessage = 50;
 
            var ctx = OpenTap.Diagnostic.LogFactory.CreateContext();
            var counter = new CountingListener();
 
            var log = ctx.CreateLog("Test");
            ctx.AttachListener(counter);
 
            ctx.Async = true;
            ctx.MessageBufferSize = 0;
 
            var sw = System.Diagnostics.Stopwatch.StartNew();
            for (int i = 0; i < count; i++)
                log.LogEvent(0, "test");
            sw.Stop();
 
            ctx.Flush();
 
            Assert.AreEqual(count, counter.RecvdMessages);
            Assert.IsTrue(sw.ElapsedTicks * 100.0 / count <= MaxNSPerMessage, "Time to insert messages was {0} ({1} ns/msg)", sw.Elapsed.TotalSeconds, sw.ElapsedTicks * 100.0 / count);
        }
 
        [Test]
        public void NullMessages()
        {
            var ts = Log.CreateSource("test");
            
            try
            {
                ts.Debug(null as string);
                Assert.Fail("An exception should have been thrown.");
            }
            catch (ArgumentNullException) { }
            try
            {
                ts.Debug(null as Exception);
                Assert.Fail("An exception should have been thrown.");
            }
            catch (ArgumentNullException) { }
            try
            {
                ts.Error(null as string);
                Assert.Fail("An exception should have been thrown.");
            }
            catch (ArgumentNullException) { }
            try
            {
                ts.Error(null as Exception);
                Assert.Fail("An exception should have been thrown.");
            }
            catch(ArgumentNullException) { }
            try
            {
                ts.Warning(null as string);
                Assert.Fail("An exception should have been thrown.");
            }
            catch (ArgumentNullException) { }
            try
            {
                ts.Info(null as string);
                Assert.Fail("An exception should have been thrown.");
            }
            catch (ArgumentNullException) { }
        }
 
        [Test]
        public void TicksTest()
        {
            Assert.AreEqual(10000000, TimeSpan.FromSeconds(1).Ticks);
        }
        
        void testPrint(string test, int x)
        {
            throw new Exception("Intended exception");
        }
 
        class ExceptionTest : Exception
        {
            public override string StackTrace
            {
                get
                {
                    return "{1}";
                }
            }
        }
 
        [Test]
        public void ExceptionDebugLog()
        {
            Log.CreateSource("ExceptionTest").Debug(new ExceptionTest());
        }
 
 
        class LogEventDurationListener : ILogListener
        {
            public string Id = Guid.NewGuid().ToString();
 
            public long duration = - 1;
 
            public void ResetDuration() => duration = -1;
            public void EventsLogged(IEnumerable<Event> Events)
            {
                foreach (var evt in Events)
                {
                    if (evt.Message.Contains(Id))
                        duration = evt.DurationNS;
                }
            }
 
            public void Flush()
            {
                
            }
        }
        [Test]
        public void LogEventDuration()
        {
            var listener = new LogEventDurationListener();
            Log.AddListener(listener);
            try
            {
                var source = Log.CreateSource("test");
 
                source.Debug(TimeSpan.FromSeconds(1), "{0}", listener.Id);
                source.Flush();
                Assert.AreEqual(listener.duration, 1_000_000_000);
 
                source.Debug(TimeSpan.FromSeconds(0), "{0}", listener.Id);
                source.Flush();
                Assert.AreEqual(listener.duration, 0);
            }
            finally
            {
                Log.RemoveListener(listener);
            }
        }
        
        [TestCase("{")]
        [TestCase("}")]
        [TestCase("{}")]
        [TestCase("")]
        public void SimpleTest(string logStr)
        {
            var redirectedLogging = new TestTraceListener();
            using (Session.Create())
            {
                Log.AddListener(redirectedLogging);
                var log = Log.CreateSource("test");
                log.Debug(logStr);   
            }
 
            var logResult = redirectedLogging.allLog.ToString()
                .Split(new []{"\n"},StringSplitOptions.RemoveEmptyEntries)
                .Select(x => x.TrimEnd('\r'))
                .ToArray();
            Assert.AreEqual(1, logResult.Length);
            Assert.IsTrue(logResult[0].EndsWith(logStr));
        }
        
    }
}