--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSourceInfo_extend</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script type="text/javascript">
+//==== TEST: SystemInfoVideoSourceInfo_extend
+//==== LABEL Check if SystemInfoVideoSourceInfo can have new property added
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSourceInfo:SystemInfoVideoSourceInfo U
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA OBX
+//==== PRIORITY P3
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ if(source.connected.length != 0){
+ check_extensibility(source.connected[0]);
+ }else if(source.disconnected.length != 0){
+ check_extensibility(source.connected[0]);
+ }
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (error) {
+ assert_unreached("getPropertyValue() error callback invoked: name: " +
+ error.name + ", msg: " + error.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSourceInfo_notexist</title>
+<meta charset="utf-8"/>
+<script type="text/javascript" src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script type="text/javascript">
+//==== TEST: SystemInfoVideoSourceInfo_notexist
+//==== PRIORITY P3
+//==== LABEL Check if interface SystemInfoVideoSourceInfo exists, it should not.
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSourceInfo:SystemInfoVideoSourceInfo U
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA NIO
+
+test(function () {
+ check_no_interface_object("SystemInfoVideoSourceInfo");
+}, document.title);
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSourceInfo_number_attribute</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: SystemInfoVideoSourceInfo_number_attribute
+//==== LABEL Check attribute number of SystemInfoVideoSourceInfo
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSourceInfo:number A
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA AE AT ARO
+//==== PRIORITY P1
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ if(source.connected.length != 0){
+ assert_own_property(source.connected[0], "number", "SystemInfoVideoSourceInfo doesn't own number property.");
+ check_readonly(source.connected[0], "number", source.connected[0].number, "number", 0);
+ }else if(source.disconnected.length != 0){
+ assert_own_property(source.disconnected[0], "number", "SystemInfoVideoSourceInfo doesn't own number property.");
+ check_readonly(source.disconnected[0], "number", source.disconnected[0].number, "number", 0);
+ }
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (e) {
+ assert_unreached("Exception: " + e.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSourceInfo_signal_attribute</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: SystemInfoVideoSourceInfo_signal_attribute
+//==== LABEL Check attribute signal of SystemInfoVideoSourceInfo
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSourceInfo:signal A
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA AE AT ARO
+//==== PRIORITY P1
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ if(source.connected.length != 0){
+ assert_own_property(source.connected[0], "signal", "SystemInfoVideoSourceInfo doesn't own signal property.");
+ check_readonly(source.connected[0], "signal", null, "boolean", true);
+ }else if(source.disconnected.length != 0){
+ assert_own_property(source.disconnected[0], "signal", "SystemInfoVideoSourceInfo doesn't own signal property.");
+ check_readonly(source.disconnected[0], "signal", null, "boolean", true);
+ }
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (e) {
+ assert_unreached("Exception: " + e.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSourceInfo_type_attribute</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: SystemInfoVideoSourceInfo_type_attribute
+//==== LABEL Check attribute type of SystemInfoVideoSourceInfo
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSourceInfo:type A
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA AE AT ARO
+//==== PRIORITY P1
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ if(source.connected.length != 0){
+ assert_own_property(source.connected[0], "type", "SystemInfoVideoSourceInfo doesn't own type property.");
+ check_readonly(source.connected[0], "type", source.connected[0].type, "string", null);
+ }else if(source.disconnected.length != 0){
+ assert_own_property(source.disconnected[0], "type", "SystemInfoVideoSourceInfo doesn't own type property.");
+ check_readonly(source.disconnected[0], "type", source.connected[0].type, "string", null);
+ }
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (e) {
+ assert_unreached("Exception: " + e.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSource_connected_attribute</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: SystemInfoVideoSource_connected_attribute
+//==== LABEL Check attribute connected of SystemInfoVideoSource
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSource:connected A
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA AE AT ARO
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ assert_own_property(source, "connected", "VIDEOSOURCE doesn't own connected property.");
+ assert_type(source.connected, "array", "connected should be an array");
+ source.connected = null;
+ assert_not_equals(source.connected, null, "connected should be readonly");
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (e) {
+ assert_unreached("Exception: " + e.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSource_disconnected_attribute</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: SystemInfoVideoSource_disconnected_attribute
+//==== LABEL Check attribute disconnected of SystemInfoVideoSource
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSource:disconnected A
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA AE AT ARO
+//==== PRIORITY P1
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (source) {
+ assert_own_property(source, "disconnected", "VIDEOSOURCE doesn't own disconnected property.");
+ assert_type(source.disconnected, "array", "disconnected should be an array");
+ source.disconnected = null;
+ assert_not_equals(source.disconnected, null, "disconnected should be readonly");
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (e) {
+ assert_unreached("Exception: " + e.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSource_extend</title>
+<meta charset="utf-8">
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script type="text/javascript">
+//==== TEST: SystemInfoVideoSource_extend
+//==== LABEL Check if SystemInfoVideoSource can have new property added
+//==== ONLOAD_DELAY 90
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSource:SystemInfoVideoSource U
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA OBX
+//==== PRIORITY P3
+setup({timeout: 90000});
+
+var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess,
+ getPropertyValueError;
+t.step(function () {
+ getPropertyValueSuccess = t.step_func(function (property) {
+ check_extensibility(property);
+ t.done();
+ });
+ getPropertyValueError = t.step_func(function (error) {
+ assert_unreached("getPropertyValue() error callback invoked: name: " +
+ error.name + ", msg: " + error.message);
+ });
+
+ tizen.systeminfo.getPropertyValue("VIDEOSOURCE", getPropertyValueSuccess, getPropertyValueError);
+});
+
+</script>
+</body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2019 Samsung Electronics Co., Ltd.
+
+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.
+
+
+Authors:
+ Zhongyuan Yuan <zy123.yuan@samsung.com>
+
+-->
+<html>
+<head>
+<title>SystemInfoVideoSource_notexist</title>
+<meta charset="utf-8"/>
+<script type="text/javascript" src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script type="text/javascript">
+//==== TEST: SystemInfoVideoSource_notexist
+//==== PRIORITY P3
+//==== LABEL Check if interface SystemInfoVideoSource exists, it should not.
+//==== SPEC Tizen Web API:System:SystemInfo:SystemInfoVideoSource:SystemInfoVideoSource U
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
+//==== TEST_CRITERIA NIO
+
+test(function () {
+ check_no_interface_object("SystemInfoVideoSource");
+}, document.title);
+
+</script>
+</body>
+</html>
</spec>
</specs>
</testcase>
+
+ <testcase purpose="Check if interface SystemInfoVideoSource exists, it should not." type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P3" id="SystemInfoVideoSource_notexist">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_notexist.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSource" element_type="object" element_name="profile" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if instance of SystemInfoVideoSource interface can be extended with new property" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P3" id="SystemInfoVideoSource_extend">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_extend.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSource" element_type="attribute" element_name="profile" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if attribute connected of SystemInfoVideoSource exists, has type object and is readonly" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P1" id="SystemInfoVideoSource_connected_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_connected_attribute.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSource" element_type="attribute" element_name="connected" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if attribute disconnected of SystemInfoVideoSource exists, has type object and is readonly" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P1" id="SystemInfoVideoSource_disconnected_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_disconnected_attribute.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSource" element_type="attribute" element_name="disconnected" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if interface SystemInfoVideoSourceInfo exists, it should not." type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P3" id="SystemInfoVideoSourceInfo_notexist">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_notexist.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSourceInfo" element_type="object" element_name="profile" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if instance of SystemInfoVideoSourceInfo interface can be extended with new property" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P3" id="SystemInfoVideoSourceInfo_extend">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSourceInfo" element_type="object" element_name="profile" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if attribute type of SystemInfoVideoSourceInfo exists, has type string and is readonly" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P1" id="SystemInfoVideoSourceInfo_type_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSourceInfo" element_type="attribute" element_name="type" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if attribute signal of SystemInfoVideoSourceInfo exists, has type boolean and is readonly" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P1" id="SystemInfoVideoSourceInfo_signal_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_signal_attribute.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSourceInfo" element_type="attribute" element_name="signal" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Check if attribute number of SystemInfoVideoSourceInfo exists, has type number and is readonly" type="compliance" status="approved" component="TizenAPI/System/SystemInfo" execution_type="auto" priority="P1" id="SystemInfoVideoSourceInfo_number_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_number_attribute.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="SystemInfoVideoSourceInfo" element_type="attribute" element_name="number" specification="SystemInfo" section="System" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
</set>
<set name="systeminfo_telephony_MOBILE">
<capabilities>
<test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_extra_argument.html</test_script_entry>
</description>
</testcase>
+ <testcase purpose="Check if interface SystemInfoVideoSource exists, it should not." component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSource_notexist">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_notexist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if instance of SystemInfoVideoSource interface can be extended with new property" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSource_extend">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_extend.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if attribute connected of SystemInfoVideoSource exists, has type object and is readonly" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSource_connected_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_connected_attribute.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if attribute disconnected of SystemInfoVideoSource exists, has type object and is readonly" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSource_disconnected_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSource_disconnected_attribute.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if interface SystemInfoVideoSourceInfo exists, it should not." component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSourceInfo_notexist">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_notexist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if instance of SystemInfoVideoSourceInfo interface can be extended with new property" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSourceInfo_extend">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if attribute type of SystemInfoVideoSourceInfo exists, has type string and is readonly" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSourceInfo_type_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if attribute signal of SystemInfoVideoSourceInfo exists, has type boolean and is readonly" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSourceInfo_signal_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_signal_attribute.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Check if attribute number of SystemInfoVideoSourceInfo exists, has type number and is readonly" component="TizenAPI/System/SystemInfo" execution_type="auto" id="SystemInfoVideoSourceInfo_number_attribute">
+ <description>
+ <test_script_entry>/opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_number_attribute.html</test_script_entry>
+ </description>
+ </testcase>
</set>
<set name="systeminfo_telephony_MOBILE">
<capabilities>