Add the Toolbar TC for changing the background color of Toolbar and ToolbarItem 10/131210/1
authorrina6350.you <rina6350.you@samsung.com>
Fri, 26 May 2017 01:58:24 +0000 (10:58 +0900)
committerrina6350.you <rina6350.you@samsung.com>
Fri, 26 May 2017 01:58:24 +0000 (10:58 +0900)
Change-Id: I8e317c5b3be7f51c6873026015f4378e487b80f1

ElmSharp.Test/ElmSharp.Test.csproj [changed mode: 0644->0755]
ElmSharp.Test/TC/ToolbarTest3.cs [new file with mode: 0755]

old mode 100644 (file)
new mode 100755 (executable)
index 68c9815..8457572
     <Compile Include="TC\SpinnerTest1.cs" />
     <Compile Include="TC\ToolbarTest1.cs" />
     <Compile Include="TC\ToolbarTest2.cs" />
+    <Compile Include="TC\ToolbarTest3.cs" />
     <Compile Include="TC\WindowInternalTest.cs" />
     <Compile Include="TestCaseBase.cs" />
     <Compile Include="TestRunner.cs" />
diff --git a/ElmSharp.Test/TC/ToolbarTest3.cs b/ElmSharp.Test/TC/ToolbarTest3.cs
new file mode 100755 (executable)
index 0000000..6261aed
--- /dev/null
@@ -0,0 +1,76 @@
+/*
+ * Copyright (c) 2016 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 ElmSharp;
+using System.Collections.Generic;
+
+namespace ElmSharp.Test
+{
+    public class ToolbarTest3 : TestCaseBase
+    {
+        Dictionary<ToolbarItem, int> _itemTable = new Dictionary<ToolbarItem, int>();
+        Dictionary<int, ToolbarItem> _reverseItemTable = new Dictionary<int, ToolbarItem>();
+        public override string TestName => "ToolbarTest3";
+        public override string TestDescription => "To test basic operation of Toolbar for changing bg color";
+        public override void Run(Window window)
+        {
+            Conformant conformant = new Conformant(window);
+            conformant.Show();
+            Box outterBox = new Box(window)
+            {
+                AlignmentX = -1,
+                AlignmentY = -1,
+                WeightX = 1,
+                WeightY = 1,
+                IsHorizontal = false,
+                BackgroundColor = Color.Aqua,
+            };
+            outterBox.Show();
+
+            Toolbar toolbar = new Toolbar(window)
+            {
+                AlignmentX = -1,
+                WeightX = 1,
+            };
+
+            var rnd = new Random();
+            toolbar.BackgroundColor = Color.FromRgb(rnd.Next(255), rnd.Next(255), rnd.Next(255));
+            toolbar.Show();
+            outterBox.PackEnd(toolbar);
+
+            for (int i = 0; i < 5; i++)
+            {
+                ToolbarItem item = toolbar.Append(string.Format("{0} home", i), "home");
+                Color bgColor = Color.FromRgb(rnd.Next(255), rnd.Next(255), rnd.Next(255));
+                item.SetPartColor("bg", bgColor);
+            }
+
+            toolbar.Selected += (s, e) =>
+            {
+                e.Item.DeletePartColor("bg");
+            };
+
+            Label lb = new Label(window)
+            {
+                Text = "Please, click an item for delete part color",
+            };
+            lb.Show();
+            outterBox.PackEnd(lb);
+            conformant.SetContent(outterBox);
+        }
+    }
+}