From: gichan-jang Date: Tue, 1 Sep 2020 05:55:19 +0000 (+0900) Subject: [Tizen.MachineLearning.Inference][TCSACR-365] Add TCs for getter and setter - uint X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=828415cfee1446128ee666c614270aa116202114;p=test%2Ftct%2Fcsharp%2Fapi.git [Tizen.MachineLearning.Inference][TCSACR-365] Add TCs for getter and setter - uint Add TCs for GetValue and SetValue methods - uint Change-Id: Ia50f945d0656efd838629fd1190d2ca8b522adcb Signed-off-by: gichan-jang --- diff --git a/tct-suite-vs/Tizen.MachineLearning.Inference.Tests/testcase/TSPipeline.NodeInfo.cs b/tct-suite-vs/Tizen.MachineLearning.Inference.Tests/testcase/TSPipeline.NodeInfo.cs index 170381142..2d8ff7490 100644 --- a/tct-suite-vs/Tizen.MachineLearning.Inference.Tests/testcase/TSPipeline.NodeInfo.cs +++ b/tct-suite-vs/Tizen.MachineLearning.Inference.Tests/testcase/TSPipeline.NodeInfo.cs @@ -2002,5 +2002,475 @@ namespace Tizen.MachineLearning.Inference.Tests { } } } + + [Test] + [Category("P1")] + [Description("Get unsigned int type value from switch node and check exception")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.GetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void GetValue_uint_NO_Exception() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var switch_handle = pipeline.GetSwitch("is01"); + Assert.IsNotNull(switch_handle, "Failed to create switch instance"); + Assert.IsInstanceOf(switch_handle, "Should return switch instance"); + + /* Test Code */ + uint retNumPad; + switch_handle.GetValue("n-pads", out retNumPad); + Assert.AreEqual(retNumPad, 1U, "Failed to get the value of switch node"); + + pipeline.Dispose(); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else + { + Assert.IsTrue(false, e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when getting unsigned int type value of switch node with null name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.GetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void GetValue_uint_ArgumentException_null_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var switch_handle = pipeline.GetSwitch("is01"); + Assert.IsNotNull(switch_handle, "Failed to create switch node instance"); + Assert.IsInstanceOf(switch_handle, "Should return normal switch instance"); + + /* Test Code */ + uint retNumPad; + switch_handle.GetValue(null, out retNumPad); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when getting unsigned int type value of switch node with invalid name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.GetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void GetValue_uint_ArgumentException_invalid_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var switch_handle = pipeline.GetSwitch("is01"); + Assert.IsNotNull(switch_handle, "Failed to create switch node instance"); + Assert.IsInstanceOf(switch_handle, "Should return normal switch instance"); + + /* Test Code */ + uint retNumPad; + switch_handle.GetValue("invalid_prop", out retNumPad); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when getting unsigned int type value of switch node with empty name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.GetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void GetValue_uint_ArgumentException_empty_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var switch_handle = pipeline.GetSwitch("is01"); + Assert.IsNotNull(switch_handle, "Failed to create switch node instance"); + Assert.IsInstanceOf(switch_handle, "Should return normal switch instance"); + + /* Test Code */ + uint retNumPad; + switch_handle.GetValue("", out retNumPad); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when getting double type value of normal node with invalid retrun value")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.GetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void GetValue_uint_ArgumentException_invalid_type() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var vscale_node = pipeline.GetNormal("vscale"); + Assert.IsNotNull(vscale_node, "Failed to create normal node instance"); + Assert.IsInstanceOf(vscale_node, "Should return normal node instance"); + + /* Test Code */ + uint retSharpness; + /* The type of sharpness is a double, but it failed because it got property value by a uint. */ + vscale_node.GetValue("sharpness", out retSharpness); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P1")] + [Description("Set unsigned int type value for normal node and check exception")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.SetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void SetValue_uint_NO_Exception() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var vsrc_node = pipeline.GetNormal("vsrc"); + Assert.IsNotNull(vsrc_node, "Failed to create normal node instance"); + Assert.IsInstanceOf(vsrc_node, "Should return normal node instance"); + + /* Test Code */ + uint retForegroundColor; + vsrc_node.SetValue("foreground-color", 123456U); + vsrc_node.GetValue("foreground-color", out retForegroundColor); + + Assert.IsTrue(retForegroundColor == 123456U, "Failed to get the value of normal node"); + + pipeline.Dispose(); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else + { + Assert.IsTrue(false, e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when setting unsigned int type value for normal node with null name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.SetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void SetValue_uint_ArgumentException_null_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var vsrc_node = pipeline.GetNormal("vsrc"); + Assert.IsNotNull(vsrc_node, "Failed to create normal node instance"); + Assert.IsInstanceOf(vsrc_node, "Should return normal node instance"); + + /* Test Code */ + vsrc_node.SetValue(null, 123456U); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when setting unsigned int type value for normal node with invalid name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.SetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void SetValue_uint_ArgumentException_invalid_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var vsrc_node = pipeline.GetNormal("vsrc"); + Assert.IsNotNull(vsrc_node, "Failed to create normal node instance"); + Assert.IsInstanceOf(vsrc_node, "Should return normal node instance"); + + /* Test Code */ + vsrc_node.SetValue("invalid_prop", 123456U); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when setting unsigned int type value for normal node with empty name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.SetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void SetValue_uint_ArgumentException_empty_name() + { + try + { + string desc = "videotestsrc name=vsrc is-live=true ! videoconvert ! videoscale name=vscale ! " + + "video/x-raw,format=RGBx,width=224,height=224,framerate=60/1 ! tensor_converter ! " + + "valve name=valvex ! input-selector name=is01 ! tensor_sink name=sinkx"; + + var pipeline = new Pipeline(desc); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var vsrc_node = pipeline.GetNormal("vsrc"); + Assert.IsNotNull(vsrc_node, "Failed to create normal node instance"); + Assert.IsInstanceOf(vsrc_node, "Should return normal node instance"); + + /* Test Code */ + vsrc_node.SetValue("", 123456U); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } + + [Test] + [Category("P2")] + [Description("Check ArgumentException when setting long type value for appsrc node with invalid name")] + [Property("SPEC", "Tizen.MachineLearning.Inference.Pipeline.NodeInfo.SetValue M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MEX")] + [Property("COVPARAM", "string, uint")] + [Property("AUTHOR", "Gichan Jang, gichan2.jang@samsung.com")] + public void SetValue_uint_ArgumentException_invalid_type() + { + try + { + var pipeline = new Pipeline(_appsrcPipeline); + Assert.IsNotNull(pipeline, "Failed to create pipeline instance"); + Assert.IsInstanceOf(pipeline, "Should return pipeline instance"); + + var src_handle = pipeline.GetSource("srcx"); + Assert.IsNotNull(src_handle, "Failed to create source node instance"); + Assert.IsInstanceOf(src_handle, "Should return source node instance"); + + /* Test Code */ + /* The type of max-latency is a long, but it failed because it was set as a uint. */ + src_handle.SetValue("max-latency", 1234567U); + + Assert.True(false, "DO NOT COME HERE!"); + } + catch (Exception e) + { + if (e is NotSupportedException) + { + LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "NotSupportedException occurs"); + Assert.IsTrue(_isMachineLeanringInferenceSupported == false, "Invalid NotSupportedException"); + } + else if (e is ArgumentException) + { + Assert.Pass("ArgumentException: passed!"); + } + else + { + Assert.Fail(e.Message); + } + } + } } }