From 2c51638756efbbdf992bf199009c4de8d62bb207 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Thu, 16 Sep 2021 13:53:23 +0900 Subject: [PATCH] [Applications.Cion][TCSACR-448] Add cion TCs Change-Id: Ie03c921f724f4414d7fbd93f26adcd6b5d3699c5 Signed-off-by: Sangyoon Jang --- .../Tizen.Applications.Cion.Tests/Program.cs | 44 ++ .../Tizen.Applications.Cion.Tests.csproj | 41 ++ .../Tizen.Applications.Cion.Tests.sln | 78 ++ .../shared/res/Tizen.Applications.Cion.Tests.png | Bin 0 -> 57662 bytes .../shared/res/rootCA/ca.pem | 18 + .../shared/res/server/test-server.key | 27 + .../shared/res/server/test-server.pem | 19 + .../testcase/TSClientBase.cs | 538 ++++++++++++++ .../testcase/TSConnectionResult.cs | 121 ++++ .../testcase/TSDataPayload.cs | 88 +++ .../testcase/TSFilePayload.cs | 308 ++++++++ .../testcase/TSGroupBase.cs | 327 +++++++++ .../testcase/TSPayload.cs | 72 ++ .../testcase/TSPayloadAsyncResult.cs | 232 ++++++ .../testcase/TSPeerInfo.cs | 316 ++++++++ .../testcase/TSSecurityInfo.cs | 122 ++++ .../testcase/TSServerBase.cs | 800 +++++++++++++++++++++ .../testcase/TestClient.cs | 100 +++ .../testcase/TestGroup.cs | 82 +++ .../testcase/TestHelper.cs | 62 ++ .../testcase/TestServer.cs | 125 ++++ .../testcase/WaitHelper.cs | 28 + .../tizen-manifest.xml | 18 + 23 files changed, 3566 insertions(+) create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/Program.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.csproj create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.sln create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/Tizen.Applications.Cion.Tests.png create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/rootCA/ca.pem create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/server/test-server.key create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/server/test-server.pem create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSClientBase.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSConnectionResult.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSDataPayload.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSFilePayload.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSGroupBase.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayload.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayloadAsyncResult.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPeerInfo.cs create mode 100644 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSSecurityInfo.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSServerBase.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestClient.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestGroup.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestHelper.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestServer.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/WaitHelper.cs create mode 100755 tct-suite-vs/Tizen.Applications.Cion.Tests/tizen-manifest.xml diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/Program.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/Program.cs new file mode 100755 index 0000000..37e51cd --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/Program.cs @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using System; +using NUnitLite.TUnit; +using Tizen.Applications; + +namespace TCT.Tizen +{ + + class Program : ServiceApplication + { + protected override void OnCreate() + { + base.OnCreate(); + + Console.WriteLine("TCT : OnCreate()"); + + TRunner t = new TRunner(); + t.LoadTestsuite(); + t.Execute(); + } + + static void Main(string[] args) + { + Console.WriteLine("TCT : Main()"); + var app = new Program(); + app.Run(args); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.csproj b/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.csproj new file mode 100755 index 0000000..3b2d357 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.csproj @@ -0,0 +1,41 @@ + + + + + Exe + tizen11.0 + Tizen + + + + + true + + + + portable + + + None + + + + + + + + + + + Runtime + + + + + + + + + + + diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.sln b/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.sln new file mode 100755 index 0000000..2fc0659 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/Tizen.Applications.Cion.Tests.sln @@ -0,0 +1,78 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31624.102 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.Applications.Cion.Tests", "Tizen.Applications.Cion.Tests.csproj", "{D92BEEAC-3B2A-45F8-8C53-53B92550404A}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{FDB8025A-C029-461F-895E-287B4C65939B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoTemplate", "..\Template\AutoTemplate\AutoTemplate.csproj", "{B11ABB0C-C3C1-4B5C-8251-A15628A775F3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|x64.ActiveCfg = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|x64.Build.0 = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|x86.ActiveCfg = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Debug|x86.Build.0 = Debug|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|Any CPU.Build.0 = Release|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|x64.ActiveCfg = Release|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|x64.Build.0 = Release|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|x86.ActiveCfg = Release|Any CPU + {D92BEEAC-3B2A-45F8-8C53-53B92550404A}.Release|x86.Build.0 = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|x64.ActiveCfg = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|x64.Build.0 = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|x86.ActiveCfg = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Debug|x86.Build.0 = Debug|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|Any CPU.Build.0 = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|x64.ActiveCfg = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|x64.Build.0 = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|x86.ActiveCfg = Release|Any CPU + {B9E7C1FD-CB38-42F7-AC43-7BD2E5B4D216}.Release|x86.Build.0 = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|x64.ActiveCfg = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|x64.Build.0 = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|x86.ActiveCfg = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Debug|x86.Build.0 = Debug|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|Any CPU.Build.0 = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|x64.ActiveCfg = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|x64.Build.0 = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|x86.ActiveCfg = Release|Any CPU + {FDB8025A-C029-461F-895E-287B4C65939B}.Release|x86.Build.0 = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|x64.ActiveCfg = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|x64.Build.0 = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|x86.ActiveCfg = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Debug|x86.Build.0 = Debug|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|Any CPU.Build.0 = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|x64.ActiveCfg = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|x64.Build.0 = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|x86.ActiveCfg = Release|Any CPU + {B11ABB0C-C3C1-4B5C-8251-A15628A775F3}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {ED382B91-9930-40B6-B3D7-362304C78680} + EndGlobalSection +EndGlobal diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/Tizen.Applications.Cion.Tests.png b/tct-suite-vs/Tizen.Applications.Cion.Tests/shared/res/Tizen.Applications.Cion.Tests.png new file mode 100755 index 0000000000000000000000000000000000000000..9765b1bda7e5bddf0925555ab204b887a873bf24 GIT binary patch literal 57662 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 kZ}gYfNaCF}xV$|1>H6z0+kD + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + _server.Accept(eventArgs.PeerInfo); + }; + _server.DataReceivedEvent += (sender, e) => + { + TestServer.DataReceivedEventArgs eventArgs = e as TestServer.DataReceivedEventArgs; + if (Encoding.UTF8.GetString(eventArgs.Data) == TestServer.HelloMessage) + { + eventArgs.ReplyData = Encoding.UTF8.GetBytes(TestServer.WorldMessage); + } + else + { + eventArgs.ReplyData = Encoding.UTF8.GetBytes("Wrong message."); + } + }; + _server.PayloadReceivedEvent += (sender, e) => + { + TestServer.PayloadReceivedEventArgs eventArgs = e as TestServer.PayloadReceivedEventArgs; + DataPayload reply = new DataPayload(Encoding.UTF8.GetBytes(TestServer.WorldMessage)); + _server.SendPayloadAsync(reply, eventArgs.PeerInfo); + }; + _server.Listen(); + + return _server; + } + + private SecurityInfo CreateSecurityInfo() + { + SecurityInfo securityInfo = new SecurityInfo(); + + string caPath = Application.Current.DirectoryInfo.SharedResource + "/rootCA/ca.pem"; + string certPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.pem"; + string privateKeyPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.key"; + + securityInfo.CaPath = caPath; + securityInfo.CertPath = certPath; + securityInfo.PrivateKeyPath = privateKeyPath; + + return securityInfo; + } + + [SetUp] + public void Init() + { + } + + [TearDown] + public void Destroy() + { + } + + [Test] + [Category("P1")] + [Description("Test : ClientBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.ClientBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ClientBase_INIT() + { + string serviceName = "ClientBase_INIT"; + var client = new TestClient(serviceName); + Assert.IsNotNull(client, "Object should not be null after initializing"); + Assert.IsInstanceOf(client, "client should be an instance of Tizen.Applications.Cion.ClientBase"); + } + + [Test] + [Category("P1")] + [Description("Test : ClientBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.ClientBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string, SecurityInfo")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ClientBase_INIT_WITH_SECURITY_INFO() + { + string serviceName = "ClientBase_INIT_WITH_SECURITY_INFO"; + SecurityInfo securityInfo = CreateSecurityInfo(); + var client = new TestClient(serviceName, securityInfo); + Assert.IsNotNull(client, "Object should not be null after initializing"); + Assert.IsInstanceOf(client, "client should be an instance of Tizen.Applications.Cion.ClientBase"); + } + + [Test] + [Category("P1")] + [Description("Checks if ServiceName property return correct value")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.ServiceName A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ServiceName_READ_ONLY() + { + string serviceName = "ServiceName_READ_ONLY"; + var client = new TestClient(serviceName); + + Assert.IsInstanceOf(client.ServiceName, "ServiceName should be of type string"); + Assert.IsTrue(client.ServiceName == serviceName, string.Format("Wrong ServiceName, Expected: ({0}), Actual: ({1})", serviceName, client.ServiceName)); + } + + [Test] + [Category("P1")] + [Description("Checks if PeerInfo property return correct value")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.PeerInfo A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task PeerInfo_READ_ONLY() + { + string serviceName = "PeerInfo_READ_ONLY"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + Assert.IsNotNull(client.PeerInfo); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.TryDiscovery")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.TryDiscovery M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task TryDiscovery_CHECK_RESULT() + { + string serviceName = "TryDiscovery_CHECK_RESULT"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + client.DiscoveredEvent += (sender, e) => { helper.Done(); }; + client.TryDiscovery(); + bool discovered = await helper.WaitForEvent(60); + + Assert.IsTrue(discovered, string.Format("TIMEOUT: Failed to discover test service {0}", serviceName)); + } + + [Test] + [Category("P2")] + [Description("Checks the result of ClientBase.StopDiscovery")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.StopDiscovery M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void StopDiscovery_CHECK_RESULT() + { + string serviceName = "StopDiscovery_CHECK_RESULT"; + var client = new TestClient(serviceName); + + try + { + client.StopDiscovery(); + } + catch (InvalidOperationException) + { + Assert.Pass("InvalidOperationException occurred."); + } + } + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.Connect")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.Connect M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Connect_CHECK_RESULT() + { + string serviceName = "Connect_CHECK_RESULT"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + } + + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.Disconnect")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.Disconnect M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Disconnect_CHECK_RESULT() + { + string serviceName = "Disconnect_CHECK_RESULT"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper.Done(); + }; + + client.DisconnectedEvent += (sender, e) => + { + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + helper.Reset(); + + client.Disconnect(); + bool disconnected = await helper.WaitForEvent(60); + Assert.IsTrue(disconnected, string.Format("TIMEOUT: Failed to disconnect test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.SendData")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.SendData M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task SendData_CHECK_RESULT() + { + string serviceName = "SendData_CHECK_RESULT"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + // SendData is a synchronouse API and we run server and client simultaneously here, so we need to invoke SendData() at another thread + byte[] reply = null; + try + { + reply = await Task.Run(() => + { + return client.SendData(Encoding.UTF8.GetBytes(TestServer.HelloMessage), 5000); + }); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at SendData(): {0}", e.Message)); + } + + Assert.IsNotNull(reply, "Reply is null"); + Assert.AreEqual(TestServer.WorldMessage, Encoding.UTF8.GetString(reply), string.Format("Wrong ServiceName, Expected: ({0}), Actual: ({1})", TestServer.WorldMessage, Encoding.UTF8.GetString(reply))); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.SendPayloadAsync")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.SendPayloadAsync M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task SendPayloadAsync_CHECK_RESULT() + { + string serviceName = "SendPayloadAsync_CHECK_RESULT"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + DataPayload dataPayload = new DataPayload(Encoding.UTF8.GetBytes(TestServer.HelloMessage)); + PayloadAsyncResult result = await client.SendPayloadAsync(dataPayload); + + Assert.IsNotNull(result); + Assert.AreEqual(result.Result, PayloadAsyncResultCode.Success); + } + + [Test] + [Category("P1")] + [Description("Checks the callback ClientBase.OnConnectionResult invoked")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.OnConnectionResult M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnConnectionResult_CHECK_CB() + { + string serviceName = "OnConnectionResult_CHECK_CB"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the callback ClientBase.OnDisconnected invoked")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.OnDisconnected M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnDisconnected_CHECK_CB() + { + string serviceName = "OnDisconnected_CHECK_CB"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + client.DisconnectedEvent += (sender, e) => + { + helper.Done(); + }; + helper.Reset(); + client.Disconnect(); + bool disconnected = await helper.WaitForEvent(60); + Assert.IsTrue(disconnected, string.Format("TIMEOUT: Failed to disconnect test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the callback ClientBase.OnDiscovered invoked")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.OnDiscovered M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnDiscovered_CHECK_CB() + { + string serviceName = "OnDiscovered_CHECK_CB"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + helper.Done(); + }; + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, string.Format("TIMEOUT: Failed to discover test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the callback ClientBase.OnPayloadReceived invoked")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.OnPayloadReceived M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnPayloadReceived_CHECK_CB() + { + string serviceName = "OnPayloadReceived_CHECK_CB"; + var server = SetupServer(serviceName); + var client = new TestClient(serviceName); + + client.TryDiscovery(); + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect server"); + helper.Done(); + }; + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + helper.Reset(); + client.PayloadReceivedEvent += (sender, e) => + { + helper.Done(); + }; + server.SendPayloadAsync(new DataPayload(Encoding.UTF8.GetBytes(TestServer.HelloMessage))); + + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "Data was not received"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ClientBase.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.ClientBase.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Dispose_CHECK_RESULT() + { + string serviceName = "Dispose_CHECK_RESULT"; + var client = new TestClient(serviceName); + + try + { + client.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSConnectionResult.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSConnectionResult.cs new file mode 100644 index 0000000..e3e6b79 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSConnectionResult.cs @@ -0,0 +1,121 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.ConnectionResult Tests")] + public class ConnectionResultTests + { + [SetUp] + public void Init() + { + } + + [TearDown] + public void Destroy() + { + } + + [Test] + [Category("P1")] + [Description("Test : ConnectionResult Properties")] + [Property("SPEC", "Tizen.Applications.Cion.ConnectionResult.Status A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Status_PROPERTY_GET() + { + string serviceName = "Status_PROPERTY_GET"; + string displayName = "Status_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established or error occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : ConnectionResult Properties")] + [Property("SPEC", "Tizen.Applications.Cion.ConnectionResult.Reason A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Reason_PROPERTY_GET() + { + string serviceName = "Reason_PROPERTY_GET"; + string displayName = "Reason_PROPERTY_GET"; + string rejectReason = "Test Reason"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Reject(eventArgs.PeerInfo, rejectReason); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(rejectReason, eventArgs.Result.Reason, string.Format("Reject reason are not equal. expected {0} actual {0}", rejectReason, eventArgs.Result.Reason)); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established or error occurred"); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSDataPayload.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSDataPayload.cs new file mode 100644 index 0000000..ae72f9d --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSDataPayload.cs @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System; +using System.Linq; +using System.Text; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.DataPayload Tests")] + public class DataPayloadTests + { + private DataPayload _dataPayload; + + [SetUp] + public void Init() + { + string data = "Test Data"; + _dataPayload = new DataPayload(Encoding.UTF8.GetBytes(data)); + } + + [TearDown] + public void Destroy() + { + _dataPayload = null; + } + + [Test] + [Category("P1")] + [Description("Test : DataPayload Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.DataPayload.DataPayload C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void DataPayload_INIT() + { + string data = "DataPayload_INIT"; + var dataPayload = new DataPayload(Encoding.UTF8.GetBytes(data)); + Assert.IsNotNull(dataPayload, "Object should not be null after initializing"); + Assert.IsInstanceOf(dataPayload, "group should be an instance of Tizen.Applications.Cion.DataPayload"); + } + + [Test] + [Category("P1")] + [Description("Test : DataPayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.DataPayload.PayloadType A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void PayloadType_PROPERTY_GET() + { + Assert.AreEqual(PayloadType.DataPayload, _dataPayload.PayloadType, "Property \"PayloadType\" of DataPayload should be PayloadType.DataPayload"); + } + + [Test] + [Category("P1")] + [Description("Test : DataPayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.DataPayload.Data A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRW")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Data_PROPERTY_SET_GET() + { + string data = "Data_PROPERTY_SET_GET"; + byte[] byteData = Encoding.UTF8.GetBytes(data); + + _dataPayload.Data = byteData; + + bool isEqual = byteData.SequenceEqual(_dataPayload.Data); + Assert.IsTrue(isEqual, "Property \"Data\": the set value and the get value should be equal"); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSFilePayload.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSFilePayload.cs new file mode 100644 index 0000000..fa47008 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSFilePayload.cs @@ -0,0 +1,308 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.FilePayload Tests")] + public class FilePayloadTests + { + private FilePayload _filePayload; + private readonly string _fileName = "Tizen.Applications.Cion.Tests.png"; + + [SetUp] + public void Init() + { + string path = Application.Current.ApplicationInfo.SharedResourcePath + "/" + _fileName; + _filePayload = new FilePayload(path); + } + + [TearDown] + public void Destroy() + { + _filePayload = null; + } + + [Test] + [Category("P1")] + [Description("Test : FilePayload Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.FilePayload C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void FilePayload_INIT() + { + string path = Application.Current.ApplicationInfo.SharedResourcePath + "/Tizen.Applications.Cion.Tests.png"; + var filePayload = new FilePayload(path); + Assert.IsNotNull(filePayload, "Object should not be null after initializing"); + Assert.IsInstanceOf(filePayload, "filePayload should be an instance of Tizen.Applications.Cion.FilePayload"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of FilePayload.SaveAsFile")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.SaveAsFile M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task SaveAsFile_CHECK_RESULT() + { + string serviceName = "SaveAsFile_CHECK_RESULT"; + string displayName = "SaveAsFile_CHECK_RESULT"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.PayloadReceivedEvent += (sender, e) => + { + TestServer.PayloadReceivedEventArgs eventArgs = e as TestServer.PayloadReceivedEventArgs; + if (eventArgs.Status != PayloadTransferStatus.Success) + return; + + string path = Application.Current.DirectoryInfo.Data + "/download.png"; + FilePayload payload = eventArgs.Payload as FilePayload; + try + { + payload.SaveAsFile(path); + helper.Done(); + } + catch (Exception exception) + { + Assert.Fail(string.Format("Exception occurred during SaveAsFile: {0}", exception.Message)); + } + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established"); + + client.SendPayloadAsync(_filePayload); + bool saved = await helper.WaitForEvent(60); + Assert.IsTrue(saved, "SaveAsFile not invoked or failed"); + } + + [Test] + [Category("P1")] + [Description("Test : FilePayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.PayloadType A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void PayloadType_PROPERTY_GET() + { + Assert.AreEqual(PayloadType.FilePayload, _filePayload.PayloadType, "Property \"PayloadType\" of FilePayload should be PayloadType.FilePayload"); + } + + [Test] + [Category("P1")] + [Description("Test : FilePayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.ReceivedBytes A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task ReceivedBytes_PROPERTY_GET() + { + string serviceName = "ReceivedBytes_PROPERTY_GET"; + string displayName = "ReceivedBytes_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.PayloadReceivedEvent += (sender, e) => + { + TestServer.PayloadReceivedEventArgs eventArgs = e as TestServer.PayloadReceivedEventArgs; + if (eventArgs.Status != PayloadTransferStatus.Success) + return; + + FilePayload payload = eventArgs.Payload as FilePayload; + Assert.IsInstanceOf(payload.ReceivedBytes); + Assert.Greater(payload.ReceivedBytes, 0, "ReceivedBytes should be greater than 0."); + helper.Done(); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established"); + + helper.Reset(); + client.SendPayloadAsync(_filePayload); + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "File was not received"); + } + + [Test] + [Category("P1")] + [Description("Test : FilePayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.ReceivedFileName A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task ReceivedFileName_PROPERTY_GET() + { + string serviceName = "ReceivedBytes_PROPERTY_GET"; + string displayName = "ReceivedBytes_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.PayloadReceivedEvent += (sender, e) => + { + TestServer.PayloadReceivedEventArgs eventArgs = e as TestServer.PayloadReceivedEventArgs; + if (eventArgs.Status != PayloadTransferStatus.Success) + return; + + FilePayload payload = eventArgs.Payload as FilePayload; + Assert.IsInstanceOf(payload.ReceivedFileName); + Assert.AreEqual(_fileName, payload.ReceivedFileName, "Wrong ServiceName, Expected: ({0}), Actual: ({1})", _fileName, payload.ReceivedFileName); + helper.Done(); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established"); + + helper.Reset(); + client.SendPayloadAsync(_filePayload); + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "File was not received"); + } + + [Test] + [Category("P1")] + [Description("Test : FilePayload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.FilePayload.TotalBytes A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task TotalBytes_PROPERTY_GET() + { + string serviceName = "TotalBytes_PROPERTY_GET"; + string displayName = "TotalBytes_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.PayloadReceivedEvent += (sender, e) => + { + TestServer.PayloadReceivedEventArgs eventArgs = e as TestServer.PayloadReceivedEventArgs; + if (eventArgs.Status != PayloadTransferStatus.Success) + return; + + FilePayload payload = eventArgs.Payload as FilePayload; + Assert.IsInstanceOf(payload.TotalBytes); + Assert.Greater(payload.TotalBytes, 0, "TotalBytes should be greater than 0."); + helper.Done(); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, "Connection not established"); + + helper.Reset(); + client.SendPayloadAsync(_filePayload); + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "File was not received"); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSGroupBase.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSGroupBase.cs new file mode 100755 index 0000000..9f70a01 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSGroupBase.cs @@ -0,0 +1,327 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System.Text; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + + [TestFixture] + [Description("Tizen.Applications.GroupBase Tests")] + public class GroupBaseTests + { + private SecurityInfo CreateSecurityInfo() + { + SecurityInfo securityInfo = new SecurityInfo(); + + string caPath = Application.Current.DirectoryInfo.SharedResource + "/rootCA/ca.pem"; + string certPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.pem"; + string privateKeyPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.key"; + + securityInfo.CaPath = caPath; + securityInfo.CertPath = certPath; + securityInfo.PrivateKeyPath = privateKeyPath; + + return securityInfo; + } + + [SetUp] + public void Init() + { + } + + [TearDown] + public void Destroy() + { + + } + + [Test] + [Category("P1")] + [Description("Test : GroupBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.GroupBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void GroupBase_INIT() + { + string topic = "GroupBase_INIT"; + var group = new TestGroup(topic); + Assert.IsNotNull(group, "Object should not be null after initializing"); + Assert.IsInstanceOf(group, "group should be an instance of Tizen.Applications.Cion.GroupBase"); + } + + [Test] + [Category("P1")] + [Description("Test : GroupBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.GroupBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string, SecurityInfo")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void GroupBase_INIT_WITH_SECURITY_INFO() + { + string topic = "GroupBase_INIT_WITH_SECURITY_INFO"; + SecurityInfo securityInfo = CreateSecurityInfo(); + var group = new TestGroup(topic, securityInfo); + Assert.IsNotNull(group, "Object should not be null after initializing"); + Assert.IsInstanceOf(group, "group should be an instance of Tizen.Applications.Cion.GroupBase"); + } + + [Test] + [Category("P1")] + [Description("Checks if Topic property return correct value")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.Topic A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Topic_READ_ONLY() + { + string topic = "Topic_READ_ONLY"; + var group = new TestGroup(topic); + + Assert.IsInstanceOf(group.Topic, "Topic should be of type string"); + Assert.IsTrue(group.Topic == topic, string.Format("Wrong Topic, Expected: ({0}), Actual: ({1})", topic, group.Topic)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of GroupBase.Subscribe")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.Subscribe M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Subscribe_CHECK_RESULT() + { + string topic = "Subscribe_CHECK_RESULT"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of GroupBase.Unsubscribe")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.Unsubscribe M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Unsubscribe_CHECK_RESULT() + { + string topic = "Unsubscribe_CHECK_RESULT"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.LeftEvent += (sender, eventArgs) => + { + helper.Done(); + }; + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + helper.Reset(); + + group2.Unsubscribe(); + + bool left = await helper.WaitForEvent(60); + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to unsubscribe test topic {0}", topic)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of GroupBase.Publish")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.Publish M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Publish_CHECK_RESULT() + { + string topic = "Publish_CHECK_RESULT"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.PayloadReceivedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + helper.Reset(); + + string testData = "Publish_CHECK_RESULT"; + DataPayload payload = new DataPayload(Encoding.UTF8.GetBytes(testData)); + group2.Publish(payload); + + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "Data was not received"); + } + + [Test] + [Category("P1")] + [Description("Checks the callback GroupBase.OnJoined invoked")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.OnJoined M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnJoined_CHECK_CB() + { + string topic = "OnJoined_CHECK_CB"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + } + + [Test] + [Category("P1")] + [Description("Checks the callback GroupBase.OnLeft invoked")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.OnLeft M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnLeft_CHECK_CB() + { + string topic = "OnLeft_CHECK_CB"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + + helper.Reset(); + group.LeftEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group2.Unsubscribe(); + bool left = await helper.WaitForEvent(60); + Assert.IsTrue(left, string.Format("TIMEOUT: Failed to unsubscribe test topic {0}", topic)); + } + + [Test] + [Category("P1")] + [Description("Checks the callback GroupBase.OnPayloadReceived invoked")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.OnPayloadReceived M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnPayloadReceived_CHECK_CB() + { + string topic = "OnJoined_CHECK_CB"; + var group = new TestGroup(topic); + var group2 = new TestGroup(topic); + WaitHelper helper = new WaitHelper(); + + group.JoinedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group.Subscribe(); + group2.Subscribe(); + + bool joined = await helper.WaitForEvent(60); + Assert.IsTrue(joined, string.Format("TIMEOUT: Failed to subscribe test topic {0}", topic)); + + helper.Reset(); + + group.PayloadReceivedEvent += (sender, eventArgs) => + { + helper.Done(); + }; + + group2.Publish(new DataPayload(Encoding.UTF8.GetBytes("TEST"))); + bool received = await helper.WaitForEvent(60); + Assert.IsTrue(received, "Data was not received"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of GroupBase.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.GroupBase.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Dispose_CHECK_RESULT() + { + string topic = "Dispose_CHECK_RESULT"; + var group = new TestGroup(topic); + + try + { + group.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayload.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayload.cs new file mode 100644 index 0000000..e339dca --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayload.cs @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System.Text; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.Payload Tests")] + public class PayloadTests + { + private static Payload[] _payloads; + private readonly string _fileName = "Tizen.Applications.Cion.Tests.png"; + private readonly string _dataString = "Test Data"; + + [SetUp] + public void Init() + { + _payloads = new Payload[] + { + new FilePayload(_fileName), + new DataPayload(Encoding.UTF8.GetBytes(_dataString)), + }; + } + + [TearDown] + public void Destroy() + { + _payloads = null; + } + + [Test] + [Category("P1")] + [Description("Test : Payload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.Payload.Id A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Id_PROPERTY_GET() + { + Assert.IsInstanceOf(_payloads[0].Id); + Assert.IsInstanceOf(_payloads[1].Id); + } + + [Test] + [Category("P1")] + [Description("Test : Payload Properties")] + [Property("SPEC", "Tizen.Applications.Cion.Payload.PayloadType A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void PayloadType_PROPERTY_GET() + { + Assert.AreEqual(PayloadType.FilePayload, _payloads[0].PayloadType); + Assert.AreEqual(PayloadType.DataPayload, _payloads[1].PayloadType); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayloadAsyncResult.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayloadAsyncResult.cs new file mode 100644 index 0000000..99cb57e --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPayloadAsyncResult.cs @@ -0,0 +1,232 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System.Text; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.PayloadAsyncResult Tests")] + public class PayloadAsyncResultTests + { + private DataPayload _dataPayload; + + [SetUp] + public void Init() + { + string data = "PayloadAsyncResultTests"; + _dataPayload = new DataPayload(Encoding.UTF8.GetBytes(data)); + } + + [TearDown] + public void Destroy() + { + _dataPayload = null; + } + + [Test] + [Category("P1")] + [Description("Test : PayloadAsyncResult Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PayloadAsyncResult.PayloadId A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task PayloadId_PROPERTY_GET() + { + string serviceName = "PayloadId_PROPERTY_GET"; + string displayName = "PayloadId_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + + Assert.IsTrue(connected, "Connection not established"); + + PayloadAsyncResult result = await client.SendPayloadAsync(_dataPayload); + Assert.IsInstanceOf(result.PayloadId, "PayloadId should be string"); + Assert.IsNotNull(result.PayloadId, "PayloadId should not be null"); + } + + [Test] + [Category("P1")] + [Description("Test : PayloadAsyncResult Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PayloadAsyncResult.PeerInfo A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task PeerInfo_PROPERTY_GET() + { + string serviceName = "PeerInfo_PROPERTY_GET"; + string displayName = "PeerInfo_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + + Assert.IsTrue(connected, "Connection not established"); + + PayloadAsyncResult result = await client.SendPayloadAsync(_dataPayload); + Assert.IsInstanceOf(result.PeerInfo, "PeerInfo should be PeerInfo"); + Assert.IsNotNull(result.PeerInfo, "PeerInfo should not be null"); + } + + [Test] + [Category("P1")] + [Description("Test : PayloadAsyncResult Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PayloadAsyncResult.Result A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Result_PROPERTY_GET() + { + string serviceName = "Result_PROPERTY_GET"; + string displayName = "Result_PROPERTY_GET"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + + Assert.IsTrue(connected, "Connection not established"); + + PayloadAsyncResult result = await client.SendPayloadAsync(_dataPayload); + Assert.IsInstanceOf(result.Result, "Result should be PayloadAsyncResultCode"); + Assert.AreEqual(PayloadAsyncResultCode.Success, result.Result, "Result code is not PayloadAsyncResultCode.Success"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of PayloadAsyncResult.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.PayloadAsyncResult.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Dispose_CHECK_RESULT() + { + string serviceName = "Dispose_CHECK_RESULT"; + string displayName = "Dispose_CHECK_RESULT"; + + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + client.Connect(eventArgs.PeerInfo); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + Assert.AreEqual(ConnectionStatus.OK, eventArgs.Result.Status); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + bool connected = await helper.WaitForEvent(60); + + Assert.IsTrue(connected, "Connection not established"); + + PayloadAsyncResult result = await client.SendPayloadAsync(_dataPayload); + try + { + result.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPeerInfo.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPeerInfo.cs new file mode 100644 index 0000000..0873210 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSPeerInfo.cs @@ -0,0 +1,316 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.PeerInfo Tests")] + public class PeerInfoTests + { + [SetUp] + public void Init() + { + } + + [TearDown] + public void Destroy() + { + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.AppId A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task AppId_PROPERTY_GET() + { + string serviceName = "AppId_PROPERTY_GET"; + string displayName = "AppId_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.AppId, "AppId should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.AppId, "AppId should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.AppVersion A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task AppVersion_PROPERTY_GET() + { + string serviceName = "AppVersion_PROPERTY_GET"; + string displayName = "AppVersion_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.AppVersion, "AppVersion should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.AppVersion, "AppVersion should not be null"); + Assert.AreEqual("1.0.0", eventArgs.PeerInfo.AppVersion); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.DeviceId A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task DeviceId_PROPERTY_GET() + { + string serviceName = "DeviceId_PROPERTY_GET"; + string displayName = "DeviceId_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.DeviceId, "DeviceId should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.DeviceId, "DeviceId should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.DeviceName A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task DeviceName_PROPERTY_GET() + { + string serviceName = "DeviceName_PROPERTY_GET"; + string displayName = "DeviceName_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.DeviceName, "DeviceName should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.DeviceName, "DeviceName should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.DevicePlatform A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task DevicePlatform_PROPERTY_GET() + { + string serviceName = "DevicePlatform_PROPERTY_GET"; + string displayName = "DevicePlatform_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.DevicePlatform, "DevicePlatform should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.DevicePlatform, "DevicePlatform should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.DevicePlatformVersion A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task DevicePlatformVersion_PROPERTY_GET() + { + string serviceName = "DevicePlatformVersion_PROPERTY_GET"; + string displayName = "DevicePlatformVersion_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.DevicePlatformVersion, "DevicePlatform should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.DevicePlatformVersion, "DevicePlatform should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.DeviceType A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task DeviceType_PROPERTY_GET() + { + string serviceName = "DeviceType_PROPERTY_GET"; + string displayName = "DeviceType_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.DeviceType, "DeviceType should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.DeviceType, "DeviceType should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Test : PeerInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.UUID A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task UUID_PROPERTY_GET() + { + string serviceName = "UUID_PROPERTY_GET"; + string displayName = "UUID_PROPERTY_GET"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.UUID, "UUID should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.UUID, "UUID should not be null"); + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of PeerInfo.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.PeerInfo.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Dispose_CHECK_RESULT() + { + string serviceName = "Dispose_CHECK_RESULT"; + string displayName = "Dispose_CHECK_RESULT"; + var server = new TestServer(serviceName, displayName); + var client = new TestClient(serviceName); + WaitHelper helper = new WaitHelper(); + + client.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + Assert.IsInstanceOf(eventArgs.PeerInfo.UUID, "UUID should be of type string"); + Assert.IsNotNull(eventArgs.PeerInfo.UUID, "UUID should not be null"); + var peerInfo = eventArgs.PeerInfo; + try + { + peerInfo.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + helper.Done(); + }; + + server.Listen(); + client.TryDiscovery(); + + bool discovered = await helper.WaitForEvent(60); + Assert.IsTrue(discovered, "Discovered event not occurred"); + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSSecurityInfo.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSSecurityInfo.cs new file mode 100644 index 0000000..89f4a09 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSSecurityInfo.cs @@ -0,0 +1,122 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; + +namespace Tizen.Applications.Cion.Tests +{ + [TestFixture] + [Description("Tizen.Applications.Cion.SecurityInfo Tests")] + public class SecurityInfoTests + { + private SecurityInfo _securityInfo; + + [SetUp] + public void Init() + { + _securityInfo = new SecurityInfo(); + } + + [TearDown] + public void Destroy() + { + _securityInfo = null; + } + + [Test] + [Category("P1")] + [Description("Test : SecurityInfo Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.SecurityInfo.SecurityInfo C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void SecurityInfo_INIT() + { + var securityInfo = new SecurityInfo(); + Assert.IsNotNull(securityInfo, "Object should not be null after initializing"); + Assert.IsInstanceOf(securityInfo, "securityInfo should be an instance of Tizen.Applications.Cion.SecurityInfo"); + } + + [Test] + [Category("P1")] + [Description("Test : SecurityInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.SecurityInfo.CaPath A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRW")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void CaPath_PROPERTY_SET_GET() + { + string path = Application.Current.DirectoryInfo.SharedResource + "/rootCA/ca.pem"; + + _securityInfo.CaPath = path; + Assert.IsInstanceOf(_securityInfo.CaPath); + Assert.AreEqual(path, _securityInfo.CaPath, "Property \"CaPath\": the set value and the get value should be equal"); + } + + [Test] + [Category("P1")] + [Description("Test : SecurityInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.SecurityInfo.CertPath A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRW")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void CertPath_PROPERTY_SET_GET() + { + string path = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.pem"; + + _securityInfo.CertPath = path; + Assert.IsInstanceOf(_securityInfo.CertPath); + Assert.AreEqual(path, _securityInfo.CertPath, "Property \"CertPath\": the set value and the get value should be equal"); + } + + [Test] + [Category("P1")] + [Description("Test : SecurityInfo Properties")] + [Property("SPEC", "Tizen.Applications.Cion.SecurityInfo.PrivateKeyPath A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRW")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void PrivateKeyPath_PROPERTY_SET_GET() + { + string path = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.key"; + + _securityInfo.PrivateKeyPath = path; + Assert.IsInstanceOf(_securityInfo.PrivateKeyPath); + Assert.AreEqual(path, _securityInfo.PrivateKeyPath, "Property \"CaPath\": the set value and the get value should be equal"); + } + + [Test] + [Category("P1")] + [Description("Checks the result of SecurityInfo.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.SecurityInfo.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Dispose_CHECK_RESULT() + { + var securityInfo = new SecurityInfo(); + + try + { + securityInfo.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSServerBase.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSServerBase.cs new file mode 100755 index 0000000..357a05a --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TSServerBase.cs @@ -0,0 +1,800 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + + [TestFixture] + [Description("Tizen.Applications.Cion.ServerBase Tests")] + public class ServerBaseTests + { + private TestClient SetupClient(string serviceName) + { + TestClient _testClient = new TestClient(serviceName); + _testClient.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + _testClient.Connect(eventArgs.PeerInfo); + }; + _testClient.TryDiscovery(); + return _testClient; + } + + private SecurityInfo CreateSecurityInfo() + { + SecurityInfo securityInfo = new SecurityInfo(); + + string caPath = Application.Current.DirectoryInfo.SharedResource + "/rootCA/ca.pem"; + string certPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.pem"; + string privateKeyPath = Application.Current.DirectoryInfo.SharedResource + "/server/test-server.key"; + + securityInfo.CaPath = caPath; + securityInfo.CertPath = certPath; + securityInfo.PrivateKeyPath = privateKeyPath; + + return securityInfo; + } + + [SetUp] + public void Init() + { + } + + [TearDown] + public void Destroy() + { + } + + [Test] + [Category("P1")] + [Description("Test : ServerBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.ServerBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string, string")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ServerBase_INIT() + { + string serviceName = "ServerBase_INIT"; + string displayName = "ServerBase_INIT"; + var server = new TestServer(serviceName, displayName); + Assert.IsNotNull(server, "Object should not be null after initializing"); + Assert.IsInstanceOf(server, "server should be an instance of Tizen.Applications.Cion.ServerBase"); + } + + [Test] + [Category("P1")] + [Description("Test : ServerBase Constructor - Object should not be null after initializing")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.ServerBase C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string, string, SecurityInfo")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ServerBase_INIT_WITH_SECURITY_INFO() + { + string serviceName = "ServerBase_INIT_WITH_SECURITY_INFO"; + string displayName = "ServerBase_INIT_WITH_SECURITY_INFO"; + SecurityInfo securityInfo = CreateSecurityInfo(); + var server = new TestServer(serviceName, displayName,securityInfo); + Assert.IsNotNull(server, "Object should not be null after initializing"); + Assert.IsInstanceOf(server, "server should be an instance of Tizen.Applications.Cion.ServerBase"); + } + + [Test] + [Category("P1")] + [Description("Checks if ServiceName property return correct value")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.ServiceName A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void ServiceName_READ_ONLY() + { + string serviceName = "ServerServiceName"; + var server = new TestServer(serviceName, serviceName); + + Assert.IsInstanceOf(server.ServiceName, "ServiceName should be of type string"); + Assert.IsTrue(server.ServiceName == serviceName, string.Format("Wrong ServiceName, Expected: ({0}), Actual: ({1})", serviceName, server.ServiceName)); + } + + [Test] + [Category("P1")] + [Description("Checks if DisplayName property return correct value")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.DisplayName A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRO")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void DisplayName_READ_ONLY() + { + string serviceName = "ServerDisplayName"; + var server = new TestServer(serviceName, serviceName); + + Assert.IsInstanceOf(server.DisplayName, "ServiceName should be of type string"); + Assert.IsTrue(server.DisplayName == serviceName, string.Format("Wrong DisplayName, Expected: ({0}), Actual: ({1})", serviceName, server.DisplayName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Listen")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Listen M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Listen_CHECK_RESULT() + { + string serviceName = "Listen_CHECK_RESULT"; + var server = new TestServer(serviceName, serviceName); + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Stop")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Stop M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Stop_CHECK_RESULT() + { + string serviceName = "Stop_CHECK_RESULT"; + var server = new TestServer(serviceName, serviceName); + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + try + { + server.Stop(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Stop(): ", e.Message)); + } + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Disconnect")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Disconnect M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Disconnect_CHECK_RESULT() + { + string serviceName = "Disconnect_CHECK_RESULT"; + var client = SetupClient(serviceName); + WaitHelper helper = new WaitHelper(); + WaitHelper helper2 = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + PeerInfo peer = null; + server.ConnectionRequestEvent += (sender, e) => + { + Log.Error("CION", "Test client connection requested!!"); + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + peer = eventArgs.PeerInfo; + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper2.Done(); + }; + + client.DisconnectedEvent += (sender, e) => + { + Log.Error("CION", "Test client connection disconnected"); + TestClient.DisconnectedEventArgs eventArgs = e as TestClient.DisconnectedEventArgs; + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + // wait until server and client get connected event + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect with test service {0}", serviceName)); + helper.Reset(); + connected = await helper2.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect with test service {0}", serviceName)); + helper2.Reset(); + + WaitHelper test = new WaitHelper(); + await test.WaitForEvent(60); + + server.Disconnect(peer); + bool disconnected = await helper.WaitForEvent(60); + Assert.IsTrue(disconnected, string.Format("TIMEOUT: Failed to disconnect with test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.SendPayloadAsync")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.SendPayloadAsync M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("COVPARAM", "Payload")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task SendPayloadAsync_CHECK_RESULT() + { + string serviceName = "SendPayloadAsync_CHECK_RESULT"; + var client = SetupClient(serviceName); + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + DataPayload dataPayload = new DataPayload(Encoding.UTF8.GetBytes(TestServer.HelloMessage)); + try + { + server.SendPayloadAsync(dataPayload); + } + catch (Exception exception) + { + Assert.Fail("Exception occurred: {0}", exception.Message); + } + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.SendPayloadAsync")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.SendPayloadAsync M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("COVPARAM", "Payload, PeerInfo")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task SendPayloadAsync_WITH_PEERINFO_CHECK_RESULT() + { + string serviceName = "SendPayloadAsync_WITH_PEERINFO_CHECK_RESULT"; + var client = SetupClient(serviceName); + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + PeerInfo peer = null; + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + peer = eventArgs.PeerInfo; + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + DataPayload dataPayload = new DataPayload(Encoding.UTF8.GetBytes(TestServer.HelloMessage)); + PayloadAsyncResult result = await server.SendPayloadAsync(dataPayload, peer); + + Assert.IsNotNull(result); + Assert.AreEqual(result.Result, PayloadAsyncResultCode.Success); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Accept")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Accept M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Accept_CHECK_RESULT() + { + string serviceName = "Accept_CHECK_RESULT"; + var client = SetupClient(serviceName); + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + PeerInfo peer = null; + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + peer = eventArgs.PeerInfo; + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + bool accepted = await helper.WaitForEvent(60); + Assert.IsTrue(accepted, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Reject")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Reject M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task Reject_CHECK_RESULT() + { + string serviceName = "Reject_CHECK_RESULT"; + var client = SetupClient(serviceName); + WaitHelper helper = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status == ConnectionStatus.Rejected) + { + helper.Done(); + } + else + { + Assert.Fail(string.Format("Client does not received reject event")); + } + }; + var server = new TestServer(serviceName, serviceName); + + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Reject(eventArgs.PeerInfo, "Test Reason"); + }; + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + bool isRejected = await helper.WaitForEvent(60); + Assert.IsTrue(isRejected, string.Format("TIMEOUT: Failed to reject test client {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.GetConnectedPeerList")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.GetConnectedPeerList M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task GetConnectedPeerList_RETURN_VALUE() + { + string serviceName = "GetConnectedPeerList_RETURN_VALUE"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + PeerInfo peer = null; + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + peer = eventArgs.PeerInfo; + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + helper.Done(); + }; + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + + var client = SetupClient(serviceName); + bool connected = await helper.WaitForEvent(60); + Assert.IsTrue(connected, string.Format("TIMEOUT: Failed to connect test service {0}", serviceName)); + + IEnumerable connectedPeers = server.GetConnectedPeerList(); + Assert.AreEqual(1, connectedPeers.Count(), string.Format("Wrong connected peer number, Expected: ({0}), Actual: ({1}", 1, connectedPeers.Count())); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.SetOndemandLaunchEnabled")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.SetOndemandLaunchEnabled M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void SetOndemandLaunchEnabled_CHECK_RESULT() + { + string serviceName = "SetOndemandLaunchEnabled_CHECK_RESULT"; + var server = new TestServer(serviceName, serviceName); + + try + { + server.SetOndemandLaunchEnabled(false); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at SetOndemandLaunchEnabled(): ", e.Message)); + } + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.OnConnectionRequest")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.OnConnectionRequest M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnConnectionRequest_CHECK_CB() + { + string serviceName = "OnConnectionRequest_CHECK_CB"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + var client = SetupClient(serviceName); + + bool requested = await helper.WaitForEvent(60); + Assert.IsTrue(requested, string.Format("TIMEOUT: Failed to receive connection request test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.OnConnectionResult")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.OnConnectionResult M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnConnectionResult_CHECK_CB() + { + string serviceName = "OnConnectionRequest_CHECK_CB"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + var client = SetupClient(serviceName); + + bool result = await helper.WaitForEvent(60); + Assert.IsTrue(result, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.OnDataReceived")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.OnDataReceived M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnDataReceived_CHECK_CB() + { + string serviceName = "OnDataReceived_CHECK_CB"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): {0}", e.Message)); + } + var client = SetupClient(serviceName); + WaitHelper helper2 = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper2.Done(); + }; + + bool result = await helper.WaitForEvent(60); + Assert.IsTrue(result, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + bool result2 = await helper2.WaitForEvent(60); + Assert.IsTrue(result2, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + helper.Reset(); + + server.DataReceivedEvent += (sender, e) => + { + TestServer.DataReceivedEventArgs eventArgs = e as TestServer.DataReceivedEventArgs; + + Log.Debug("CION", "OnDataReceived " + eventArgs.Data.Length.ToString()); + + for (int i = 0; i < eventArgs.Data.Length; i++) + { + Log.Debug("CION", "OnDataReceived " + eventArgs.Data[i].ToString()); + } + + if (Encoding.UTF8.GetString(eventArgs.Data) == TestServer.HelloMessage) + + + helper.Done(); + }; + + Task task = Task.Run(() => + { + return client.SendData(Encoding.UTF8.GetBytes(TestServer.HelloMessage), 5000); + }); + + bool dataReceived = await helper.WaitForEvent(60); + Assert.IsTrue(result, string.Format("TIMEOUT: Failed to receive data from test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.OnDisconnected")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.OnDisconnected M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnDisconnected_CHECK_CB() + { + string serviceName = "ServerOnDisconnected_CHECK_CB"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + var client = SetupClient(serviceName); + WaitHelper helper2 = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper2.Done(); + }; + + bool result = await helper.WaitForEvent(60); + Assert.IsTrue(result, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + bool result2 = await helper2.WaitForEvent(60); + Assert.IsTrue(result2, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + helper.Reset(); + + WaitHelper test = new WaitHelper(); + await test.WaitForEvent(20); + + server.DisconnectedEvent += (sender, e) => + { + helper.Done(); + }; + + client.Disconnect(); + bool disconnected = await helper.WaitForEvent(60); + Assert.IsTrue(disconnected, string.Format("TIMEOUT: Failed to receive disconnected result from test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.OnPayloadReceived")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.OnPayloadReceived M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public async Task OnPayloadReceived_CHECK_CB() + { + string serviceName = "OnPayloadReceived_CHECK_CB"; + WaitHelper helper = new WaitHelper(); + var server = new TestServer(serviceName, serviceName); + server.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + server.Accept(eventArgs.PeerInfo); + }; + + server.ConnectionResultEvent += (sender, e) => + { + TestServer.ConnectionResultEventArgs eventArgs = e as TestServer.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with client"); + helper.Done(); + }; + + try + { + server.Listen(); + } + catch (Exception e) + { + Assert.Fail(string.Format("Exception occurred at Listen(): ", e.Message)); + } + var client = SetupClient(serviceName); + WaitHelper helper2 = new WaitHelper(); + client.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status != ConnectionStatus.OK) + Assert.Fail("Failed to connect with server"); + helper2.Done(); + }; + + bool result = await helper.WaitForEvent(60); + Assert.IsTrue(result, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + bool result2 = await helper2.WaitForEvent(60); + Assert.IsTrue(result2, string.Format("TIMEOUT: Failed to receive connection result test service {0}", serviceName)); + helper.Reset(); + + server.PayloadReceivedEvent += (sender, e) => + { + helper.Done(); + }; + + client.SendPayloadAsync(new DataPayload(Encoding.UTF8.GetBytes("Test Data"))); + bool payloadReceived = await helper.WaitForEvent(60); + Assert.IsTrue(payloadReceived, string.Format("TIMEOUT: Failed to receive payload from test service {0}", serviceName)); + } + + [Test] + [Category("P1")] + [Description("Checks the result of ServerBase.Dispose")] + [Property("SPEC", "Tizen.Applications.Cion.ServerBase.Dispose M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MCST")] + [Property("AUTHOR", "Sangyoon Jang, jeremy.jang@samsung.com")] + public void Dispose_CHECK_RESULT() + { + string serviceName = "Dispose_CHECK_RESULT"; + var server = new TestServer(serviceName, serviceName); + + try + { + server.Dispose(); + } + catch + { + Assert.Fail("Exception occurred while invoking Dispose()."); + } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestClient.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestClient.cs new file mode 100755 index 0000000..2dcf124 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestClient.cs @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using System; + +namespace Tizen.Applications.Cion.Tests +{ + public class TestClient : ClientBase + { + public event EventHandler ConnectionResultEvent; + public event EventHandler DisconnectedEvent; + public event EventHandler DiscoveredEvent; + public event EventHandler PayloadReceivedEvent; + + public TestClient(string serviceName) : base(serviceName) + { + } + + public TestClient(string serviceName, SecurityInfo securityInfo) : base(serviceName, securityInfo) + { + } + + protected override void OnConnectionResult(PeerInfo peerInfo, ConnectionResult result) + { + ConnectionResultEventArgs eventArgs = new ConnectionResultEventArgs(peerInfo, result); + ConnectionResultEvent?.Invoke(this, eventArgs); + } + + protected override void OnDisconnected(PeerInfo peerInfo) + { + DisconnectedEventArgs eventArgs = new DisconnectedEventArgs(peerInfo); + DisconnectedEvent?.Invoke(this, eventArgs); + } + + protected override void OnDiscovered(PeerInfo peerInfo) + { + DiscoveredEventArgs eventArgs = new DiscoveredEventArgs(peerInfo); + DiscoveredEvent?.Invoke(this, eventArgs); + } + + protected override void OnPayloadReceived(Payload payload, PayloadTransferStatus status) + { + PayloadReceivedEventArgs eventArgs = new PayloadReceivedEventArgs(payload, status); + PayloadReceivedEvent?.Invoke(this, eventArgs); + } + + public class ConnectionResultEventArgs : EventArgs + { + public ConnectionResultEventArgs(PeerInfo peerInfo, ConnectionResult result) + { + PeerInfo = peerInfo; + Result = result; + } + public PeerInfo PeerInfo { get; } + public ConnectionResult Result { get; } + } + + public class DisconnectedEventArgs : EventArgs + { + public DisconnectedEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class DiscoveredEventArgs : EventArgs + { + public DiscoveredEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class PayloadReceivedEventArgs : EventArgs + { + public PayloadReceivedEventArgs(Payload payload, PayloadTransferStatus status) + { + Payload = payload; + Status = status; + } + public Payload Payload { get; } + public PayloadTransferStatus Status { get; } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestGroup.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestGroup.cs new file mode 100755 index 0000000..5040470 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestGroup.cs @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using System; + +namespace Tizen.Applications.Cion.Tests +{ + public class TestGroup : GroupBase + { + public event EventHandler JoinedEvent; + public event EventHandler LeftEvent; + public event EventHandler PayloadReceivedEvent; + + public TestGroup(string serviceName) : base(serviceName) + { + } + + public TestGroup(string serviceName, SecurityInfo securityInfo) : base(serviceName, securityInfo) + { + } + + protected override void OnJoined(PeerInfo peerInfo) + { + JoinedEventArgs eventArgs = new JoinedEventArgs(peerInfo); + JoinedEvent?.Invoke(this, eventArgs); + } + + protected override void OnLeft(PeerInfo peerInfo) + { + LeftEventArgs eventArgs = new LeftEventArgs(peerInfo); + LeftEvent?.Invoke(this, eventArgs); + } + + protected override void OnPayloadReceived(Payload payload, PeerInfo peer) + { + PayloadReceivedEventArgs eventArgs = new PayloadReceivedEventArgs(payload, peer); + PayloadReceivedEvent?.Invoke(this, eventArgs); + } + + public class JoinedEventArgs : EventArgs + { + public JoinedEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class LeftEventArgs : EventArgs + { + public LeftEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class PayloadReceivedEventArgs : EventArgs + { + public PayloadReceivedEventArgs(Payload payload, PeerInfo peerInfo) + { + Payload = payload; + PeerInfo = peerInfo; + } + public Payload Payload { get; } + public PeerInfo PeerInfo { get; } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestHelper.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestHelper.cs new file mode 100755 index 0000000..c1fdacf --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestHelper.cs @@ -0,0 +1,62 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + public class TestHelper + { + private const string _serviceName = "TestServiceName"; + private const string _displayName = "TestDisplayName"; + private static Lazy _testClient; + private static Lazy _testServer; + + internal static TestClient TestClient { get { return _testClient.Value; } } + internal static TestServer TestServer { get { return _testServer.Value; } } + + private static PeerInfo _connectedServer = null; + + static TestHelper() + { + _testClient = new Lazy(() => new TestClient(_serviceName)); + _testServer = new Lazy(() => new TestServer(_serviceName, _displayName)); + + _testClient.Value.DiscoveredEvent += (sender, e) => + { + TestClient.DiscoveredEventArgs eventArgs = e as TestClient.DiscoveredEventArgs; + _testClient.Value.Connect(eventArgs.PeerInfo); + }; + + _testClient.Value.ConnectionResultEvent += (sender, e) => + { + TestClient.ConnectionResultEventArgs eventArgs = e as TestClient.ConnectionResultEventArgs; + if (eventArgs.Result.Status == ConnectionStatus.OK) + _connectedServer = eventArgs.PeerInfo; + }; + + _testServer.Value.ConnectionRequestEvent += (sender, e) => + { + TestServer.ConnectionRequestEventArgs eventArgs = e as TestServer.ConnectionRequestEventArgs; + _testServer.Value.Accept(eventArgs.PeerInfo); + }; + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestServer.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestServer.cs new file mode 100755 index 0000000..7c6cc99 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/TestServer.cs @@ -0,0 +1,125 @@ +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +using System; +using System.Text; + +namespace Tizen.Applications.Cion.Tests +{ + public class TestServer : ServerBase + { + public event EventHandler ConnectionResultEvent; + public event EventHandler ConnectionRequestEvent; + public event EventHandler DataReceivedEvent; + public event EventHandler DisconnectedEvent; + public event EventHandler PayloadReceivedEvent; + + public static string HelloMessage = "Test Hello"; + public static string WorldMessage = "Test World"; + + public TestServer(string serviceName, string displayName) : base(serviceName, displayName) + { + } + + public TestServer(string serviceName, string displayName, SecurityInfo securityInfo) : base(serviceName, displayName, securityInfo) + { + } + + protected override void OnConnectionResult(PeerInfo peerInfo, ConnectionResult result) + { + ConnectionResultEventArgs eventArgs = new ConnectionResultEventArgs(result); + ConnectionResultEvent?.Invoke(this, eventArgs); + } + + protected override void OnConnectionRequest(PeerInfo peerInfo) + { + ConnectionRequestEventArgs eventArgs = new ConnectionRequestEventArgs(peerInfo); + ConnectionRequestEvent?.Invoke(this, eventArgs); + } + + protected override byte[] OnDataReceived(byte[] data, PeerInfo peerInfo) + { + DataReceivedEventArgs eventArgs = new DataReceivedEventArgs(data, peerInfo); + DataReceivedEvent?.Invoke(this, eventArgs); + eventArgs.ReplyData = Encoding.UTF8.GetBytes(TestServer.WorldMessage); + return eventArgs.ReplyData; + } + + protected override void OnDisconnected(PeerInfo peerInfo) + { + DisconnectedEventArgs eventArgs = new DisconnectedEventArgs(peerInfo); + DisconnectedEvent?.Invoke(this, eventArgs); + } + + protected override void OnPayloadReceived(Payload data, PeerInfo peerInfo, PayloadTransferStatus status) + { + PayloadReceivedEventArgs eventArgs = new PayloadReceivedEventArgs(data, peerInfo, status); + PayloadReceivedEvent?.Invoke(this, eventArgs); + } + + public class ConnectionResultEventArgs : EventArgs + { + public ConnectionResultEventArgs(ConnectionResult result) + { + Result = result; + } + public ConnectionResult Result { get; } + } + + public class ConnectionRequestEventArgs : EventArgs + { + public ConnectionRequestEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class DataReceivedEventArgs : EventArgs + { + public DataReceivedEventArgs(byte[] data, PeerInfo peerInfo) + { + Data = data; + PeerInfo = peerInfo; + } + public byte[] Data { get; } + public PeerInfo PeerInfo { get; } + public byte[] ReplyData { get; set; } + } + + public class DisconnectedEventArgs : EventArgs + { + public DisconnectedEventArgs(PeerInfo peerInfo) + { + PeerInfo = peerInfo; + } + public PeerInfo PeerInfo { get; } + } + + public class PayloadReceivedEventArgs : EventArgs + { + public PayloadReceivedEventArgs(Payload data, PeerInfo peerInfo, PayloadTransferStatus status) + { + Payload = data; + PeerInfo = peerInfo; + Status = status; + } + public Payload Payload { get; } + public PeerInfo PeerInfo { get; } + public PayloadTransferStatus Status { get; } + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/WaitHelper.cs b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/WaitHelper.cs new file mode 100755 index 0000000..87f6c55 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/testcase/WaitHelper.cs @@ -0,0 +1,28 @@ +using NUnit.Framework.TUnit; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tizen.Applications.Cion.Tests +{ + public class WaitHelper + { + private bool _isDone; + public void Done() { _isDone = true; } + public void Reset() { _isDone = false; } + public async Task WaitForEvent(int timeoutInSec) + { + int count = 0; + while (true) + { + await Task.Delay(1000); + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "Waiting for event for sec: " + count); + if (_isDone) break; + if (++count == timeoutInSec) break; + } + return _isDone; + } + } +} diff --git a/tct-suite-vs/Tizen.Applications.Cion.Tests/tizen-manifest.xml b/tct-suite-vs/Tizen.Applications.Cion.Tests/tizen-manifest.xml new file mode 100755 index 0000000..9bfdf14 --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.Cion.Tests/tizen-manifest.xml @@ -0,0 +1,18 @@ + + + + + Tizen.Applications.Cion.Tests.png + + + + + + http://tizen.org/privilege/appmanager.launch + http://tizen.org/privilege/d2d.remotelaunch + http://tizen.org/privilege/d2d.datasharing + http://tizen.org/privilege/internet + + + + -- 2.7.4