[NUI] Add TCs related signal in Common(internal).
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / Common / TSViewLayoutDirectionChangedSignal.cs
1 using global::System;
2 using NUnit.Framework;
3 using NUnit.Framework.TUnit;
4 using Tizen.NUI.Components;
5 using Tizen.NUI.BaseComponents;
6
7 namespace Tizen.NUI.Devel.Tests
8 {
9     using tlog = Tizen.Log;
10
11     [TestFixture]
12     [Description("internal/Common/ViewLayoutDirectionChangedSignal")]
13     public class InternalViewLayoutDirectionChangedSignalTest
14     {
15         private const string tag = "NUITEST";
16
17                 private delegate bool dummyCallback(IntPtr signal);
18         private bool OnDummyCallback(IntPtr data)
19         {
20             return false;
21         }
22
23         [SetUp]
24         public void Init()
25         {
26             tlog.Info(tag, "Init() is called!");
27         }
28
29         [TearDown]
30         public void Destroy()
31         {
32             tlog.Info(tag, "Destroy() is called!");
33         }
34                 
35                 [Test]
36         [Category("P1")]
37         [Description("ViewLayoutDirectionChangedSignal constructor.")]
38         [Property("SPEC", "Tizen.NUI.ViewLayoutDirectionChangedSignal.ViewLayoutDirectionChangedSignal C")]
39         [Property("SPEC_URL", "-")]
40         [Property("CRITERIA", "CONSTR")]
41         [Property("AUTHOR", "guowei.wang@samsung.com")]
42         public void ViewLayoutDirectionChangedSignalConstructor()
43         {
44             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalConstructor START");
45
46             using (View view = new View())
47             {
48                 var testingTarget = new ViewLayoutDirectionChangedSignal(view.SwigCPtr.Handle, false);
49                 Assert.IsNotNull(testingTarget, "Should be not null!");
50                 Assert.IsInstanceOf<ViewLayoutDirectionChangedSignal>(testingTarget, "Should be an Instance of ViewLayoutDirectionChangedSignal!");
51
52                 testingTarget.Dispose();
53             }
54
55             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalConstructor END (OK)");
56         }
57
58         [Test]
59         [Category("P1")]
60         [Description("ViewLayoutDirectionChangedSignal Empty.")]
61         [Property("SPEC", "Tizen.NUI.ViewLayoutDirectionChangedSignal.Empty M")]
62         [Property("SPEC_URL", "-")]
63         [Property("CRITERIA", "MR")]
64         [Property("AUTHOR", "guowei.wang@samsung.com")]
65         public void ViewLayoutDirectionChangedSignalEmpty()
66         {
67             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalEmpty START");
68
69             var testingTarget = new ViewLayoutDirectionChangedSignal();
70             Assert.IsNotNull(testingTarget, "Should be not null!");
71             Assert.IsInstanceOf<ViewLayoutDirectionChangedSignal>(testingTarget, "Should be an Instance of ViewLayoutDirectionChangedSignal!");
72
73             try
74             {
75                 testingTarget.Empty();
76             }
77             catch (Exception e)
78             {
79                 tlog.Debug(tag, e.Message.ToString());
80                 Assert.Fail("Caught Exception: Failed!");
81             }
82
83             testingTarget.Dispose();
84
85             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalEmpty END (OK)");
86         }
87
88         [Test]
89         [Category("P1")]
90         [Description("ViewLayoutDirectionChangedSignal GetConnectionCount.")]
91         [Property("SPEC", "Tizen.NUI.ViewLayoutDirectionChangedSignal.GetConnectionCount M")]
92         [Property("SPEC_URL", "-")]
93         [Property("CRITERIA", "MR")]
94         [Property("AUTHOR", "guowei.wang@samsung.com")]
95         public void ViewLayoutDirectionChangedSignalGetConnectionCount()
96         {
97             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalGetConnectionCount START");
98
99             var testingTarget = new ViewLayoutDirectionChangedSignal();
100             Assert.IsNotNull(testingTarget, "Should be not null!");
101             Assert.IsInstanceOf<ViewLayoutDirectionChangedSignal>(testingTarget, "Should be an Instance of ViewLayoutDirectionChangedSignal!");
102
103             try
104             {
105                 testingTarget.GetConnectionCount();
106             }
107             catch (Exception e)
108             {
109                 tlog.Debug(tag, e.Message.ToString());
110                 Assert.Fail("Caught Exception: Failed!");
111             }
112
113             testingTarget.Dispose();
114
115             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalGetConnectionCount END (OK)");
116         }
117
118         [Test]
119         [Category("P1")]
120         [Description("ViewLayoutDirectionChangedSignal Connect.")]
121         [Property("SPEC", "Tizen.NUI.ViewLayoutDirectionChangedSignal.Connect M")]
122         [Property("SPEC_URL", "-")]
123         [Property("CRITERIA", "MR")]
124         [Property("AUTHOR", "guowei.wang@samsung.com")]
125         public void ViewLayoutDirectionChangedSignalConnect()
126         {
127             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalConnect START");
128
129             var testingTarget = new ViewLayoutDirectionChangedSignal();
130             Assert.IsNotNull(testingTarget, "Should be not null!");
131             Assert.IsInstanceOf<ViewLayoutDirectionChangedSignal>(testingTarget, "Should be an Instance of ViewLayoutDirectionChangedSignal!");
132
133             try
134             {
135                 dummyCallback callback = OnDummyCallback;
136                 testingTarget.Connect(callback);
137                 testingTarget.Disconnect(callback);
138             }
139             catch (Exception e)
140             {
141                 tlog.Debug(tag, e.Message.ToString());
142                 Assert.Fail("Caught Exception: Failed!");
143             }
144
145             testingTarget.Dispose();
146
147             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalConnect END (OK)");
148         }
149
150         [Test]
151         [Category("P1")]
152         [Description("ViewLayoutDirectionChangedSignal Emit.")]
153         [Property("SPEC", "Tizen.NUI.ViewLayoutDirectionChangedSignal.Emit M")]
154         [Property("SPEC_URL", "-")]
155         [Property("CRITERIA", "MR")]
156         [Property("AUTHOR", "guowei.wang@samsung.com")]
157         [Obsolete]
158         public void ViewLayoutDirectionChangedSignalEmit()
159         {
160             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalEmit START");
161             var currentPid = global::System.Diagnostics.Process.GetCurrentProcess().Id;
162             var currentTid = global::System.Threading.Thread.CurrentThread.ManagedThreadId;
163
164             tlog.Debug(tag, $"thread check! main pid={App.mainPid}, current pid={currentPid}, main tid={App.mainTid}, current tid={currentTid}");
165
166             var testingTarget = new ViewLayoutDirectionChangedSignal();
167             Assert.IsNotNull(testingTarget, "Should be not null!");
168             Assert.IsInstanceOf<ViewLayoutDirectionChangedSignal>(testingTarget, "Should be an Instance of ViewLayoutDirectionChangedSignal!");
169
170             try
171             {
172                 using (View view = new View())
173                 {
174                     testingTarget.Emit(view);
175                 }
176             }
177             catch (Exception e)
178             {
179                 tlog.Debug(tag, e.Message.ToString());
180                 Assert.Fail("Caught Exception: Failed!");
181             }
182
183             testingTarget.Dispose();
184
185             tlog.Debug(tag, $"ViewLayoutDirectionChangedSignalEmit END (OK)");
186         }
187     }
188 }