From: chen Date: Wed, 17 Apr 2024 06:13:22 +0000 (+0800) Subject: [tv][bluetooth] get capability from system info api X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85996bf70ba99fc57552bfafadb4905d7e73b2c2;p=test%2Ftct%2Fweb%2Fapi.git [tv][bluetooth] get capability from system info api Change-Id: I9b984ae73336a90370910e15f6db03dec094aa54 Signed-off-by: chen --- diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_notexist.html index ccbe27898..d161d285d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothAdapterChangeCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothAdapterChangeCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onnamechanged.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onnamechanged.html index 005fc9822..c89fcc19f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onnamechanged.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onnamechanged.html @@ -18,8 +18,8 @@ limitations under the License. Authors: - Witold Choinkowski - ByungWoo Lee +Witold Choinkowski +ByungWoo Lee --> @@ -41,28 +41,33 @@ Authors: setup({timeout: 180000}); var powerOnSuccess, adapter, listener, t = async_test(document.title, {timeout: 180000}), testName; t.step(function () { - listener = { - onstatechanged: t.step_func(function (powered) { - }), - onnamechanged: t.step_func(function (name) { - assert_type(name, "string", "Argument name has wrong type."); - if (name === testName) { - adapter.unsetChangeListener(); - t.done(); - } - }), - onvisibilitychanged: t.step_func(function (visible) { - }) - }; + if (BT_SUPPORT) { // network.bluetooth support + listener = { + onstatechanged: t.step_func(function (powered) { + }), + onnamechanged: t.step_func(function (name) { + assert_type(name, "string", "Argument name has wrong type."); + if (name === testName) { + adapter.unsetChangeListener(); + t.done(); + } + }), + onvisibilitychanged: t.step_func(function (visible) { + }) + }; - powerOnSuccess = t.step_func(function () { - adapter.setChangeListener(listener); - testName = adapter.name + "_changed"; - adapter.setName(testName); - }); + powerOnSuccess = t.step_func(function () { + adapter.setChangeListener(listener); + testName = adapter.name + "_changed"; + adapter.setName(testName); + }); - adapter = tizen.bluetooth.getDefaultAdapter(); - setPowered(t, adapter, powerOnSuccess); + adapter = tizen.bluetooth.getDefaultAdapter(); + setPowered(t, adapter, powerOnSuccess); + + } else { + t.done(); + } }); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onstatechanged.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onstatechanged.html index 6012200a3..a0feba9a8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onstatechanged.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onstatechanged.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapterChangeCallback_onstatechanged - - - - -
- - - + + + + +BluetoothAdapterChangeCallback_onstatechanged + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onvisibilitychanged.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onvisibilitychanged.html index e8ecd4668..5ba64736a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onvisibilitychanged.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapterChangeCallback_onvisibilitychanged.html @@ -1,67 +1,73 @@ - - - - -BluetoothAdapterChangeCallback_onvisibilitychanged - - - - -
- - - + + + + +BluetoothAdapterChangeCallback_onvisibilitychanged + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_address_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_address_attribute.html index e9a0b7d76..0bda89630 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_address_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_address_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -47,9 +47,11 @@ Authors: //==== TEST_CRITERIA AE AT ARO var adapter = null; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - check_readonly(adapter, "address", adapter.address, "string", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +adapter = tizen.bluetooth.getDefaultAdapter(); +check_readonly(adapter, "address", adapter.address, "string", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding.html index 207233120..37743eec4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding.html @@ -1,70 +1,74 @@ - - - - -BluetoothAdapter_createBonding - - - - - -
- - - + + + + +BluetoothAdapter_createBonding + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_bondingDevice.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_bondingDevice.html index c81f7b666..f3af024bc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_bondingDevice.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_bondingDevice.html @@ -1,109 +1,113 @@ - - - - -BluetoothAdapter_createBonding_bondingDevice - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_bondingDevice + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_callback_onerror.html index f2fbacc01..3758a72f4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_callback_onerror.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_createBonding_callback_onerror - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_callback_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceaddress_correct.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceaddress_correct.html index ddda24f10..eb9efe956 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceaddress_correct.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceaddress_correct.html @@ -1,80 +1,84 @@ - - - - -BluetoothAdapter_createBonding_deviceaddress_correct - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_deviceaddress_correct + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicebonded.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicebonded.html index b539e3e0a..db1307253 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicebonded.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicebonded.html @@ -1,80 +1,84 @@ - - - - -BluetoothAdapter_createBonding_devicebonded - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_devicebonded + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicename_correct.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicename_correct.html index e56c1a6cd..1fe743762 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicename_correct.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_devicename_correct.html @@ -1,81 +1,85 @@ - - - - - -BluetoothAdapter_createBonding_devicename_correct - - - - - -
- - - + + + + + +BluetoothAdapter_createBonding_devicename_correct + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceuuid_correct.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceuuid_correct.html index e864f6ba7..81f0612d0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceuuid_correct.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_deviceuuid_correct.html @@ -1,87 +1,91 @@ - - - - - -BluetoothAdapter_createBonding_deviceuuid_correct - - - - - -
- - - + + + + + +BluetoothAdapter_createBonding_deviceuuid_correct + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_TypeMismatch.html index 03d12e8e7..2b4fc5a40 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_createBonding_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_invalid_cb.html index a9abb8be5..b560af3ae 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_errorCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_createBonding_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_exist.html index 2fe7201fd..31ea2a9c7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("createBonding" in adapter, "Method createBonding does not exist in bluetooth adapter."); - check_method_exists(adapter, "createBonding"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("createBonding" in adapter, "Method createBonding does not exist in bluetooth adapter."); +check_method_exists(adapter, "createBonding"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_missarg.html index dca67c5b2..73950de4a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_missarg.html @@ -1,60 +1,64 @@ - - - - -BluetoothAdapter_createBonding_missarg - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_missarg + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_TypeMismatch.html index c7ea818e7..d46cbd7bc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_TypeMismatch.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_createBonding_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_invalid_cb.html index 0e12c6300..75230c729 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_successCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_createBonding_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_errorCallback.html index cd6863b96..84d718e33 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_errorCallback.html @@ -1,83 +1,87 @@ - - - - -BluetoothAdapter_createBonding_with_errorCallback - - - - - -
- - - + + + + +BluetoothAdapter_createBonding_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_error_null_and_success_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_error_null_and_success_TypeMismatch.html index 3480e2fca..660fbba43 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_error_null_and_success_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_createBonding_with_error_null_and_success_TypeMismatch.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.createBonding(REMOTE_DEVICE_ADDRESS, param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.createBonding(REMOTE_DEVICE_ADDRESS, param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding.html index 7ed1a0bee..86aae9c82 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding.html @@ -1,67 +1,73 @@ - - - - -BluetoothAdapter_destroyBonding - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_callback_onerror.html index 9ded4f64d..a6ac7b28d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_callback_onerror.html @@ -1,72 +1,78 @@ - - - - -BluetoothAdapter_destroyBonding_callback_onerror - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_callback_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch.html index 31fb34365..85f97466a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch.html @@ -1,84 +1,88 @@ - - - - -BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_invalid_cb.html index ec6e05127..d4584498d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_errorCallback_invalid_cb.html @@ -1,85 +1,89 @@ - - - - -BluetoothAdapter_destroyBonding_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_exist.html index 3960e4d78..cff608625 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -45,10 +45,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("destroyBonding" in adapter, "Method destroyBonding does not exist in bluetooth adapter."); - check_method_exists(adapter, "destroyBonding"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("destroyBonding" in adapter, "Method destroyBonding does not exist in bluetooth adapter."); +check_method_exists(adapter, "destroyBonding"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_TypeMismatch.html index 21748939d..fcdb987f8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_TypeMismatch.html @@ -1,85 +1,89 @@ - - - - -BluetoothAdapter_destroyBonding_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_invalid_cb.html index 3b2f6082f..290d4a65d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_successCallback_invalid_cb.html @@ -1,84 +1,88 @@ - - - - -BluetoothAdapter_destroyBonding_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_errorCallback.html index 72ebc33d1..53c2ba10b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_errorCallback.html @@ -1,88 +1,92 @@ - - - - -BluetoothAdapter_destroyBonding_with_errorCallback - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_successCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_successCallback.html index 1bf138acb..50a6d03f8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_successCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_successCallback.html @@ -1,73 +1,77 @@ - - - - -BluetoothAdapter_destroyBonding_with_successCallback - - - - - -
- - - + + + + +BluetoothAdapter_destroyBonding_with_successCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_TypeMismatch_and_error_null.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_TypeMismatch_and_error_null.html index a868a9053..1bb98e16b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_TypeMismatch_and_error_null.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_TypeMismatch_and_error_null.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.destroyBonding(REMOTE_DEVICE_ADDRESS, param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.destroyBonding(REMOTE_DEVICE_ADDRESS, param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_null_and_error_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_null_and_error_TypeMismatch.html index 7e5b888dd..d9fc481ef 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_null_and_error_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_destroyBonding_with_success_null_and_error_TypeMismatch.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.destroyBonding(REMOTE_DEVICE_ADDRESS, null, param[i]); - }, "Given incorrect errorCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.destroyBonding(REMOTE_DEVICE_ADDRESS, null, param[i]); + }, "Given incorrect errorCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices.html index 1110c35a1..cc5e571e1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices.html @@ -1,77 +1,83 @@ - - - - -BluetoothAdapter_discoverDevices - - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_onerror.html index cbb97c378..b194d29ff 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_onerror.html @@ -1,72 +1,76 @@ - - - - -BluetoothAdapter_discoverDevices_callback_onerror - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_callback_onerror + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_successful.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_successful.html index e6776180f..324686ad4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_successful.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_callback_successful.html @@ -1,82 +1,86 @@ - - - - - -BluetoothAdapter_discoverDevices_callback_successful - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_callback_successful + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch.html index ba0ad2571..d4271a8bf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch.html @@ -1,71 +1,75 @@ - - - - -BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_invalid_cb.html index 062ab9249..cb954543f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_errorCallback_invalid_cb.html @@ -1,70 +1,75 @@ - - - - -BluetoothAdapter_discoverDevices_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_exist.html index dbdc28af0..6f4509437 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -45,10 +45,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("discoverDevices" in adapter, "Method discoverDevices does not exist in bluetooth adapter."); - check_method_exists(adapter, "discoverDevices"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var adapter = tizen.bluetooth.getDefaultAdapter(); + assert_true("discoverDevices" in adapter, "Method discoverDevices does not exist in bluetooth adapter."); + check_method_exists(adapter, "discoverDevices"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_invalid_callback_name.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_invalid_callback_name.html index e38b968df..e55c7b3d7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_invalid_callback_name.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_invalid_callback_name.html @@ -1,73 +1,78 @@ - - - - - -BluetoothAdapter_discoverDevices_invalid_callback_name - - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_invalid_callback_name + + + + + + +
+ + + + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_missarg.html index de0ab83ec..7e0aa0018 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_missarg.html @@ -1,59 +1,63 @@ - - - - -BluetoothAdapter_discoverDevices_missarg - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_missarg + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfinish_successful.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfinish_successful.html index da75ca88b..68fe616d5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfinish_successful.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfinish_successful.html @@ -1,85 +1,91 @@ - - - - - -BluetoothAdapter_discoverDevices_onfinish_successful - - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_onfinish_successful + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_deviceaddress.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_deviceaddress.html index 1407195ba..b8df979bc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_deviceaddress.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_deviceaddress.html @@ -1,90 +1,94 @@ - - - - - -BluetoothAdapter_discoverDevices_onfound_deviceaddress - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_onfound_deviceaddress + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_devicename.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_devicename.html index 248d8cc0a..fbf2934cf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_devicename.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_devicename.html @@ -1,89 +1,93 @@ - - - - - -BluetoothAdapter_discoverDevices_onfound_devicename - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_onfound_devicename + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_successful.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_successful.html index e4148dced..16fde4d52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_successful.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_onfound_successful.html @@ -1,90 +1,94 @@ - - - - - -BluetoothAdapter_discoverDevices_onfound_successful - - - - - -
- - - + + + + + +BluetoothAdapter_discoverDevices_onfound_successful + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_TypeMismatch.html index 8da49423a..e099de144 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_discoverDevices_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_invalid_cb.html index 883b1a43e..732dc4820 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_successCallback_invalid_cb.html @@ -1,70 +1,74 @@ - - - - -BluetoothAdapter_discoverDevices_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_with_errorCallback.html index 8d884e164..4099d6aba 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_discoverDevices_with_errorCallback.html @@ -1,75 +1,81 @@ - - - - -BluetoothAdapter_discoverDevices_with_errorCallback - - - - -
- - - + + + + +BluetoothAdapter_discoverDevices_with_errorCallback + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_extend.html index 448328d84..0e0a7b3af 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_extend.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,8 +38,10 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBX test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - check_extensibility(adapter); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var adapter = tizen.bluetooth.getDefaultAdapter(); + check_extensibility(adapter); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_function_type_check.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_function_type_check.html index 23c254c7c..3ab30fb75 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_function_type_check.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_function_type_check.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,15 +40,17 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MR MNA test(function () { - var globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - assert_type(globalBluetoothAdapter.setName, "function", "setName: "); - assert_type(globalBluetoothAdapter.discoverDevices, "function", "discoverDevices: "); - assert_type(globalBluetoothAdapter.stopDiscovery, "function", "stopDiscovery: "); - assert_type(globalBluetoothAdapter.getKnownDevices, "function", "getKnownDevices: "); - assert_type(globalBluetoothAdapter.getDevice, "function", "getDevice: "); - assert_type(globalBluetoothAdapter.createBonding, "function", "createBonding: "); - assert_type(globalBluetoothAdapter.destroyBonding, "function", "destroyBonding: "); - assert_type(globalBluetoothAdapter.registerRFCOMMServiceByUUID, "function", "registerRFCOMMServiceByUUID: "); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + assert_type(globalBluetoothAdapter.setName, "function", "setName: "); + assert_type(globalBluetoothAdapter.discoverDevices, "function", "discoverDevices: "); + assert_type(globalBluetoothAdapter.stopDiscovery, "function", "stopDiscovery: "); + assert_type(globalBluetoothAdapter.getKnownDevices, "function", "getKnownDevices: "); + assert_type(globalBluetoothAdapter.getDevice, "function", "getDevice: "); + assert_type(globalBluetoothAdapter.createBonding, "function", "createBonding: "); + assert_type(globalBluetoothAdapter.destroyBonding, "function", "destroyBonding: "); + assert_type(globalBluetoothAdapter.registerRFCOMMServiceByUUID, "function", "registerRFCOMMServiceByUUID: "); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice.html index 574e637a0..7c815d5e9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice.html @@ -1,77 +1,81 @@ - - - - -BluetoothAdapter_getDevice - - - - - - -
- - - + + + + +BluetoothAdapter_getDevice + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_callback_onerror.html index ece941c93..addbf3285 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_callback_onerror.html @@ -1,71 +1,75 @@ - - - - -BluetoothAdapter_getDevice_callback_onerror - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_callback_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_TypeMismatch.html index f87deaf19..6c48ac5a7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_getDevice_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_invalid_cb.html index 83bda1321..79398bc2a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_errorCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_getDevice_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_exist.html index 2e079cbaa..5a5e7d9d0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_exist.html @@ -26,8 +26,8 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX - Lukasz Bardeli +Lei, ZhanX +Lukasz Bardeli --> @@ -47,10 +47,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("getDevice" in adapter, "Method getDevice does not exist in bluetooth adapter."); - check_method_exists(adapter, "getDevice"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("getDevice" in adapter, "Method getDevice does not exist in bluetooth adapter."); +check_method_exists(adapter, "getDevice"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_missarg.html index 20de958c6..afa74c440 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_missarg.html @@ -1,59 +1,63 @@ - - - - -BluetoothAdapter_getDevice_missarg - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_missarg + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_TypeMismatch.html index 55ae2d8ad..dcd6a3b2a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_getDevice_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_invalid_cb.html index f16b17551..0d9cc93ea 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_successCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_getDevice_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_getDevice_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_errorCallback.html index ae0058c7d..68ed26e3c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_errorCallback.html @@ -1,88 +1,92 @@ - - - - - -BluetoothAdapter_getDevice_with_errorCallback - - - - - - -
- - - + + + + + +BluetoothAdapter_getDevice_with_errorCallback + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_success_TypeMismatch_and_error_null.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_success_TypeMismatch_and_error_null.html index dac7e87fb..03786feb1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_success_TypeMismatch_and_error_null.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getDevice_with_success_TypeMismatch_and_error_null.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,13 +39,15 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.getDevice(REMOTE_DEVICE_ADDRESS, param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.getDevice(REMOTE_DEVICE_ADDRESS, param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices.html index 2eceaab11..4fd975178 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices.html @@ -1,87 +1,91 @@ - - - - - -BluetoothAdapter_getKnownDevices - - - - - -
- - - + + + + + +BluetoothAdapter_getKnownDevices + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_onerror.html index 5e329d7ca..f8b9fe436 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_onerror.html @@ -1,73 +1,79 @@ - - - - -BluetoothAdapter_getKnownDevices_callback_onerror - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_callback_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_successful.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_successful.html index 0fd3136ef..609e2089c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_successful.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_callback_successful.html @@ -1,74 +1,80 @@ - - - - - -BluetoothAdapter_getKnownDevices_callback_successful - - - - - -
- - - + + + + + +BluetoothAdapter_getKnownDevices_callback_successful + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_check_types.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_check_types.html index e85359d96..0d21c83d6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_check_types.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_check_types.html @@ -1,101 +1,107 @@ - - - - -BluetoothAdapter_getKnownDevices_check_types - - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_check_types + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch.html index 2a99e9154..3bafaf2a1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb.html index 24e409b1a..c37520773 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_exist.html index 26910f4d0..dd401c384 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("getKnownDevices" in adapter, "Method getKnownDevices does not exist in bluetooth adapter."); - check_method_exists(adapter, "getKnownDevices"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("getKnownDevices" in adapter, "Method getKnownDevices does not exist in bluetooth adapter."); +check_method_exists(adapter, "getKnownDevices"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_missarg.html index e39e15145..5ab577e03 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_missarg.html @@ -1,59 +1,63 @@ - - - - -BluetoothAdapter_getKnownDevices_missarg - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_missarg + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch.html index 4a4ee3278..9fbcbe858 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_invalid_cb.html index a67d4a29d..7abe2676a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_successCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_getKnownDevices_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_getKnownDevices_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_success_TypeMismatch_error_null.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_success_TypeMismatch_error_null.html index 162a17158..421bafefc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_success_TypeMismatch_error_null.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_success_TypeMismatch_error_null.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.getKnownDevices(param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.getKnownDevices(param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_with_errorCallback.html index 27fb96ea0..b1be21c59 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_getKnownDevices_with_errorCallback.html @@ -1,92 +1,98 @@ - - - - - -BluetoothAdapter_getKnownDevices_with_errorCallback - - - - - - -
- - - + + + + + +BluetoothAdapter_getKnownDevices_with_errorCallback + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_name_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_name_attribute.html index c94ca4e6d..46f79461f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_name_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_name_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -47,9 +47,11 @@ Authors: //==== TEST_CRITERIA AE AT ARO var adapter = null; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - check_readonly(adapter, "name", adapter.name, "string", REMOTE_DEVICE_NAME + "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +adapter = tizen.bluetooth.getDefaultAdapter(); +check_readonly(adapter, "name", adapter.name, "string", REMOTE_DEVICE_NAME + "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_notexist.html index eaecedd47..e19ee6c40 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothAdapter"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothAdapter"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_powered_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_powered_attribute.html index de90b1394..e43e94c2b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_powered_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_powered_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -47,9 +47,11 @@ Authors: //==== TEST_CRITERIA AE AT ARO var adapter = null; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - check_readonly(adapter, "powered", adapter.powered, "boolean", !(adapter.powered)); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +adapter = tizen.bluetooth.getDefaultAdapter(); +check_readonly(adapter, "powered", adapter.powered, "boolean", !(adapter.powered)); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID.html index 4b4ebcbdb..27584d554 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID.html @@ -1,77 +1,83 @@ - - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID - - - - -
- - - + + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch.html index e88913c33..00d2dbc1b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb.html index f9ed94834..46903994a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_exist.html index b50d57f57..23fb0a8ee 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("registerRFCOMMServiceByUUID" in adapter, "Method registerRFCOMMServiceByUUID does not exist in bluetooth adapter."); - check_method_exists(adapter, "registerRFCOMMServiceByUUID"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("registerRFCOMMServiceByUUID" in adapter, "Method registerRFCOMMServiceByUUID does not exist in bluetooth adapter."); +check_method_exists(adapter, "registerRFCOMMServiceByUUID"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_missarg.html index c5d8ab0c8..5b6dcf01a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_missarg.html @@ -1,59 +1,63 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_missarg - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_missarg + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful.html index bae6b35da..6c4b9b3aa 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful.html @@ -1,90 +1,94 @@ - - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful - - - - -
- - - - + + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_onconnect_successful + + + + +
+ + + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onerror.html index 62ab65358..631967386 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_onerror.html @@ -1,75 +1,81 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_onerror - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch.html index 1d60827f1..d021ae634 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb.html index 9f3be1438..34507fd84 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback.html index ad2796d5a..828fed1ca 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback.html @@ -1,81 +1,85 @@ - - - - - -BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback - - - - -
- - - + + + + + +BluetoothAdapter_registerRFCOMMServiceByUUID_with_errorCallback + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_success_TypeMismatch_and_error_null.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_success_TypeMismatch_and_error_null.html index 6ec531866..6c3253add 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_success_TypeMismatch_and_error_null.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_registerRFCOMMServiceByUUID_with_success_TypeMismatch_and_error_null.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", {}, [], [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.registerRFCOMMServiceByUUID(CHAT_SERVICE_UUID, "name", param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [null, undefined, 1, "aaa", {}, [], [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.registerRFCOMMServiceByUUID(CHAT_SERVICE_UUID, "name", param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener.html index e2bb7168c..75df0a3c8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener.html @@ -1,67 +1,73 @@ - - - - -BluetoothAdapter_setChangeListener - - - - -
- - - + + + + +BluetoothAdapter_setChangeListener + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_exist.html index 88742103b..09667ce78 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_exist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,9 +40,11 @@ Authors: var adapter; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("setChangeListener" in adapter, "Method setChangeListener does not exist in bluetooth adapter."); - check_method_exists(adapter, "setChangeListener"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + assert_true("setChangeListener" in adapter, "Method setChangeListener does not exist in bluetooth adapter."); + check_method_exists(adapter, "setChangeListener"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_TypeMismatch.html index c6e62ccf0..c650032f3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_TypeMismatch.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,15 +40,17 @@ Authors: var adapter, listener, exceptionName, i, conversionTable = getTypeConversionExceptions("object", false); test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - for(i = 0; i < conversionTable.length; i++) { - listener = conversionTable[i][0]; - exceptionName = conversionTable[i][1]; - - assert_throws({name: exceptionName}, - function () { - adapter.setChangeListener(listener); - }, "Given incorrect listener."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + for (i = 0; i < conversionTable.length; i++) { + listener = conversionTable[i][0]; + exceptionName = conversionTable[i][1]; + + assert_throws({ name: exceptionName }, + function () { + adapter.setChangeListener(listener); + }, "Given incorrect listener."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_invalid_cb.html index e5f771a6c..c5dfafcb1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_listener_invalid_cb.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,15 +40,17 @@ Authors: var adapter, incorrectListeners, incorrectListener, i, exceptionName; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - incorrectListeners = getListenerConversionExceptions(["onstatechanged", "onnamechanged", "onvisibilitychanged"]); - for(i = 0; i < incorrectListeners.length; i++) { - incorrectListener = incorrectListeners[i][0]; - exceptionName = incorrectListeners[i][1]; - assert_throws({name: exceptionName}, - function () { - adapter.setChangeListener(incorrectListener); - }, "Given incorrect listener."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + incorrectListeners = getListenerConversionExceptions(["onstatechanged", "onnamechanged", "onvisibilitychanged"]); + for (i = 0; i < incorrectListeners.length; i++) { + incorrectListener = incorrectListeners[i][0]; + exceptionName = incorrectListeners[i][1]; + assert_throws({ name: exceptionName }, + function () { + adapter.setChangeListener(incorrectListener); + }, "Given incorrect listener."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_missarg.html index 8481e4180..841baa456 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setChangeListener_missarg.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,11 +40,13 @@ Authors: var adapter; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - assert_throws ({name:"TypeMismatchError"}, - function () { - adapter.setChangeListener(); - }, "Method with non optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + assert_throws({ name: "TypeMismatchError" }, + function () { + adapter.setChangeListener(); + }, "Method with non optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName.html index 91fa44b2c..e71060597 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName.html @@ -1,57 +1,61 @@ - - - - -BluetoothAdapter_setName - - - - - -
- - - + + + + +BluetoothAdapter_setName + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_callback_error.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_callback_error.html index a408f02de..a419b0aad 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_callback_error.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_callback_error.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_setName_callback_error - - - - - -
- - - + + + + +BluetoothAdapter_setName_callback_error + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_TypeMismatch.html index afb972438..669e7351e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_setName_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_setName_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_invalid_cb.html index 6f3d329ce..5bf3b5902 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_errorCallback_invalid_cb.html @@ -1,70 +1,76 @@ - ---> - - -BluetoothAdapter_setName_errorCallback_invalid_cb - - - - - -
- - - + +--> + + +BluetoothAdapter_setName_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_exist.html index 4ffcdea34..c34fa0a80 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("setName" in adapter, "Method setName does not exist in bluetooth adapter."); - check_method_exists(adapter, "setName"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("setName" in adapter, "Method setName does not exist in bluetooth adapter."); +check_method_exists(adapter, "setName"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_longname.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_longname.html index 615883550..07a2c892e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_longname.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_longname.html @@ -1,78 +1,84 @@ - - - - -BluetoothAdapter_setName_longname - - - - - -
- - - + + + + +BluetoothAdapter_setName_longname + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_TypeMismatch.html index 9deb52702..6368b3023 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_TypeMismatch.html @@ -1,71 +1,77 @@ - - - - -BluetoothAdapter_setName_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_setName_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_invalid_cb.html index fbc03b479..b8298b090 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_successCallback_invalid_cb.html @@ -1,70 +1,76 @@ - - - - -BluetoothAdapter_setName_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_setName_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_errorCallback.html index 6d7731643..416c15d47 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_errorCallback.html @@ -1,75 +1,83 @@ - - - - - -BluetoothAdapter_setName_with_errorCallback - - - - - -
- - - + + + + + + +BluetoothAdapter_setName_with_errorCallback + + + + + + +
+ + + + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_successCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_successCallback.html index 050c36c73..36f3583b5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_successCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_successCallback.html @@ -1,61 +1,65 @@ - - - - -BluetoothAdapter_setName_with_successCallback - - - - - -
- - - + + + + +BluetoothAdapter_setName_with_successCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_TypeMismatch_and_error_null.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_TypeMismatch_and_error_null.html index 09f4b5228..a994f98e4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_TypeMismatch_and_error_null.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_TypeMismatch_and_error_null.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var param = [1, "aaa", [1, 2, 3], {}], i, - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.setName("aa", param[i], null); - }, "Given incorrect successCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var param = [1, "aaa", [1, 2, 3], {}], i, + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.setName("aa", param[i], null); + }, "Given incorrect successCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_null_and_error_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_null_and_error_TypeMismatch.html index 4bb983e71..dd378bdff 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_null_and_error_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_setName_with_success_null_and_error_TypeMismatch.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -39,14 +39,16 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MC test(function () { - var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; - globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); - - for (i = 0; i < param.length; i++) { - assert_throws(TYPE_MISMATCH_EXCEPTION, - function () { - globalBluetoothAdapter.setName("aa", null, param[i]); - }, "Given incorrect errorCallback."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var globalBluetoothAdapter, param = [1, "aaa", [1, 2, 3], {}], i; + globalBluetoothAdapter = tizen.bluetooth.getDefaultAdapter(1); + + for (i = 0; i < param.length; i++) { + assert_throws(TYPE_MISMATCH_EXCEPTION, + function () { + globalBluetoothAdapter.setName("aa", null, param[i]); + }, "Given incorrect errorCallback."); + } } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery.html index f07feb740..4427c7900 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery.html @@ -1,76 +1,80 @@ - - - - - -BluetoothAdapter_stopDiscovery - - - - - -
- - - + + + + + +BluetoothAdapter_stopDiscovery + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_callback_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_callback_onerror.html index 836e44a17..21ab65a8f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_callback_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_callback_onerror.html @@ -1,61 +1,67 @@ - - - - - -BluetoothAdapter_stopDiscovery_callback_onerror - - - - - -
- - - + + + + + +BluetoothAdapter_stopDiscovery_callback_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch.html index 498b8de76..7f9d7899d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch.html @@ -1,90 +1,96 @@ - - - - -BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_stopDiscovery_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb.html index 3765e1bc9..17df4a839 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb.html @@ -1,90 +1,96 @@ - - - - -BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_stopDiscovery_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_exist.html index ff39e6cd1..1d72fadaa 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("stopDiscovery" in adapter, "Method stopDiscovery does not exist in bluetooth adapter."); - check_method_exists(adapter, "stopDiscovery"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var adapter = tizen.bluetooth.getDefaultAdapter(); +assert_true("stopDiscovery" in adapter, "Method stopDiscovery does not exist in bluetooth adapter."); +check_method_exists(adapter, "stopDiscovery"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch.html index 696f2259d..beac3c94a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch.html @@ -1,91 +1,97 @@ - - - - -BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothAdapter_stopDiscovery_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_invalid_cb.html index 95ca89776..7f014facf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_successCallback_invalid_cb.html @@ -1,88 +1,94 @@ - - - - -BluetoothAdapter_stopDiscovery_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothAdapter_stopDiscovery_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_errorCallback.html index 56bf2a429..ae79adb59 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_errorCallback.html @@ -1,82 +1,88 @@ - - - - - -BluetoothAdapter_stopDiscovery_with_errorCallback - - - - - -
- - - + + + + + +BluetoothAdapter_stopDiscovery_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_successCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_successCallback.html index 55ecdfcda..5e08c7515 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_successCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_stopDiscovery_with_successCallback.html @@ -1,78 +1,82 @@ - - - - - -BluetoothAdapter_stopDiscovery_with_successCallback - - - - - -
- - - + + + + + +BluetoothAdapter_stopDiscovery_with_successCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener.html index b9a6a4978..4d8bff102 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener.html @@ -1,76 +1,82 @@ - - - - -BluetoothAdapter_unsetChangeListener - - - - -
- - - + + + + +BluetoothAdapter_unsetChangeListener + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_exist.html index b967c64b1..4fc136a33 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_exist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,9 +40,11 @@ Authors: var adapter; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - assert_true("unsetChangeListener" in adapter, "Method unsetChangeListener does not exist in bluetooth adapter."); - check_method_exists(adapter, "unsetChangeListener"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + assert_true("unsetChangeListener" in adapter, "Method unsetChangeListener does not exist in bluetooth adapter."); + check_method_exists(adapter, "unsetChangeListener"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_extra_argument.html index ba2d7ca99..6d2f2e3c8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_unsetChangeListener_extra_argument.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -40,8 +40,10 @@ Authors: var adapter; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - checkExtraArgument(adapter, "unsetChangeListener"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + checkExtraArgument(adapter, "unsetChangeListener"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_visible_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_visible_attribute.html index 7de9bbfc9..80fec0a52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_visible_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothAdapter_visible_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -47,9 +47,11 @@ Authors: //==== TEST_CRITERIA AE AT ARO var adapter = null; test(function () { - adapter = tizen.bluetooth.getDefaultAdapter(); - check_readonly(adapter, "visible", adapter.visible, "boolean", !adapter.visible); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + adapter = tizen.bluetooth.getDefaultAdapter(); + check_readonly(adapter, "visible", adapter.visible, "boolean", !adapter.visible); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass.html index ffa04c263..d3925c0df 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass.html @@ -18,8 +18,8 @@ limitations under the License. Authors: - Witold Choinkowski - Arkadiusz Pietraszek +Witold Choinkowski +Arkadiusz Pietraszek --> @@ -55,95 +55,100 @@ Authors: setup({timeout: 180000}); var t = async_test(document.title, {timeout: 180000}), adapter, gotDeviceInfo, gotDeviceError, - onBondingSuccess, onBondingError, powerOnSuccess, minor, major, devService; +onBondingSuccess, onBondingError, powerOnSuccess, minor, major, devService; t.step(function () { + if (BT_SUPPORT) { // network.bluetooth support - add_result_callback(function() { - clearBonding(REMOTE_DEVICE_ADDRESS); - }); - - gotDeviceInfo = t.step_func(function (device) { - - //BluetoothClass_attribute AT - test(function () { - assert_type(device.name, "string", "Device name type check:"); - assert_type(device.address, "string", "Device address type check:"); - assert_type(device.deviceClass.major, "octet", "Device deviceClass.major type check:"); - assert_type(device.deviceClass.minor, "octet", "Device deviceClass.minor type check:"); - assert_type(device.deviceClass.services, "object", "Device deviceClass.services type check:"); - assert_type(device.deviceClass.hasService, "function", "Device deviceClass.hasService type check:"); - assert_type(device.deviceClass.hasService(0), "boolean", "Device deviceClass.hasService return type check:"); - } , "BluetoothClass_attribute"); - - //BluetoothClass_extend OBX - test(function () { - check_extensibility(device.deviceClass); - }, "BluetoothClass_extend"); - - //BluetoothClass_hasService_exist ME - test(function () { - assert_true("hasService" in device.deviceClass, "hasService in gotDeviceInfo"); - check_method_exists(device.deviceClass, "hasService"); - }, "BluetoothClass_hasService_exist"); - - //BluetoothClass_major_attribute AE AT ARO - test(function () { - major = device.deviceClass.major; - check_readonly(device.deviceClass, "major", major, "number", "Tizen"); - }, "BluetoothClass_major_attribute"); - - //BluetoothClass_minor_attribute AE AT ARO - test(function () { - minor = device.deviceClass.minor; - check_readonly(device.deviceClass, "minor", minor, "number", "Tizen"); - }, "BluetoothClass_minor_attribute"); - - //BluetoothClass_services_attribute AE AT ARO - test(function () { - assert_own_property(device.deviceClass, "services", "No property service name."); - assert_type(device.deviceClass.services, "array", "device.deviceClass.services is type array."); - assert_true(device.deviceClass.services.length >= 0, "bluetooth device services not found"); - }, "BluetoothClass_services_attribute"); - - if(device.deviceClass.services.length > 0) { - test(function () { - devService = device.deviceClass.services[0]; - device.deviceClass.services[0] = null; - device.deviceClass.services = []; - assert_type(device.deviceClass.services[0], "unsigned short", "device.deviceClass.services[0] is type number."); - assert_true(devService === device.deviceClass.services[0], "device.deviceClass.services[0] readonly"); - }, "BluetoothClass_services_readonly_attribute"); - } else if(device.deviceClass.services.length === 0) { - test(function() { - device.deviceClass.services[0] = 'test'; - assert_true( 0 === device.deviceClass.services.length, "device.deviceClass.services is readonly"); - }, "BluetoothClass_services_readonly_attribute"); - } else { - assert_unreached("Device has not services"); - } + add_result_callback(function () { + clearBonding(REMOTE_DEVICE_ADDRESS); + }); - t.done(); - }); + gotDeviceInfo = t.step_func(function (device) { - gotDeviceError = t.step_func(function (e) { - assert_unreached("gotDeviceError exception:" + e.message); - }); + //BluetoothClass_attribute AT + test(function () { + assert_type(device.name, "string", "Device name type check:"); + assert_type(device.address, "string", "Device address type check:"); + assert_type(device.deviceClass.major, "octet", "Device deviceClass.major type check:"); + assert_type(device.deviceClass.minor, "octet", "Device deviceClass.minor type check:"); + assert_type(device.deviceClass.services, "object", "Device deviceClass.services type check:"); + assert_type(device.deviceClass.hasService, "function", "Device deviceClass.hasService type check:"); + assert_type(device.deviceClass.hasService(0), "boolean", "Device deviceClass.hasService return type check:"); + }, "BluetoothClass_attribute"); + + //BluetoothClass_extend OBX + test(function () { + check_extensibility(device.deviceClass); + }, "BluetoothClass_extend"); - onBondingSuccess = t.step_func(function (device) { - adapter.getDevice(REMOTE_DEVICE_ADDRESS, gotDeviceInfo, gotDeviceError); - }); + //BluetoothClass_hasService_exist ME + test(function () { + assert_true("hasService" in device.deviceClass, "hasService in gotDeviceInfo"); + check_method_exists(device.deviceClass, "hasService"); + }, "BluetoothClass_hasService_exist"); - onBondingError = t.step_func(function (e) { - assert_unreached("onBondingError exception:" + e.message); - }); + //BluetoothClass_major_attribute AE AT ARO + test(function () { + major = device.deviceClass.major; + check_readonly(device.deviceClass, "major", major, "number", "Tizen"); + }, "BluetoothClass_major_attribute"); - powerOnSuccess = t.step_func(function () { - adapter.createBonding(REMOTE_DEVICE_ADDRESS, onBondingSuccess, onBondingError); - }); + //BluetoothClass_minor_attribute AE AT ARO + test(function () { + minor = device.deviceClass.minor; + check_readonly(device.deviceClass, "minor", minor, "number", "Tizen"); + }, "BluetoothClass_minor_attribute"); - adapter = tizen.bluetooth.getDefaultAdapter(); - setPowered(t, adapter, powerOnSuccess); + //BluetoothClass_services_attribute AE AT ARO + test(function () { + assert_own_property(device.deviceClass, "services", "No property service name."); + assert_type(device.deviceClass.services, "array", "device.deviceClass.services is type array."); + assert_true(device.deviceClass.services.length >= 0, "bluetooth device services not found"); + }, "BluetoothClass_services_attribute"); + + if (device.deviceClass.services.length > 0) { + test(function () { + devService = device.deviceClass.services[0]; + device.deviceClass.services[0] = null; + device.deviceClass.services = []; + assert_type(device.deviceClass.services[0], "unsigned short", "device.deviceClass.services[0] is type number."); + assert_true(devService === device.deviceClass.services[0], "device.deviceClass.services[0] readonly"); + }, "BluetoothClass_services_readonly_attribute"); + } else if (device.deviceClass.services.length === 0) { + test(function () { + device.deviceClass.services[0] = 'test'; + assert_true(0 === device.deviceClass.services.length, "device.deviceClass.services is readonly"); + }, "BluetoothClass_services_readonly_attribute"); + } else { + assert_unreached("Device has not services"); + } + + t.done(); + }); + + gotDeviceError = t.step_func(function (e) { + assert_unreached("gotDeviceError exception:" + e.message); + }); + + onBondingSuccess = t.step_func(function (device) { + adapter.getDevice(REMOTE_DEVICE_ADDRESS, gotDeviceInfo, gotDeviceError); + }); + + onBondingError = t.step_func(function (e) { + assert_unreached("onBondingError exception:" + e.message); + }); + + powerOnSuccess = t.step_func(function () { + adapter.createBonding(REMOTE_DEVICE_ADDRESS, onBondingSuccess, onBondingError); + }); + + adapter = tizen.bluetooth.getDefaultAdapter(); + setPowered(t, adapter, powerOnSuccess); + + } else { + t.done(); + } }); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_AUDIO_VIDEO_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_AUDIO_VIDEO_const.html index 2c62c2330..eeb17f8bf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_AUDIO_VIDEO_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_AUDIO_VIDEO_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "AUDIO_VIDEO", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "AUDIO_VIDEO", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_COMPUTER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_COMPUTER_const.html index f57faf71b..3c196f591 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_COMPUTER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_COMPUTER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "COMPUTER", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "COMPUTER", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_HEALTH_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_HEALTH_const.html index cd275d07b..749409215 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_HEALTH_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_HEALTH_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMajor_HEALTH_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMajor_HEALTH_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_IMAGING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_IMAGING_const.html index 2eb94de97..7d1c2c236 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_IMAGING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_IMAGING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "IMAGING", 0x06, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "IMAGING", 0x06, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_MISC_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_MISC_const.html index cdd461830..1c4bfd77d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_MISC_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_MISC_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "MISC", 0x00, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "MISC", 0x00, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_NETWORK_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_NETWORK_const.html index a76519a1e..ec68fbe21 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_NETWORK_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_NETWORK_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "NETWORK", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "NETWORK", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PERIPHERAL_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PERIPHERAL_const.html index bd73d18f0..8c1a412c7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PERIPHERAL_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PERIPHERAL_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "PERIPHERAL", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "PERIPHERAL", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PHONE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PHONE_const.html index f781a60ab..df2f34721 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PHONE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_PHONE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "PHONE", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "PHONE", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_TOY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_TOY_const.html index 2603f1aed..d9fc5a074 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_TOY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_TOY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "TOY", 0x08, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "TOY", 0x08, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_UNCATEGORIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_UNCATEGORIZED_const.html index 16f1b5b51..ed93b2c38 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_UNCATEGORIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_UNCATEGORIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "UNCATEGORIZED", 0x1F, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "UNCATEGORIZED", 0x1F, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_WEARABLE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_WEARABLE_const.html index e9f64f120..f415e32ce 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_WEARABLE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_WEARABLE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMajor, "WEARABLE", 0x07, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMajor, "WEARABLE", 0x07, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_extend.html index 3d4356fe5..094bfbfea 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_extend.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBX test(function () { - check_extensibility(tizen.bluetooth.deviceMajor); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_extensibility(tizen.bluetooth.deviceMajor); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_notexist.html index 2e8e84964..ff6298049 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMajor_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothClassDeviceMajor"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothClassDeviceMajor"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAMCORDER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAMCORDER_const.html index 340dc7e5a..552881e52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAMCORDER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAMCORDER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_CAMCORDER", 0x0d, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_CAMCORDER", 0x0d, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAR_AUDIO_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAR_AUDIO_const.html index 5d5af60db..ef8a3ec64 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAR_AUDIO_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_CAR_AUDIO_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_CAR_AUDIO", 0x08, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_CAR_AUDIO", 0x08, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_DISPLAY_AND_LOUDSPEAKER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_DISPLAY_AND_LOUDSPEAKER_const.html index 4707ce26f..196246bb3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_DISPLAY_AND_LOUDSPEAKER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_DISPLAY_AND_LOUDSPEAKER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_DISPLAY_AND_LOUDSPEAKER", 0x0f, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_DISPLAY_AND_LOUDSPEAKER", 0x0f, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_GAMING_TOY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_GAMING_TOY_const.html index c62d5ea49..877075626 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_GAMING_TOY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_GAMING_TOY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_GAMING_TOY", 0x12, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_GAMING_TOY", 0x12, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HANDSFREE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HANDSFREE_const.html index ed4e3a913..09dbc4162 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HANDSFREE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HANDSFREE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_HANDSFREE", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_HANDSFREE", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HEADPHONES_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HEADPHONES_const.html index 6b6b18536..574e31da2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HEADPHONES_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HEADPHONES_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_HEADPHONES", 0x06, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_HEADPHONES", 0x06, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HIFI_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HIFI_const.html index 4bd672818..cca1d89b9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HIFI_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_HIFI_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_HIFI", 0x0a, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_HIFI", 0x0a, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_LOUDSPEAKER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_LOUDSPEAKER_const.html index 0b11de7a1..3e8e09a2a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_LOUDSPEAKER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_LOUDSPEAKER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_LOUDSPEAKER", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_LOUDSPEAKER", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MICROPHONE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MICROPHONE_const.html index 358650704..a93c7249b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MICROPHONE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MICROPHONE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_MICROPHONE", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_MICROPHONE", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MONITOR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MONITOR_const.html index d08464855..d4bc0c4a1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MONITOR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_MONITOR_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_MONITOR", 0x0e, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_MONITOR", 0x0e, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_PORTABLE_AUDIO_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_PORTABLE_AUDIO_const.html index 43b000f1e..45c057e10 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_PORTABLE_AUDIO_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_PORTABLE_AUDIO_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_PORTABLE_AUDIO", 0x07, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_PORTABLE_AUDIO", 0x07, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_SETTOP_BOX_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_SETTOP_BOX_const.html index b22fd8446..cb720678e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_SETTOP_BOX_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_SETTOP_BOX_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_SETTOP_BOX", 0x09, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_SETTOP_BOX", 0x09, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_UNRECOGNIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_UNRECOGNIZED_const.html index 8ddb8ba10..f1ac9a8b6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_UNRECOGNIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_UNRECOGNIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_UNRECOGNIZED", 0x00, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_UNRECOGNIZED", 0x00, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VCR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VCR_const.html index 306d1a370..2b6408bcd 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VCR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VCR_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_VCR", 0x0b, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_VCR", 0x0b, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CAMERA_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CAMERA_const.html index b0a31b3e1..51fc03958 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CAMERA_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CAMERA_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_VIDEO_CAMERA", 0x0c, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_VIDEO_CAMERA", 0x0c, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CONFERENCING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CONFERENCING_const.html index 601b4dbd4..be63f43e8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CONFERENCING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_VIDEO_CONFERENCING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_VIDEO_CONFERENCING", 0x10, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_VIDEO_CONFERENCING", 0x10, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_WEARABLE_HEADSET_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_WEARABLE_HEADSET_const.html index 61e7674f2..ec48d0b0b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_WEARABLE_HEADSET_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_AV_WEARABLE_HEADSET_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "AV_WEARABLE_HEADSET", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "AV_WEARABLE_HEADSET", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_DESKTOP_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_DESKTOP_const.html index edd9b6808..780d862d8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_DESKTOP_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_DESKTOP_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_DESKTOP", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_DESKTOP", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_HANDHELD_PC_OR_PDA_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_HANDHELD_PC_OR_PDA_const.html index dfdd39baf..35e4e27d6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_HANDHELD_PC_OR_PDA_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_HANDHELD_PC_OR_PDA_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_HANDHELD_PC_OR_PDA", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_HANDHELD_PC_OR_PDA", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_LAPTOP_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_LAPTOP_const.html index 72fec763a..fccff0277 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_LAPTOP_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_LAPTOP_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_LAPTOP", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_LAPTOP", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_PALM_PC_OR_PDA_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_PALM_PC_OR_PDA_const.html index 00fc523da..4379083e0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_PALM_PC_OR_PDA_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_PALM_PC_OR_PDA_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_PALM_PC_OR_PDA", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_PALM_PC_OR_PDA", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_SERVER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_SERVER_const.html index d21b77670..d9e721516 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_SERVER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_SERVER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_SERVER", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_SERVER", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_UNCATEGORIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_UNCATEGORIZED_const.html index f0f65487b..f2339871e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_UNCATEGORIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_UNCATEGORIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -39,7 +39,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_UNCATEGORIZED", 0x00, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_UNCATEGORIZED", 0x00, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_WEARABLE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_WEARABLE_const.html index 083d0d527..f65539b93 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_WEARABLE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_COMPUTER_WEARABLE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -39,7 +39,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "COMPUTER_WEARABLE", 0x06, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "COMPUTER_WEARABLE", 0x06, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const.html index dfcd8bb73..45fe1a11b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const.html @@ -1,47 +1,47 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_ANKLE_PROSTHESIS_const + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const.html index 0dc4e8663..ee12adbf1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_BLOOD_PRESSURE_MONITOR_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const.html index ec6121bf3..8339df1fc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_BODY_COMPOSITION_ANALYZER_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const.html index 3414700a3..95046b6bc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_DATA_DISPLAY_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const.html index 82e1a9da9..124b129bf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_GLUCOSE_METER_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const.html index b94307e91..c2a9fdf23 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_KNEE_PROSTHESIS_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const.html index 256b72457..863c7c9cb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_MEDICATION_MONITOR_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const.html index d1eb04576..fbde11a3d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_PEAK_FLOW_MONITOR_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const.html index b9e2fbb5d..0a23fdea8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_PULSE_OXIMETER_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const.html index f0c3ad6db..03950d418 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_PULSE_RATE_MONITOR_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const.html index c5a9c5540..c9f8e9309 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_STEP_COUNTER_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const.html index c76354035..ecd430afc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_THERMOMETER_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const.html index a56ed8341..14067b71f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_UNDEFINED_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const.html index 01d460d9b..b9dee9089 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const.html @@ -1,48 +1,48 @@ - - - - - -BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const - - - - - - -
- - - + + + + + +BluetoothClassDeviceMinor_HEALTH_WEIGHING_SCALE_const + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_CAMERA_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_CAMERA_const.html index f40382a08..47a4dc8a8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_CAMERA_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_CAMERA_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "IMAGING_CAMERA", 0x08, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "IMAGING_CAMERA", 0x08, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_DISPLAY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_DISPLAY_const.html index b5b5d67f0..1e8618b39 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_DISPLAY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_DISPLAY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "IMAGING_DISPLAY", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "IMAGING_DISPLAY", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_PRINTER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_PRINTER_const.html index 4e01da724..20fbab18f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_PRINTER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_PRINTER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "IMAGING_PRINTER", 0x20, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "IMAGING_PRINTER", 0x20, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_SCANNER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_SCANNER_const.html index 0545165a8..6a7550794 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_SCANNER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_SCANNER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "IMAGING_SCANNER", 0x10, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "IMAGING_SCANNER", 0x10, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_UNCATEGORIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_UNCATEGORIZED_const.html index 63f4d7834..cda75092a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_UNCATEGORIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_IMAGING_UNCATEGORIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "IMAGING_UNCATEGORIZED", 0x00, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "IMAGING_UNCATEGORIZED", 0x00, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_CARD_READER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_CARD_READER_const.html index f9914566b..dafed16be 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_CARD_READER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_CARD_READER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_CARD_READER", 0x06, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_CARD_READER", 0x06, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DEGITIZER_TABLET_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DEGITIZER_TABLET_const.html index b50b1e46d..7c99566c0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DEGITIZER_TABLET_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DEGITIZER_TABLET_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_DEGITIZER_TABLET", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_DEGITIZER_TABLET", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DIGITAL_PEN_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DIGITAL_PEN_const.html index 1fe944b66..128b64869 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DIGITAL_PEN_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_DIGITAL_PEN_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_DIGITAL_PEN", 0x07, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_DIGITAL_PEN", 0x07, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_GAMEPAD_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_GAMEPAD_const.html index 851087f8b..bde0db3b7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_GAMEPAD_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_GAMEPAD_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_GAMEPAD", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_GAMEPAD", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_INPUT_DEVICE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_INPUT_DEVICE_const.html index 6d946075a..905caedf1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_INPUT_DEVICE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_INPUT_DEVICE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_HANDHELD_INPUT_DEVICE", 0x09, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_HANDHELD_INPUT_DEVICE", 0x09, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_SCANNER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_SCANNER_const.html index beb70d79f..eb20516b9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_SCANNER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_HANDHELD_SCANNER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_HANDHELD_SCANNER", 0x08, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_HANDHELD_SCANNER", 0x08, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_JOYSTICK_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_JOYSTICK_const.html index 08ef28d38..b9ee984e3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_JOYSTICK_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_JOYSTICK_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_JOYSTICK", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_JOYSTICK", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE_const.html index afa8841e7..d169609b4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE", 0x30, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_KEYBOARD_AND_POINTING_DEVICE", 0x30, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_const.html index 75822dcc4..c0a83fc47 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_KEYBOARD_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_KEYBOARD", 0x10, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_KEYBOARD", 0x10, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_POINTING_DEVICE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_POINTING_DEVICE_const.html index 6e658218f..2ed74c746 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_POINTING_DEVICE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_POINTING_DEVICE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_POINTING_DEVICE", 0x20, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_POINTING_DEVICE", 0x20, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_REMOTE_CONTROL_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_REMOTE_CONTROL_const.html index 6637c7d15..98c1a6d41 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_REMOTE_CONTROL_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_REMOTE_CONTROL_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_REMOTE_CONTROL", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_REMOTE_CONTROL", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_SENSING_DEVICE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_SENSING_DEVICE_const.html index a18c76ae5..7eb74bc81 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_SENSING_DEVICE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_SENSING_DEVICE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_SENSING_DEVICE", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_SENSING_DEVICE", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_UNCATEGORIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_UNCATEGORIZED_const.html index dc6c0bfb4..3f0f04b6b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_UNCATEGORIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PERIPHERAL_UNCATEGORIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_UNCATEGORIZED", 0, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PERIPHERAL_UNCATEGORIZED", 0, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CELLULAR_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CELLULAR_const.html index a1772b9e9..2a4fb3eb9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CELLULAR_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CELLULAR_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_CELLULAR", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_CELLULAR", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CORDLESS_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CORDLESS_const.html index b57b7adf7..010206f2f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CORDLESS_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_CORDLESS_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_CORDLESS", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_CORDLESS", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_ISDN_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_ISDN_const.html index 10ab110df..4938313fb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_ISDN_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_ISDN_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_ISDN", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_ISDN", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_MODEM_OR_GATEWAY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_MODEM_OR_GATEWAY_const.html index 623847ced..af54686a6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_MODEM_OR_GATEWAY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_MODEM_OR_GATEWAY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_MODEM_OR_GATEWAY", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_MODEM_OR_GATEWAY", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_SMARTPHONE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_SMARTPHONE_const.html index 06005f60a..594dfd024 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_SMARTPHONE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_SMARTPHONE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_SMARTPHONE", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_SMARTPHONE", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_UNCATEGORIZED_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_UNCATEGORIZED_const.html index 26357f654..e2b37bb4f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_UNCATEGORIZED_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_PHONE_UNCATEGORIZED_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "PHONE_UNCATEGORIZED", 0x00, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "PHONE_UNCATEGORIZED", 0x00, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_CONTROLLER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_CONTROLLER_const.html index 59f84d496..0bcb36caf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_CONTROLLER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_CONTROLLER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "TOY_CONTROLLER", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "TOY_CONTROLLER", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_DOLL_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_DOLL_const.html index 8d3551ee5..a14b8614e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_DOLL_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_DOLL_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "TOY_DOLL", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "TOY_DOLL", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_GAME_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_GAME_const.html index 459ee1e30..b908b07c7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_GAME_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_GAME_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "TOY_GAME", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "TOY_GAME", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_ROBOT_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_ROBOT_const.html index 40bc84f56..a9cef6484 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_ROBOT_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_ROBOT_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "TOY_ROBOT", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "TOY_ROBOT", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_VEHICLE_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_VEHICLE_const.html index 5fda4377f..a66e39d36 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_VEHICLE_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_TOY_VEHICLE_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "TOY_VEHICLE", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "TOY_VEHICLE", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_GLASSES_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_GLASSES_const.html index ff513c006..8c6016d02 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_GLASSES_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_GLASSES_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "WEARABLE_GLASSES", 0x05, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "WEARABLE_GLASSES", 0x05, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_HELMET_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_HELMET_const.html index b9e579d46..cea367add 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_HELMET_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_HELMET_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "WEARABLE_HELMET", 0x04, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "WEARABLE_HELMET", 0x04, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_JACKET_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_JACKET_const.html index 4d81558c4..d25f82e97 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_JACKET_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_JACKET_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "WEARABLE_JACKET", 0x03, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "WEARABLE_JACKET", 0x03, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_PAGER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_PAGER_const.html index 4cacc678e..d30e8b7c6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_PAGER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_PAGER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "WEARABLE_PAGER", 0x02, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "WEARABLE_PAGER", 0x02, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_WRITST_WATCH_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_WRITST_WATCH_const.html index d0aead3f7..630530121 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_WRITST_WATCH_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_WEARABLE_WRITST_WATCH_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceMinor, "WEARABLE_WRITST_WATCH", 0x01, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceMinor, "WEARABLE_WRITST_WATCH", 0x01, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_extend.html index 94e9eac2f..d262da783 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_extend.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -37,7 +37,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBX test(function () { - check_extensibility(tizen.bluetooth.deviceMinor); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_extensibility(tizen.bluetooth.deviceMinor); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_notexist.html index a78aecb11..83778510c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceMinor_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothClassDeviceMinor"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothClassDeviceMinor"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_AUDIO_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_AUDIO_const.html index b024540c3..eba974889 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_AUDIO_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_AUDIO_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -41,7 +41,9 @@ Authors: //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "AUDIO", 0x0100, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "AUDIO", 0x0100, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_CAPTURING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_CAPTURING_const.html index bcdd3d17b..134bc9f96 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_CAPTURING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_CAPTURING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "CAPTURING", 0x0040, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "CAPTURING", 0x0040, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_INFORMATION_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_INFORMATION_const.html index 67a44745f..cade3addf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_INFORMATION_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_INFORMATION_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -41,7 +41,9 @@ Authors: //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "INFORMATION", 0x0400, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "INFORMATION", 0x0400, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_LIMITED_DISCOVERABILITY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_LIMITED_DISCOVERABILITY_const.html index 0d056547f..6337c35b0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_LIMITED_DISCOVERABILITY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_LIMITED_DISCOVERABILITY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -41,7 +41,9 @@ Authors: //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "LIMITED_DISCOVERABILITY", 0x0001, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "LIMITED_DISCOVERABILITY", 0x0001, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_NETWORKING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_NETWORKING_const.html index a2642a498..a3e6cb3b8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_NETWORKING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_NETWORKING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "NETWORKING", 0x0010, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "NETWORKING", 0x0010, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_OBJECT_TRANSFER_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_OBJECT_TRANSFER_const.html index adb6d79ae..477c0345c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_OBJECT_TRANSFER_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_OBJECT_TRANSFER_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "OBJECT_TRANSFER", 0x0080, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "OBJECT_TRANSFER", 0x0080, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_POSITIONING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_POSITIONING_const.html index 7c2ab8416..21267f151 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_POSITIONING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_POSITIONING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "POSITIONING", 0x0008, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "POSITIONING", 0x0008, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_RENDERING_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_RENDERING_const.html index ac3818cd5..2732b165e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_RENDERING_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_RENDERING_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "RENDERING", 0x0020, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "RENDERING", 0x0020, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_TELEPHONY_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_TELEPHONY_const.html index f999fed78..ee9e969a9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_TELEPHONY_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_TELEPHONY_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -40,7 +40,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth.deviceService, "TELEPHONY", 0x0200, "number", 0x7B); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth.deviceService, "TELEPHONY", 0x0200, "number", 0x7B); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_extend.html index c8c860d2c..e3e4b79c8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_extend.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBX test(function () { - check_extensibility(tizen.bluetooth.deviceService); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_extensibility(tizen.bluetooth.deviceService); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_notexist.html index 6b007d337..3fa6d0959 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClassDeviceService_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothClassDeviceService"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothClassDeviceService"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_hasService.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_hasService.html index be05a682e..d5677687c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_hasService.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_hasService.html @@ -27,9 +27,9 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX - Lukasz Bardeli - Arkadiusz Pietraszek +Lei, ZhanX +Lukasz Bardeli +Arkadiusz Pietraszek --> @@ -55,41 +55,46 @@ setup({timeout: 180000}); var adapter = null, t = async_test(document.title, {timeout: 180000}), gotDeviceInfo, gotDeviceError, onBondingSuccess, onBondingError, powerOnSuccess; t.step(function () { + if (BT_SUPPORT) { // network.bluetooth support - add_result_callback(function() { - clearBonding(REMOTE_DEVICE_ADDRESS); - }); - - gotDeviceInfo = t.step_func(function (device) { - if (device.deviceClass.services.length > 0){ - assert_true(device.deviceClass.hasService(device.deviceClass.services[0]), "hasService in gotDeviceInfo"); - t.done(); - } else if(device.deviceClass.services.length === 0) { - assert_true( 0 === device.deviceClass.services.length, "Empty Service in gotDeviceInfo"); - t.done(); - } else { - assert_unreached("Device has not services"); - } - }); - - gotDeviceError = t.step_func(function (e) { - assert_unreached("gotDeviceError exception:" + e.message); - }); - - onBondingSuccess = t.step_func(function (device) { - adapter.getDevice(REMOTE_DEVICE_ADDRESS, gotDeviceInfo, gotDeviceError); - }); - - onBondingError = t.step_func(function (e) { - assert_unreached("onBondingError exception:" + e.message); - }); - - powerOnSuccess = t.step_func(function () { - adapter.createBonding(REMOTE_DEVICE_ADDRESS, onBondingSuccess, onBondingError); - }); - - adapter = tizen.bluetooth.getDefaultAdapter(); - setPowered(t, adapter, powerOnSuccess); + add_result_callback(function () { + clearBonding(REMOTE_DEVICE_ADDRESS); + }); + + gotDeviceInfo = t.step_func(function (device) { + if (device.deviceClass.services.length > 0) { + assert_true(device.deviceClass.hasService(device.deviceClass.services[0]), "hasService in gotDeviceInfo"); + t.done(); + } else if (device.deviceClass.services.length === 0) { + assert_true(0 === device.deviceClass.services.length, "Empty Service in gotDeviceInfo"); + t.done(); + } else { + assert_unreached("Device has not services"); + } + }); + + gotDeviceError = t.step_func(function (e) { + assert_unreached("gotDeviceError exception:" + e.message); + }); + + onBondingSuccess = t.step_func(function (device) { + adapter.getDevice(REMOTE_DEVICE_ADDRESS, gotDeviceInfo, gotDeviceError); + }); + + onBondingError = t.step_func(function (e) { + assert_unreached("onBondingError exception:" + e.message); + }); + + powerOnSuccess = t.step_func(function () { + adapter.createBonding(REMOTE_DEVICE_ADDRESS, onBondingSuccess, onBondingError); + }); + + adapter = tizen.bluetooth.getDefaultAdapter(); + setPowered(t, adapter, powerOnSuccess); + + } else { + t.done(); + } }); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_notexist.html index ac56f4d22..0854c6102 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothClass_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothClass"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothClass"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice.html index c109c6733..26332c360 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice.html @@ -1,252 +1,256 @@ - - - - -BluetoothDevice - - - - - -
- - - + + + + +BluetoothDevice + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_notexist.html index 13b0e6990..e4e10833c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothDeviceArraySuccessCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothDeviceArraySuccessCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_onsuccess.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_onsuccess.html index 5e4d0b8fc..078c31eef 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_onsuccess.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceArraySuccessCallback_onsuccess.html @@ -1,92 +1,98 @@ - - - - -BluetoothDeviceArraySuccessCallback_onsuccess - - - - - - -
- - - + + + + +BluetoothDeviceArraySuccessCallback_onsuccess + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceSuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceSuccessCallback_notexist.html index 8a1c48a6b..d59d802b1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceSuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDeviceSuccessCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothDeviceSuccessCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothDeviceSuccessCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID.html index 67abe2956..732a5f060 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID.html @@ -1,90 +1,94 @@ - - - - -BluetoothDevice_connectToServiceByUUID - - - - - -
- - - + + + + +BluetoothDevice_connectToServiceByUUID + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_onerror.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_onerror.html index 98af9bfaf..758a63214 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_onerror.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_onerror.html @@ -1,89 +1,93 @@ - - - - -BluetoothDevice_connectToServiceByUUID_onerror - - - - - -
- - - + + + + +BluetoothDevice_connectToServiceByUUID_onerror + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_with_errorCallback.html index 2a16e1a0f..8f85534c5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_connectToServiceByUUID_with_errorCallback.html @@ -1,82 +1,86 @@ - - - - -BluetoothDevice_connectToServiceByUUID_with_errorCallback - - - - - -
- - - + + + + +BluetoothDevice_connectToServiceByUUID_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_notexist.html index 322b01e26..3942f96b9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDevice_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothDevice"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothDevice"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_notexist.html index 18572cbb5..51b5e1276 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothDiscoverDevicesSuccessCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothDiscoverDevicesSuccessCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared.html index 39725015f..fde5c9cf5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared.html @@ -1,101 +1,105 @@ - - - - -BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared - - - - - -
- - - + + + + +BluetoothDiscoverDevicesSuccessCallback_ondevicedisappeared + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicefound.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicefound.html index bff34837d..c29a5c804 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicefound.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_ondevicefound.html @@ -1,81 +1,87 @@ - - - - -BluetoothDiscoverDevicesSuccessCallback_ondevicefound - - - - - - -
- - - + + + + +BluetoothDiscoverDevicesSuccessCallback_ondevicefound + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onfinished.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onfinished.html index dbfd7564d..0e8a23fed 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onfinished.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onfinished.html @@ -1,83 +1,89 @@ - - - - -BluetoothDiscoverDevicesSuccessCallback_onfinished - - - - - - -
- - - + + + + +BluetoothDiscoverDevicesSuccessCallback_onfinished + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onstarted.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onstarted.html index 46338053d..8648a84e6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onstarted.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothDiscoverDevicesSuccessCallback_onstarted.html @@ -1,79 +1,85 @@ - - - - -BluetoothDiscoverDevicesSuccessCallback_onstarted - - - - - - -
- - - + + + + +BluetoothDiscoverDevicesSuccessCallback_onstarted + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener.html index a63585bc5..5e85a14e5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener.html @@ -1,90 +1,90 @@ - - - - - -BluetoothGATTCharacteristic_addValueChangeListener - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_addValueChangeListener + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener_exist.html index ac0d32aa4..c70d33532 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_addValueChangeListener_exist.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_addValueChangeListener_exist - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_addValueChangeListener_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_descriptors_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_descriptors_attribute.html index d6ec16610..51251217e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_descriptors_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_descriptors_attribute.html @@ -1,87 +1,87 @@ - - - - - -BluetoothGATTCharacteristic_descriptors_attribute - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_descriptors_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_extend.html index 84c0f7106..aa3d90aa3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_extend.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_extend - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_extend + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_hasExtendedProperties_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_hasExtendedProperties_attribute.html index 47666459d..41f71d882 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_hasExtendedProperties_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_hasExtendedProperties_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_hasExtendedProperties_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_hasExtendedProperties_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isBroadcast_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isBroadcast_attribute.html index 1f94f7fa4..e8dcceb3b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isBroadcast_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isBroadcast_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isBroadcast_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isBroadcast_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isIndication_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isIndication_attribute.html index d5afb56bd..5e7875c2a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isIndication_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isIndication_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isIndication_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isIndication_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isNotify_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isNotify_attribute.html index 53db7ec8e..3c229d5b6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isNotify_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isNotify_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isNotify_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isNotify_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isReadable_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isReadable_attribute.html index 69cf25c7d..4cb560be2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isReadable_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isReadable_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isReadable_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isReadable_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isSignedWrite_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isSignedWrite_attribute.html index dfb7566b6..d39799565 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isSignedWrite_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isSignedWrite_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isSignedWrite_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isSignedWrite_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWritable_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWritable_attribute.html index 2c247a669..5a7ceb81b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWritable_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWritable_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isWritable_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isWritable_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWriteNoResponse_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWriteNoResponse_attribute.html index 94d614ef2..6325201fe 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWriteNoResponse_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_isWriteNoResponse_attribute.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_isWriteNoResponset_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_isWriteNoResponset_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_notexist.html index 254e23052..a4e5b0f72 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_notexist.html @@ -1,44 +1,44 @@ - - - - - -BluetoothGATTCharacteristic_notexist - - - - -
- - + + + + + +BluetoothGATTCharacteristic_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue.html index 1c0903eff..bb8c2a3f5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue.html @@ -1,91 +1,91 @@ - - - - - -BluetoothGATTCharacteristic_readValue - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_readValue + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_InvalidStateError.html index d88eb3db5..2bd0ff294 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_InvalidStateError.html @@ -1,81 +1,81 @@ - - - - - -BluetoothGATTCharacteristic_readValue_InvalidStateError - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_InvalidStateError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch.html index 8db845a9b..6698130c2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch.html @@ -1,100 +1,100 @@ - - - - - -BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb.html index 9eaa6f06d..1af7bc713 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb.html @@ -1,99 +1,99 @@ - - - - - -BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_exist.html index b181c5651..4b60d8728 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_exist.html @@ -1,87 +1,87 @@ - - - - - -BluetoothGATTCharacteristic_readValue_exist - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_noarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_noarg.html index f62e0076f..14cda0aae 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_noarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_noarg.html @@ -1,89 +1,89 @@ - - - - - -BluetoothGATTCharacteristic_readValue_noarg - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_noarg + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch.html index c2b3049c2..933601254 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch.html @@ -1,96 +1,96 @@ - - - - - -BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb.html index 3c5315bdd..78c36bbfc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb.html @@ -1,95 +1,95 @@ - - - - - -BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_readValue_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_with_errorCallback.html index 92619e2e4..92b9916f8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_readValue_with_errorCallback.html @@ -1,96 +1,96 @@ - - - - - -BluetoothGATTCharacteristic_readValue_with_errorCallback - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_readValue_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener.html index 778d616b8..31f769389 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener.html @@ -1,92 +1,92 @@ - - - - - -BluetoothGATTCharacteristic_removeValueChangeListener - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_removeValueChangeListener + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener_exist.html index aa8bc56a7..3df51aab1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_removeValueChangeListener_exist.html @@ -1,83 +1,83 @@ - - - - - -BluetoothGATTCharacteristic_removeValueChangeListener_exist - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_removeValueChangeListener_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_uuid_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_uuid_attribute.html index b9c7cbe21..75aa610fb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_uuid_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_uuid_attribute.html @@ -1,83 +1,87 @@ - - - - - -BluetoothGATTCharacteristic_uuid_attribute - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_uuid_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue.html index 49df0c63b..4da62b8ac 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue.html @@ -1,89 +1,89 @@ - - - - - -BluetoothGATTCharacteristic_writeValue - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_writeValue + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_InvalidStateError.html index c9083f9eb..0116ac5b8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_InvalidStateError.html @@ -1,81 +1,81 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_InvalidStateError - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_InvalidStateError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_data_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_data_TypeMismatch.html index 4ac1b441c..9afbc0c76 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_data_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_data_TypeMismatch.html @@ -1,101 +1,101 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_data_TypeMismatch - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_data_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch.html index 64903e719..52a645eda 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch.html @@ -1,101 +1,101 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb.html index 8c1c8ec3d..d9641bd6d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb.html @@ -1,100 +1,100 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_exist.html index f6eeab820..398660800 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_exist.html @@ -1,87 +1,87 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_exist - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_noarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_noarg.html index 09258018c..c0c493cca 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_noarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_noarg.html @@ -1,89 +1,89 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_noarg - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_noarg + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch.html index 5cdec37d2..c8c8b1378 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch.html @@ -1,97 +1,97 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb.html index 2622b443c..79b93f843 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb.html @@ -1,95 +1,95 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb - - - - - -
- - + + + + + +BluetoothGATTCharacteristic_writeValue_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_with_errorCallback.html index ec168860b..276ba882e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCharacteristic_writeValue_with_errorCallback.html @@ -1,102 +1,102 @@ - - - - - -BluetoothGATTCharacteristic_writeValue_with_errorCallback - - - - - -
- - - + + + + + +BluetoothGATTCharacteristic_writeValue_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCombined.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCombined.html index 4139a87f1..f6b14b379 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCombined.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTCombined.html @@ -1,1107 +1,1107 @@ - - - - -BluetoothGATTCombined - - - - - -
- - - + + + + +BluetoothGATTCombined + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_extend.html index a1d0dcfff..df0b53341 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_extend.html @@ -1,88 +1,88 @@ - - - - -BluetoothGATTDescriptor_extend - - - - - -
- - + + + + +BluetoothGATTDescriptor_extend + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_notexist.html index fe017b97a..d4cc2bd96 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_notexist.html @@ -1,43 +1,43 @@ - - - - -BluetoothGATTDescriptor_notexist - - - - -
- - + + + + +BluetoothGATTDescriptor_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue.html index 06e922432..a8da9e502 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue.html @@ -1,92 +1,92 @@ - - - - -BluetoothGATTDescriptor_readValue - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_InvalidStateError.html index c2f1ac9c8..cffc97b74 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_InvalidStateError.html @@ -1,85 +1,85 @@ - - - - -BluetoothGATTDescriptor_readValue_InvalidStateError - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_InvalidStateError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch.html index 1f4c90db3..e0df7cadd 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch.html @@ -1,101 +1,101 @@ - - - - -BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb.html index b24099ba8..2a59d2f94 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb.html @@ -1,100 +1,100 @@ - - - - -BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_exist.html index 7ff3870ff..6a5804a84 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_exist.html @@ -1,88 +1,88 @@ - - - - -BluetoothGATTDescriptor_readValue_exist - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_misarg.html index 32c292213..1a0d749ea 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_misarg.html @@ -1,90 +1,90 @@ - - - - -BluetoothGATTDescriptor_readValue_misarg - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_misarg + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch.html index 93e07bcde..e3a77c462 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch.html @@ -1,97 +1,97 @@ - - - - -BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_invalid_cb.html index 7f3767b0c..b0de9e9e7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_successCallback_invalid_cb.html @@ -1,96 +1,96 @@ - - - - -BluetoothGATTDescriptor_readValue_successCallback_invalid_cb - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_with_errorCallback.html index 0bf435d5a..dc0047d64 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_readValue_with_errorCallback.html @@ -1,99 +1,99 @@ - - - - -BluetoothGATTDescriptor_readValue_with_errorCallback - - - - - -
- - + + + + +BluetoothGATTDescriptor_readValue_with_errorCallback + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_uuid_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_uuid_attribute.html index 197d3a2b3..9bfb382a2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_uuid_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_uuid_attribute.html @@ -1,88 +1,92 @@ - - - - -BluetoothGATTDescriptor_uuid_attribute - - - - - -
- - + + + + +BluetoothGATTDescriptor_uuid_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue.html index f1825da9d..e5a7b201c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue.html @@ -1,90 +1,90 @@ - - - - -BluetoothGATTDescriptor_writeValue - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_InvalidStateError.html index 8a034f4a3..8034346d2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_InvalidStateError.html @@ -1,85 +1,85 @@ - - - - -BluetoothGATTDescriptor_writeValue_InvalidStateError - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_InvalidStateError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch.html index f065636e7..72642a866 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch.html @@ -1,102 +1,102 @@ - - - - -BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb.html index 541b2c967..df02ef409 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb.html @@ -1,101 +1,101 @@ - - - - -BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_exist.html index 33377b034..c07ba7d78 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_exist.html @@ -1,88 +1,88 @@ - - - - -BluetoothGATTDescriptor_writeValue_exist - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_misarg.html index 4db742104..f65a4ce67 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_misarg.html @@ -1,90 +1,90 @@ - - - - -BluetoothGATTDescriptor_writeValue_misarg - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_misarg + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch.html index dff9cd0c0..89cdbad52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch.html @@ -1,97 +1,97 @@ - - - - -BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothGATTDescriptor_writeValue_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb.html index 4c0b855c0..f99222524 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb.html @@ -1,97 +1,97 @@ - - - - -BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_value_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_value_TypeMismatch.html index f0c051b36..8026e353e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_value_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_value_TypeMismatch.html @@ -1,97 +1,97 @@ - - - - -BluetoothGATTDescriptor_writeValue_value_TypeMismatch - - - - - -
- - + + + + +BluetoothGATTDescriptor_writeValue_value_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_with_errorCallback.html index 41c261f5d..64a1a86df 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTDescriptor_writeValue_with_errorCallback.html @@ -1,109 +1,109 @@ - - - - -BluetoothGATTDescriptor_writeValue_with_errorCallback - - - - - -
- - - + + + + +BluetoothGATTDescriptor_writeValue_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_characteristics_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_characteristics_attribute.html index a922e12c9..9c914a5e3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_characteristics_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_characteristics_attribute.html @@ -1,78 +1,78 @@ - - - - -BluetoothGATTService_characteristics_attribute - - - - - -
- - + + + + +BluetoothGATTService_characteristics_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_serviceUuid_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_serviceUuid_attribute.html index bb770162d..d4a61fff0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_serviceUuid_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_serviceUuid_attribute.html @@ -1,75 +1,82 @@ - - - - -BluetoothGATTService_serviceUuid_attribute - - - - - -
- - + + + + + + BluetoothGATTService_serviceUuid_attribute + + + + + + +
+ + + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_services_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_services_attribute.html index 7b3638144..10c17eb08 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_services_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothGATTService_services_attribute.html @@ -1,78 +1,78 @@ - - - - -BluetoothGATTService_services_attribute - - - - - -
- - + + + + +BluetoothGATTService_services_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_extend.html index 84298a6a1..c3f72d4cf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_extend.html @@ -1,44 +1,48 @@ - - - - -BluetoothLEAdapter_extend - - - - -
- - + + + + +BluetoothLEAdapter_extend + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_notexist.html index 9bb8c7532..629aa337a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_notexist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEAdapter_notexist - - - - -
- - + + + + +BluetoothLEAdapter_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise.html index 03ba5645f..012d91bf0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise.html @@ -1,57 +1,63 @@ - - - - -BluetoothLEAdapter_startAdvertise - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_InvalidStateError.html index e9f320c7e..1cf6015e3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_InvalidStateError.html @@ -1,67 +1,73 @@ - - - - -BluetoothLEAdapter_startAdvertise_InvalidStateError - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_InvalidStateError + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaExceededError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaExceededError.html index 0205e5575..220893e8f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaExceededError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaExceededError.html @@ -1,74 +1,80 @@ - - - - -BluetoothLEAdapter_startAdvertise_QuotaExceededError - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_QuotaExceededError + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaPatameterError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaPatameterError.html index 8f37fc587..76c5181e0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaPatameterError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_QuotaPatameterError.html @@ -1,87 +1,87 @@ - - - - -BluetoothLEAdapter_startAdvertise_QuotaPatameterError - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_QuotaPatameterError + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch.html index 0f3116d32..7488404ae 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch.html @@ -1,70 +1,76 @@ - - - - -BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_advertiseData_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch.html index be2e31027..6eca3ea2e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch.html @@ -1,78 +1,78 @@ - - - - -BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_connectable_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch.html index 450624657..7dea0a58a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch.html @@ -1,67 +1,73 @@ - - - - -BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_errorCallback_TypeMismatch + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb.html index d92f75800..15c4fd189 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb.html @@ -1,66 +1,72 @@ - - - - -BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_errorCallback_invalid_cb + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_exist.html index b9aaff784..506dd8118 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_exist.html @@ -1,45 +1,49 @@ - - - - -BluetoothLEAdapter_startAdvertise_exist - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_misarg.html index e20dbbf60..45df803f9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_misarg.html @@ -1,50 +1,54 @@ - - - - -BluetoothLEAdapter_startAdvertise_misarg - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_misarg + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_mode_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_mode_TypeMismatch.html index 611cef8ea..72993e78a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_mode_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_mode_TypeMismatch.html @@ -1,80 +1,86 @@ - - - - -BluetoothLEAdapter_startAdvertise_mode_TypeMismatch - - - - - -
- - - + + + + +BluetoothLEAdapter_startAdvertise_mode_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch.html index 9a9a0698a..17aa7be03 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch.html @@ -1,79 +1,85 @@ - - - - -BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_packetType_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch.html index e8cc39af8..ae51bf674 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch.html @@ -1,67 +1,73 @@ - - - - -BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb.html index 2a85aff5e..a8bc764b0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb.html @@ -1,65 +1,71 @@ - - - - -BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_successCallback_invalid_cb + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_with_connectable.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_with_connectable.html index d0c741a08..5cc669708 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_with_connectable.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startAdvertise_with_connectable.html @@ -1,62 +1,68 @@ - - - - -BluetoothLEAdapter_startAdvertise_with_connectable - - - - - -
- - + + + + +BluetoothLEAdapter_startAdvertise_with_connectable + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan.html index e1d75e169..8872d2572 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan.html @@ -1,59 +1,59 @@ - - - - -BluetoothLEAdapter_startScan - - - - -
- - + + + + +BluetoothLEAdapter_startScan + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_InvalidStateError.html index 44a036ec3..714b87e88 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_InvalidStateError.html @@ -1,72 +1,72 @@ - - - - -BluetoothLEAdapter_startScan_InvalidStateError - - - - - -
- - - + + + + +BluetoothLEAdapter_startScan_InvalidStateError + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_TypeMismatch.html index 9871ff1b8..c75885a9e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_TypeMismatch.html @@ -1,65 +1,71 @@ - - - - -BluetoothLEAdapter_startScan_errorCallback_TypeMismatch - - - - -
- - - + + + + +BluetoothLEAdapter_startScan_errorCallback_TypeMismatch + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_invalid_cb.html index 18f2f8eec..9b5b1129a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_errorCallback_invalid_cb.html @@ -1,65 +1,71 @@ - - - - -BluetoothLEAdapter_startScan_errorCallback_invalid_cb - - - - -
- - + + + + +BluetoothLEAdapter_startScan_errorCallback_invalid_cb + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_exist.html index cef6a13e8..04ffb287e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_exist.html @@ -1,45 +1,49 @@ - - - - -BluetoothLEAdapter_startScan_exist - - - - - -
- - + + + + +BluetoothLEAdapter_startScan_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_misarg.html index 5937d7481..8a048ce54 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_misarg.html @@ -1,49 +1,53 @@ - - - - -BluetoothLEAdapter_startScan_misarg - - - - -
- - + + + + +BluetoothLEAdapter_startScan_misarg + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_TypeMismatch.html index 97059ce89..665506aa1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_TypeMismatch.html @@ -1,65 +1,71 @@ - - - - -BluetoothLEAdapter_startScan_successCallback_TypeMismatch - - - - -
- - - + + + + +BluetoothLEAdapter_startScan_successCallback_TypeMismatch + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_invalid_cb.html index 3ba95a99a..ad8e2a264 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_successCallback_invalid_cb.html @@ -1,66 +1,72 @@ - - - - -BluetoothLEAdapter_startScan_successCallback_invalid_cb - - - - -
- - + + + + +BluetoothLEAdapter_startScan_successCallback_invalid_cb + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_with_errorCallback.html index 420e1fd28..a8dfdf4af 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_startScan_with_errorCallback.html @@ -1,61 +1,67 @@ - - - - -BluetoothLEAdapter_startScan_with_errorCallback - - - - -
- - - + + + + +BluetoothLEAdapter_startScan_with_errorCallback + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise.html index 73aeabbd1..098cf5734 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise.html @@ -1,57 +1,63 @@ - - - - -BluetoothLEAdapter_stopAdvertise - - - - -
- - + + + + +BluetoothLEAdapter_stopAdvertise + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_exist.html index 7b6d2f54a..43cd84284 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_exist.html @@ -1,44 +1,48 @@ - - - - -BluetoothLEAdapter_stopAdvertise_exist - - - - -
- - + + + + +BluetoothLEAdapter_stopAdvertise_exist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_extra_argument.html index 1c898f6ca..27a61d7a9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopAdvertise_extra_argument.html @@ -1,46 +1,50 @@ - - - - -BluetoothLEAdapter_stopAdvertise_extra_argument - - - - -
- - + + + + +BluetoothLEAdapter_stopAdvertise_extra_argument + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan.html index 8bf8ea1c4..2dba229cc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan.html @@ -1,62 +1,62 @@ - - - - -BluetoothLEAdapter_stopScan - - - - -
- - + + + + +BluetoothLEAdapter_stopScan + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_exist.html index c9969ace4..9382d4681 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_exist.html @@ -1,46 +1,50 @@ - - - - -BluetoothLEAdapter_stopScan_exist - - - - -
- - + + + + +BluetoothLEAdapter_stopScan_exist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_extra_argument.html index f2edea7f6..0b2a7c48e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdapter_stopScan_extra_argument.html @@ -1,46 +1,50 @@ - - - - -BluetoothLEAdapter_stopScan_extra_argument - - - - -
- - + + + + +BluetoothLEAdapter_stopScan_extra_argument + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_notexist.html index eaa01fffe..a3c7f017b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_notexist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEAdvertiseCallback_notexist - - - - -
- - + + + + +BluetoothLEAdvertiseCallback_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_onstate.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_onstate.html index b3b8b6254..898d2d4c6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_onstate.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseCallback_onstate.html @@ -1,64 +1,70 @@ - - - - -BluetoothLEAdvertiseCallback_onstate - - - - -
- - + + + + +BluetoothLEAdvertiseCallback_onstate + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_appearance_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_appearance_attribute.html index ab0fcd8bb..6077e0734 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_appearance_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_appearance_attribute.html @@ -1,53 +1,57 @@ - - - - -BluetoothLEAdvertiseData_appearance_attribute - - - - -
- - + + + + +BluetoothLEAdvertiseData_appearance_attribute + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_constructor.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_constructor.html index 74d6c2088..82e3b724b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_constructor.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_constructor.html @@ -1,58 +1,62 @@ - - - - -BluetoothLEAdvertiseData_constructor - - - - -
- - + + + + +BluetoothLEAdvertiseData_constructor + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_exist.html index cd13abb0d..240b06e0b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_exist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEAdvertiseData_exist - - - - -
- - + + + + +BluetoothLEAdvertiseData_exist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_extend.html index 957513ede..e14d3e94c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_extend.html @@ -1,44 +1,48 @@ - - - - -BluetoothLEAdvertiseData_extend - - - - -
- - + + + + +BluetoothLEAdvertiseData_extend + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeName_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeName_attribute.html index 92807dbf5..900d2aeae 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeName_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeName_attribute.html @@ -1,57 +1,61 @@ - - - - -BluetoothLEAdvertiseData_includeName_attribute - - - - -
- - + + + + +BluetoothLEAdvertiseData_includeName_attribute + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeTxPowerLevel_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeTxPowerLevel_attribute.html index 7f6463503..9ccdba377 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeTxPowerLevel_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_includeTxPowerLevel_attribute.html @@ -1,57 +1,61 @@ - - - - -BluetoothLEAdvertiseData_includeTxPowerLevel_attribute - - - - -
- - + + + + +BluetoothLEAdvertiseData_includeTxPowerLevel_attribute + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_manufacturerData_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_manufacturerData_attribute.html index 337c42fd6..c9f16aa97 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_manufacturerData_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_manufacturerData_attribute.html @@ -1,59 +1,61 @@ - - - - -BluetoothLEAdvertiseData_manufacturerData_attribute - - - - - -
- - - + + + + +BluetoothLEAdvertiseData_manufacturerData_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_servicesData_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_servicesData_attribute.html index 827d460ed..f916db759 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_servicesData_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_servicesData_attribute.html @@ -1,61 +1,65 @@ - - - - -BluetoothLEAdvertiseData_servicesData_attribute - - - - -
- - - + + + + +BluetoothLEAdvertiseData_servicesData_attribute + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_solicitationuuids_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_solicitationuuids_attribute.html index ae3a5d0f0..7990fa03f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_solicitationuuids_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_solicitationuuids_attribute.html @@ -1,56 +1,60 @@ - - - - -BluetoothLEAdvertiseData_solicitationuuids_attribute - - - - -
- - + + + + +BluetoothLEAdvertiseData_solicitationuuids_attribute + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_uuids_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_uuids_attribute.html index f50542817..7836f87e1 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_uuids_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAdvertiseData_uuids_attribute.html @@ -1,57 +1,61 @@ - - - - -BluetoothLEAdvertiseData_uuids_attribute - - - - - -
- - + + + + +BluetoothLEAdvertiseData_uuids_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAttributes.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAttributes.html old mode 100644 new mode 100755 index d1e52a97b..88e8d7505 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAttributes.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEAttributes.html @@ -1,208 +1,211 @@ - - - - -BluetoothLEAttributes - - - - - -
- - - + + + + +BluetoothLEAttributes + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_connection.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_connection.html old mode 100644 new mode 100755 index bac210022..46d481110 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_connection.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_connection.html @@ -1,110 +1,110 @@ - - - - -BluetoothLEConnectChangeCallback_connection - - - - - -
- - - + + + + +BluetoothLEConnectChangeCallback_connection + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_notexist.html index 5483a171e..2ba01042b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_notexist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEConnectChangeCallback_notexist - - - - -
- - + + + + +BluetoothLEConnectChangeCallback_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_onconnected.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_onconnected.html index 70a96397f..f2e88c344 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_onconnected.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_onconnected.html @@ -1,91 +1,91 @@ - - - - -BluetoothLEConnectChangeCallback_onconnected - - - - - -
- - + + + + +BluetoothLEConnectChangeCallback_onconnected + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_ondisconnected.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_ondisconnected.html index bb502e66f..9be7efdb3 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_ondisconnected.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEConnectChangeCallback_ondisconnected.html @@ -1,91 +1,91 @@ - - - - -BluetoothLEConnectChangeCallback_ondisconnected - - - - - -
- - + + + + +BluetoothLEConnectChangeCallback_ondisconnected + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener.html index dd60fbb88..2d9f9aa7a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener.html @@ -1,83 +1,83 @@ - - - - -BluetoothLEDevice_addConnectStateChangeListener - - - - - -
- - + + + + +BluetoothLEDevice_addConnectStateChangeListener + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch.html index 3da0b63c1..b0349a27c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch.html @@ -1,69 +1,69 @@ - - - - - -BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch - - - - - -
- - - + + + + + +BluetoothLEDevice_addConnectStateChangeListener_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_exist.html index 6bbb7ad9f..d0d004ee9 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_exist.html @@ -1,61 +1,61 @@ - - - - -BluetoothLEDevice_addConnectStateChangeListener_exist - - - - - -
- - + + + + +BluetoothLEDevice_addConnectStateChangeListener_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb.html index 01539158c..271d151e6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb.html @@ -1,70 +1,70 @@ - - - - -BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb - - - - - -
- - + + + + +BluetoothLEDevice_addConnectStateChangeListener_listener_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_missarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_missarg.html index ec7ef1b3f..30fe897a5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_missarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addConnectStateChangeListener_missarg.html @@ -1,63 +1,63 @@ - - - - - -BluetoothLEDevice_addConnectStateChangeListener_missarg - - - - -
- - - + + + + + +BluetoothLEDevice_addConnectStateChangeListener_missarg + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addremoveConnectStateChangeListener_combined.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addremoveConnectStateChangeListener_combined.html old mode 100644 new mode 100755 index 4006936dd..6bf298ddf --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addremoveConnectStateChangeListener_combined.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_addremoveConnectStateChangeListener_combined.html @@ -1,158 +1,158 @@ - - - - -BluetoothLEDevice_addremoveConnectStateChangeListener_combined - - - - - -
- - - + + + + +BluetoothLEDevice_addremoveConnectStateChangeListener_combined + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_address_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_address_attribute.html index 55253122a..175876a22 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_address_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_address_attribute.html @@ -1,60 +1,60 @@ - - - - -BluetoothLEDevice_address_attribute - - - - - -
- - + + + + +BluetoothLEDevice_address_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_appearance_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_appearance_attribute.html index 4916646cc..e5814f0e8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_appearance_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_appearance_attribute.html @@ -1,60 +1,60 @@ - - - - -BluetoothLEDevice_appearance_attribute - - - - - -
- - + + + + +BluetoothLEDevice_appearance_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect.html index 1fc88342b..c823d593a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect.html @@ -1,74 +1,74 @@ - - - - -BluetoothLEDevice_connect - - - - - -
- - + + + + +BluetoothLEDevice_connect + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_combined.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_combined.html old mode 100644 new mode 100755 index 9a4d3f616..7c145c1b2 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_combined.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_combined.html @@ -1,213 +1,213 @@ - - - - -BluetoothLEDevice_connect_combined - - - - - -
- - - + + + + +BluetoothLEDevice_connect_combined + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_TypeMismatch.html index a0214aa56..070952c6d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_TypeMismatch.html @@ -1,78 +1,78 @@ - - - - -BluetoothLEDevice_connect_errorCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothLEDevice_connect_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_invalid_cb.html index eb4d914a3..70c5e10cf 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_errorCallback_invalid_cb.html @@ -1,80 +1,80 @@ - - - - -BluetoothLEDevice_connect_errorCallback_invalid_cb - - - - - -
- - + + + + +BluetoothLEDevice_connect_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_exist.html index 35ad38c72..72dcd3a38 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_exist.html @@ -1,61 +1,61 @@ - - - - -BluetoothLEDevice_connect_exist - - - - - -
- - + + + + +BluetoothLEDevice_connect_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_TypeMismatch.html index b2ebc237e..4d76ed426 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_TypeMismatch.html @@ -1,78 +1,78 @@ - - - - -BluetoothLEDevice_connect_successCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothLEDevice_connect_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_invalid_cb.html index d4b424e89..e16773c3a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_successCallback_invalid_cb.html @@ -1,80 +1,80 @@ - - - - -BluetoothLEDevice_connect_successCallback_invalid_cb - - - - - -
- - + + + + +BluetoothLEDevice_connect_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_with_errorcallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_with_errorcallback.html index 8241c2d0f..182a3b508 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_with_errorcallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_connect_with_errorcallback.html @@ -1,74 +1,74 @@ - - - - -BluetoothLEDevice_connect_with_errorcallback - - - - - -
- - + + + + +BluetoothLEDevice_connect_with_errorcallback + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect.html index 293e67705..344dafa19 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect.html @@ -1,74 +1,74 @@ - - - - -BluetoothLEDevice_disconnect - - - - - -
- - + + + + +BluetoothLEDevice_disconnect + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_InvalidStateError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_InvalidStateError.html index d688bec24..5227dd7b8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_InvalidStateError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_InvalidStateError.html @@ -1,72 +1,72 @@ - - - - -BluetoothLEDevice_disconnect_InvalidStateError - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_InvalidStateError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_combined.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_combined.html old mode 100644 new mode 100755 index 847581c24..4f4b8c530 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_combined.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_combined.html @@ -1,182 +1,182 @@ - - - - -BluetoothLEDevice_disconnect_combined - - - - - -
- - - + + + + +BluetoothLEDevice_disconnect_combined + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_TypeMismatch.html index 412bc3734..28cb8fc3e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_TypeMismatch.html @@ -1,86 +1,86 @@ - - - - -BluetoothLEDevice_disconnect_errorCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_errorCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_invalid_cb.html index a30a780e4..2bb21cc47 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_errorCallback_invalid_cb.html @@ -1,88 +1,88 @@ - - - - -BluetoothLEDevice_disconnect_errorCallback_invalid_cb - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_errorCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_exist.html index 2a1de9f62..b16c04629 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_exist.html @@ -1,73 +1,73 @@ - - - - -BluetoothLEDevice_disconnect_exist - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_TypeMismatch.html index d8507150f..70753f5ca 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_TypeMismatch.html @@ -1,86 +1,86 @@ - - - - -BluetoothLEDevice_disconnect_successCallback_TypeMismatch - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_successCallback_TypeMismatch + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_invalid_cb.html index 7dc31545e..32d17ad45 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_successCallback_invalid_cb.html @@ -1,88 +1,88 @@ - - - - -BluetoothLEDevice_disconnect_successCallback_invalid_cb - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_successCallback_invalid_cb + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_with_errorCallback.html index 55947d69a..6d3743c03 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_disconnect_with_errorCallback.html @@ -1,81 +1,81 @@ - - - - -BluetoothLEDevice_disconnect_with_errorCallback - - - - - -
- - + + + + +BluetoothLEDevice_disconnect_with_errorCallback + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_extend.html index f79e6768a..e04b16f1b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_extend.html @@ -1,58 +1,58 @@ - - - - -BluetoothLEDevice_extend - - - - - -
- - + + + + +BluetoothLEDevice_extend + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService.html index b442f1806..1b4e5a6b8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService.html @@ -1,75 +1,75 @@ - - - - -BluetoothLEDevice_getService - - - - - -
- - + + + + +BluetoothLEDevice_getService + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids.html index fb81be44c..95e282751 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids.html @@ -1,75 +1,75 @@ - - - - -BluetoothLEDevice_getServiceAllUuids - - - - - -
- - + + + + +BluetoothLEDevice_getServiceAllUuids + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_exist.html index c02515d37..f6970c02b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_exist.html @@ -1,74 +1,74 @@ - - - - -BluetoothLEDevice_getServiceAllUuids_exist - - - - - -
- - + + + + +BluetoothLEDevice_getServiceAllUuids_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_extra_argument.html index 97965b018..e51448b9e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getServiceAllUuids_extra_argument.html @@ -1,72 +1,72 @@ - - - - -BluetoothLEDevice_getServiceAllUuids_extra_argument - - - - - -
- - + + + + +BluetoothLEDevice_getServiceAllUuids_extra_argument + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_NotFoundError.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_NotFoundError.html index 0a7f76dcf..67cf5cae0 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_NotFoundError.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_NotFoundError.html @@ -1,78 +1,78 @@ - - - - -BluetoothLEDevice_getService_NotFoundError - - - - - -
- - + + + + +BluetoothLEDevice_getService_NotFoundError + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_combined.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_combined.html old mode 100644 new mode 100755 index 297db52d1..f1b2670f0 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_combined.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_combined.html @@ -1,128 +1,128 @@ - - - - -BluetoothLEDevice_getService_combined - - - - - -
- - - + + + + +BluetoothLEDevice_getService_combined + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_exist.html index 79da3a06f..287c589a2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_exist.html @@ -1,74 +1,74 @@ - - - - -BluetoothLEDevice_getService_exist - - - - - -
- - + + + + +BluetoothLEDevice_getService_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_misarg.html index 48c095a8d..43f20b0f2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_getService_misarg.html @@ -1,76 +1,76 @@ - - - - -BluetoothLEDevice_getService_misarg - - - - - -
- - + + + + +BluetoothLEDevice_getService_misarg + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeName_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeName_attribute.html index caccf5eb2..8e561c515 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeName_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeName_attribute.html @@ -1,64 +1,64 @@ - - - - -BluetoothLEDevice_includeName_attribute - - - - - -
- - + + + + +BluetoothLEDevice_includeName_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeTxPowerLevel_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeTxPowerLevel_attribute.html index 453b8781e..cc53a444c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeTxPowerLevel_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_includeTxPowerLevel_attribute.html @@ -1,62 +1,62 @@ - - - - -BluetoothLEDevice_includeTxPowerLevel_attribute - - - - -
- - + + + + +BluetoothLEDevice_includeTxPowerLevel_attribute + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_manufacturerData_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_manufacturerData_attribute.html index 63727300e..de06a4c2f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_manufacturerData_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_manufacturerData_attribute.html @@ -1,67 +1,67 @@ - - - - -BluetoothLEDevice_manufacturerData_attribute - - - - - -
- - - + + + + +BluetoothLEDevice_manufacturerData_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_name_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_name_attribute.html index c62837e5f..db881382a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_name_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_name_attribute.html @@ -1,61 +1,61 @@ - - - - -BluetoothLEDevice_name_attribute - - - - - -
- - + + + + +BluetoothLEDevice_name_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_notexist.html index eae52e380..19a1be943 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_notexist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEDevice_notexist - - - - -
- - + + + + +BluetoothLEDevice_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener.html index 24bcfadd9..fed2c244d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener.html @@ -1,83 +1,83 @@ - - - - -BluetoothLEDevice_removeConnectStateChangeListener - - - - - -
- - + + + + +BluetoothLEDevice_removeConnectStateChangeListener + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener_exist.html index 859a08076..afed37e8e 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_removeConnectStateChangeListener_exist.html @@ -1,82 +1,82 @@ - - - - -BluetoothLEDevice_removeConnectStateChangeListener_exist - - - - - -
- - + + + + +BluetoothLEDevice_removeConnectStateChangeListener_exist + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_rssi_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_rssi_attribute.html old mode 100644 new mode 100755 index 29633a16f..cb83265cc --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_rssi_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_rssi_attribute.html @@ -1,60 +1,60 @@ - - - - -BluetoothLEDevice_rssi_attribute - - - - - -
- - - + + + + +BluetoothLEDevice_rssi_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_serviceData_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_serviceData_attribute.html index 6fd21e221..6aaeb1b44 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_serviceData_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_serviceData_attribute.html @@ -1,60 +1,60 @@ - - - - -BluetoothLEDevice_serviceData_attribute - - - - - -
- - + + + + +BluetoothLEDevice_serviceData_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_solicitationuuids_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_solicitationuuids_attribute.html index 0e2064cd7..98fe874d2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_solicitationuuids_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_solicitationuuids_attribute.html @@ -1,67 +1,67 @@ - - - - -BluetoothLEDevice_solicitationuuids_attribute - - - - - -
- - + + + + +BluetoothLEDevice_solicitationuuids_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_txPowerLevel_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_txPowerLevel_attribute.html index 55a773e60..4d73700ed 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_txPowerLevel_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_txPowerLevel_attribute.html @@ -1,60 +1,60 @@ - - - - -BluetoothLEDevice_txPowerLevel_attribute - - - - - -
- - - + + + + +BluetoothLEDevice_txPowerLevel_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_uuids_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_uuids_attribute.html index 6db767560..3fade4b36 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_uuids_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEDevice_uuids_attribute.html @@ -1,67 +1,67 @@ - - - - -BluetoothLEDevice_uuids_attribute - - - - - -
- - + + + + +BluetoothLEDevice_uuids_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_data_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_data_attribute.html index eb5eb8aa9..bf3f5aab2 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_data_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_data_attribute.html @@ -1,72 +1,72 @@ - - - - - -BluetoothLEManufacturerData_data_attribute - - - - - -
- - + + + + + +BluetoothLEManufacturerData_data_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_extend.html index 5bd2ac603..535c8b9c7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_extend.html @@ -1,72 +1,72 @@ - - - - - -BluetoothLEManufacturerData_extend - - - - - -
- - + + + + + +BluetoothLEManufacturerData_extend + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_id_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_id_attribute.html index d7f5f343f..3e662a866 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_id_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEManufacturerData_id_attribute.html @@ -1,72 +1,72 @@ - - - - - -BluetoothLEManufacturerData_id_attribute - - - - - -
- - + + + + + +BluetoothLEManufacturerData_id_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_notexist.html index 2f6d5edfb..bbc8ba692 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_notexist.html @@ -1,43 +1,47 @@ - - - - -BluetoothLEScanCallback_notexist - - - - -
- - + + + + +BluetoothLEScanCallback_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_ondevicefound.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_ondevicefound.html index 7f6c79bf0..7fd3db7aa 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_ondevicefound.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_ondevicefound.html @@ -1,86 +1,86 @@ - - - - -BluetoothLEScanCallback_ondevicefound - - - - -
- - + + + + +BluetoothLEScanCallback_ondevicefound + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onfinished.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onfinished.html index 7d3219141..249665661 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onfinished.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onfinished.html @@ -1,85 +1,85 @@ - - - - -BluetoothLEScanCallback_onfinished - - - - -
- - + + + + +BluetoothLEScanCallback_onfinished + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onsuccess.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onsuccess.html index 203687730..e45d44642 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onsuccess.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEScanCallback_onsuccess.html @@ -1,67 +1,67 @@ - - - - -BluetoothLEScanCallback_onsuccess - - - - - -
- - + + + + +BluetoothLEScanCallback_onsuccess + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_data_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_data_attribute.html index a9b146474..a8172c7ca 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_data_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_data_attribute.html @@ -1,72 +1,72 @@ - - - - - -BluetoothLEServiceData_data_attribute - - - - - -
- - + + + + + +BluetoothLEServiceData_data_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_extend.html index 6b5864a3f..902d6ac23 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_extend.html @@ -1,72 +1,72 @@ - - - - - -BluetoothLEServiceData_extend - - - - - -
- - + + + + + +BluetoothLEServiceData_extend + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_uuid_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_uuid_attribute.html index 082430cb2..8feca5ad5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_uuid_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothLEServiceData_uuid_attribute.html @@ -1,73 +1,73 @@ - - - - - -BluetoothLEServiceData_uuid_attribute - - - - - -
- - + + + + + +BluetoothLEServiceData_uuid_attribute + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_bluetooth_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_bluetooth_attribute.html index 210b5b0ba..9dea6a266 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_bluetooth_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_bluetooth_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,9 +46,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBME test(function () { - var bt = tizen.bluetooth; - check_readonly(tizen, "bluetooth", bt, "object", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var bt = tizen.bluetooth; +check_readonly(tizen, "bluetooth", bt, "object", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_notexist.html index d814ba8e0..74691fbe7 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManagerObject_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Witold Choinkowski +Witold Choinkowski --> @@ -37,7 +37,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothManagerObject"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothManagerObject"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html index 215794330..8b3d35c52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Feng Zhao +Feng Zhao --> @@ -39,7 +39,9 @@ Authors: //==== TEST_CRITERIA CONSTE CONSTT CONSTV CONSTRO test(function () { - check_const(tizen.bluetooth, 'BASE_UUID', "00000000-0000-1000-8000-00805F9B34FB", "string", 'SRC-NANJING'); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_const(tizen.bluetooth, 'BASE_UUID', "00000000-0000-1000-8000-00805F9B34FB", "string", 'SRC-NANJING'); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMajor_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMajor_attribute.html index b778a699a..51c654e73 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMajor_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMajor_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,9 +46,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA AE AT ARO test(function () { - var major = tizen.bluetooth.deviceMajor; - check_readonly(tizen.bluetooth, "deviceMajor", major, "object", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var major = tizen.bluetooth.deviceMajor; +check_readonly(tizen.bluetooth, "deviceMajor", major, "object", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMinor_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMinor_attribute.html index 9f5691577..a9f086211 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMinor_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceMinor_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,9 +46,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA AE AT ARO test(function () { - var minor = tizen.bluetooth.deviceMinor; - check_readonly(tizen.bluetooth, "deviceMinor", minor, "object", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var minor = tizen.bluetooth.deviceMinor; +check_readonly(tizen.bluetooth, "deviceMinor", minor, "object", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceService_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceService_attribute.html index 0e6212cd3..49fdebe31 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceService_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_deviceService_attribute.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,9 +46,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA AE AT ARO test(function () { - var devService = tizen.bluetooth.deviceService; - check_readonly(tizen.bluetooth, "deviceService", devService, "object", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var devService = tizen.bluetooth.deviceService; +check_readonly(tizen.bluetooth, "deviceService", devService, "object", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_extend.html index ec54e3f86..47e6a5177 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_extend.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBX test(function () { - check_extensibility(tizen.bluetooth); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_extensibility(tizen.bluetooth); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter.html index ea1c52daf..37f0c06d6 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,12 +38,14 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MNA MR test(function () { - var adapter = tizen.bluetooth.getDefaultAdapter(); - assert_type(adapter, "object", "adapter test"); - assert_type(adapter.powered, "boolean", "powered attribute test"); - assert_type(adapter.visible, "boolean", "visible attribute test"); - assert_type(adapter.address, "string", "address attribute test"); - assert_type(adapter.name, "string", "name attribute test"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var adapter = tizen.bluetooth.getDefaultAdapter(); + assert_type(adapter, "object", "adapter test"); + assert_type(adapter.powered, "boolean", "powered attribute test"); + assert_type(adapter.visible, "boolean", "visible attribute test"); + assert_type(adapter.address, "string", "address attribute test"); + assert_type(adapter.name, "string", "name attribute test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_exist.html index 477123fd0..efbd8b3c4 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,9 +46,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA ME test(function () { - assert_true("getDefaultAdapter" in tizen.bluetooth, "Method getDefaultAdapter does not exist in bluetooth adapter."); - check_method_exists(tizen.bluetooth, "getDefaultAdapter"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +assert_true("getDefaultAdapter" in tizen.bluetooth, "Method getDefaultAdapter does not exist in bluetooth adapter."); +check_method_exists(tizen.bluetooth, "getDefaultAdapter"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_extra_argument.html index 090a4bc1f..eea6f35cb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getDefaultAdapter_extra_argument.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -37,7 +37,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA MNAEX test(function () { - checkExtraArgument(tizen.bluetooth, "getDefaultAdapter"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + checkExtraArgument(tizen.bluetooth, "getDefaultAdapter"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter.html index 15ca54a8a..9a28d537d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter.html @@ -1,45 +1,49 @@ - - - - -BluetoothManager_getLEAdapter - - - - - -
- - + + + + +BluetoothManager_getLEAdapter + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_exist.html index e6c13b89f..26d204270 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_exist.html @@ -1,43 +1,47 @@ - - - - -BluetoothManager_getLEAdapter_exist - - - - -
- - + + + + +BluetoothManager_getLEAdapter_exist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_extra_argument.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_extra_argument.html index 821488e7b..7095cef2c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_extra_argument.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_getLEAdapter_extra_argument.html @@ -1,43 +1,47 @@ - - - - -BluetoothManager_getLEAdapter_extra_argument - - - - -
- - + + + + +BluetoothManager_getLEAdapter_extra_argument + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_in_tizen.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_in_tizen.html index 39a2a1186..53e544709 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_in_tizen.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_in_tizen.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Lei, ZhanX +Lei, ZhanX --> @@ -46,10 +46,12 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA OBME test(function () { - var bt = tizen.bluetooth; - assert_true("bluetooth" in tizen, "No bluetooth in tizen"); - check_readonly(tizen, "bluetooth", bt, "object", "Tizen"); -}, document.title); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv +var bt = tizen.bluetooth; +assert_true("bluetooth" in tizen, "No bluetooth in tizen"); +check_readonly(tizen, "bluetooth", bt, "object", "Tizen"); + } + }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_notexist.html index bd6d6591d..642e5dacd 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothManager"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothManager"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html index 4caa39d26..bb695dc73 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html @@ -35,29 +35,31 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var dataInt8Array = new Int8Array([-21, 31]); - var dataUint8Array = new Uint8Array([240, 129]); - var dataString = "0x18b1"; + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var dataInt8Array = new Int8Array([-21, 31]); + var dataUint8Array = new Uint8Array([240, 129]); + var dataString = "0x18b1"; - var ary = tizen.bluetooth.toByteArray(dataInt8Array); - var ary2 = tizen.bluetooth.toByteArray(dataUint8Array); - var ary3 = tizen.bluetooth.toByteArray(dataString); + var ary = tizen.bluetooth.toByteArray(dataInt8Array); + var ary2 = tizen.bluetooth.toByteArray(dataUint8Array); + var ary3 = tizen.bluetooth.toByteArray(dataString); - assert_type(ary, "array", "dataInt8Array toByteArray type test"); - assert_array_equals(ary, Uint8Array.from(dataInt8Array), "toByteArray [dataInt8Array] output equals test"); - assert_type(ary2, "array", "dataUint8Array toByteArray type test"); - assert_array_equals(ary2, Uint8Array.from(dataUint8Array), "toByteArray [dataUint8Array] output equals test"); - assert_type(ary3, "array", "dataString toByteArray type test"); + assert_type(ary, "array", "dataInt8Array toByteArray type test"); + assert_array_equals(ary, Uint8Array.from(dataInt8Array), "toByteArray [dataInt8Array] output equals test"); + assert_type(ary2, "array", "dataUint8Array toByteArray type test"); + assert_array_equals(ary2, Uint8Array.from(dataUint8Array), "toByteArray [dataUint8Array] output equals test"); + assert_type(ary3, "array", "dataString toByteArray type test"); - const conver = str => { - var res = []; - for(var i=2; i { + var res = []; + for (var i = 2; i < str.length; i += 2) { + res.push(parseInt(str.substr(i, 2), 16)); + } + return res } - return res + var uint3 = new Uint8Array(conver("0x18b1")); // "0x18b1" + assert_array_equals(ary3, Uint8Array.from(uint3), "toByteArray [dataString] output equals test"); } - var uint3 = new Uint8Array(conver("0x18b1")); // "0x18b1" - assert_array_equals(ary3, Uint8Array.from(uint3), "toByteArray [dataString] output equals test"); }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html index 7da1d258d..3f7d58976 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "toByteArray"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "toByteArray"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html index b5f85fa2d..6bd3484dc 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"TypeMismatchError"}, - function () { - tizen.bluetooth.toByteArray(); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "TypeMismatchError" }, + function () { + tizen.bluetooth.toByteArray(); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html index 4727642fa..3f011f13d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html @@ -35,11 +35,13 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var dataInt8Array = new Int8Array([-21, 31]); - var str = tizen.bluetooth.toDOMString(dataInt8Array); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var dataInt8Array = new Int8Array([-21, 31]); + var str = tizen.bluetooth.toDOMString(dataInt8Array); - assert_type(str, "string", "toDOMString test"); - assert_equals(str, "0xeb1f", "toDOMString output equals test"); + assert_type(str, "string", "toDOMString test"); + assert_equals(str, "0xeb1f", "toDOMString output equals test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html index 0bfecb12f..21c654c52 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "toDOMString"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "toDOMString"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html index 0b921a00c..d9be0d010 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"TypeMismatchError"}, - function () { - tizen.bluetooth.toDOMString(); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "TypeMismatchError" }, + function () { + tizen.bluetooth.toDOMString(); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html index 7e3e51fe0..d009ce164 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html @@ -35,32 +35,34 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var dataInt8Array = new Int8Array([-21, 31]); - var dataUint8Array = new Uint8Array([240, 129]); - var dataString = "0x18b1"; - var byte = tizen.bluetooth.toUint8Array(dataInt8Array); - var byte2 = tizen.bluetooth.toUint8Array(dataUint8Array); - var byte3 = tizen.bluetooth.toUint8Array(dataString); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var dataInt8Array = new Int8Array([-21, 31]); + var dataUint8Array = new Uint8Array([240, 129]); + var dataString = "0x18b1"; + var byte = tizen.bluetooth.toUint8Array(dataInt8Array); + var byte2 = tizen.bluetooth.toUint8Array(dataUint8Array); + var byte3 = tizen.bluetooth.toUint8Array(dataString); - assert_type(byte, "object", "toUint8Array test"); - assert_type(byte2, "object", "toUint8Array test"); - assert_type(byte3, "object", "toUint8Array test"); + assert_type(byte, "object", "toUint8Array test"); + assert_type(byte2, "object", "toUint8Array test"); + assert_type(byte3, "object", "toUint8Array test"); - var uint1 = new Uint8Array([-21, 31]); - var uint2 = new Uint8Array([240, 129]); - const conver = str => { - var res = []; - for(var i=2; i { + var res = []; + for (var i = 2; i < str.length; i += 2) { + res.push(parseInt(str.substr(i, 2), 16)); + } + return res } - return res - } - var uint3 = new Uint8Array(conver("0x18b1")); + var uint3 = new Uint8Array(conver("0x18b1")); - assert_array_equals(byte, uint1, "toUint8Array dataInt8Array output equals test"); - assert_array_equals(byte2, uint2, "toUint8Array dataUint8Array output equals test"); - assert_array_equals(byte3, uint3, "toUint8Array dataString output equals test"); + assert_array_equals(byte, uint1, "toUint8Array dataInt8Array output equals test"); + assert_array_equals(byte2, uint2, "toUint8Array dataUint8Array output equals test"); + assert_array_equals(byte3, uint3, "toUint8Array dataString output equals test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html index cb2f1d872..e43ee0525 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "toUint8Array"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "toUint8Array"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html index c693db458..67be10483 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"TypeMismatchError"}, - function () { - tizen.bluetooth.toUint8Array(); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "TypeMismatchError" }, + function () { + tizen.bluetooth.toUint8Array(); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html index e907acf60..f6b1f37cb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var uuid = tizen.bluetooth.uuidTo128bit("1234"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var uuid = tizen.bluetooth.uuidTo128bit("1234"); - assert_type(uuid, "string", "uuidTo128bit test"); - assert_equals(uuid, "00001234-0000-1000-8000-00805f9b34fb", "uuidTo128bit output equals test"); + assert_type(uuid, "string", "uuidTo128bit test"); + assert_equals(uuid, "00001234-0000-1000-8000-00805f9b34fb", "uuidTo128bit output equals test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html index 6d670b21a..f53a53931 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "uuidTo128bit"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "uuidTo128bit"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html index 230a4cb92..9b7a2540c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"InvalidValuesError"}, - function () { - tizen.bluetooth.uuidTo128bit(123); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "InvalidValuesError" }, + function () { + tizen.bluetooth.uuidTo128bit(123); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html index b083d7b26..5bbd73328 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var uuid = tizen.bluetooth.uuidToShortestPossible("1234"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var uuid = tizen.bluetooth.uuidToShortestPossible("1234"); - assert_type(uuid, "string", "uuid test"); - assert_equals(uuid, "1234", "uuidToShortestPossible output equals test"); + assert_type(uuid, "string", "uuid test"); + assert_equals(uuid, "1234", "uuidToShortestPossible output equals test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html index a5ea4eb63..ca8042676 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "uuidToShortestPossible"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "uuidToShortestPossible"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html index 5bd0c6cf9..ba36af475 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"InvalidValuesError"}, - function () { - tizen.bluetooth.uuidToShortestPossible(123); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "InvalidValuesError" }, + function () { + tizen.bluetooth.uuidToShortestPossible(123); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html index 0e9c27f5f..5534fcd9a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html @@ -35,12 +35,14 @@ Authors: //==== TEST_CRITERIA MR test(function () { - var equal = tizen.bluetooth.uuidsEqual("abcdef01-2345-6789-abcd-ef0123456789", "abcdef01"); - var equal2 = tizen.bluetooth.uuidsEqual("ab5690ef", "ab5690ef-0000-1000-8000-00805F9B34FB"); - - assert_type(equal, "boolean", "uuidsEqual test"); - assert_equals(equal, false, "uuidsEqual output false test"); - assert_equals(equal2, true, "uuidsEqual output true test"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + var equal = tizen.bluetooth.uuidsEqual("abcdef01-2345-6789-abcd-ef0123456789", "abcdef01"); + var equal2 = tizen.bluetooth.uuidsEqual("ab5690ef", "ab5690ef-0000-1000-8000-00805F9B34FB"); + + assert_type(equal, "boolean", "uuidsEqual test"); + assert_equals(equal, false, "uuidsEqual output false test"); + assert_equals(equal2, true, "uuidsEqual output true test"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html index 0ad2bfca3..c0de9bc60 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html @@ -35,7 +35,9 @@ Authors: //==== TEST_CRITERIA ME test(function () { - check_method_exists(tizen.bluetooth, "uuidsEqual"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_method_exists(tizen.bluetooth, "uuidsEqual"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html index 98b6f2d94..7c3207366 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html @@ -35,10 +35,12 @@ Authors: //==== TEST_CRITERIA MMA test(function () { - assert_throws ({name:"InvalidValuesError"}, - function () { - tizen.bluetooth.uuidsEqual(); - }, "Method with missing non-optional argument."); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + assert_throws({ name: "InvalidValuesError" }, + function () { + tizen.bluetooth.uuidsEqual(); + }, "Method with missing non-optional argument."); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_extend.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_extend.html index 43525e8cb..8e4ddb36b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_extend.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_extend.html @@ -1,69 +1,73 @@ - - - - -BluetoothServiceHandler_extend - - - - - -
- - - + + + + +BluetoothServiceHandler_extend + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_isConnected_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_isConnected_attribute.html index 60ce8f4f6..75078d691 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_isConnected_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_isConnected_attribute.html @@ -1,78 +1,82 @@ - - - - -BluetoothServiceHandler_isConnected_attribute - - - - - -
- - - + + + + +BluetoothServiceHandler_isConnected_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_name_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_name_attribute.html index 31a66729c..43fcaa16c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_name_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_name_attribute.html @@ -1,78 +1,82 @@ - - - - -BluetoothServiceHandler_name_attribute - - - - - -
- - - + + + + +BluetoothServiceHandler_name_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_notexist.html index 5a987077f..274fc7704 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothServiceHandler"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothServiceHandler"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_onconnect_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_onconnect_attribute.html index bae85d044..0075f5db5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_onconnect_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_onconnect_attribute.html @@ -1,115 +1,119 @@ - - - - - -BluetoothServiceHandler_onconnect_attribute - - - - - - -
- - - - - + + + + + +BluetoothServiceHandler_onconnect_attribute + + + + + + +
+ + + + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister.html index 1cd6ab4e6..bcc6b3da5 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister.html @@ -1,68 +1,72 @@ - - - - - - - - - -
- - - + + + + + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_TypeMismatch.html index bf50b63c8..c5d9752dd 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_TypeMismatch.html @@ -1,82 +1,88 @@ - - - - -BluetoothServiceHandler_unregister_errorCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_errorCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_invalid_cb.html index ff1108431..52ad03999 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_errorCallback_invalid_cb.html @@ -1,81 +1,85 @@ - - - - -BluetoothServiceHandler_unregister_errorCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_errorCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_exist.html index 79db101d0..318b427f8 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_exist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_exist.html @@ -1,77 +1,81 @@ - - - - -BluetoothServiceHandler_unregister_exist - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_exist + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_TypeMismatch.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_TypeMismatch.html index 36459170f..770fc4f51 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_TypeMismatch.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_TypeMismatch.html @@ -1,81 +1,87 @@ - - - - -BluetoothServiceHandler_unregister_successCallback_TypeMismatch - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_successCallback_TypeMismatch + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_invalid_cb.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_invalid_cb.html index b9d99e507..de258ba8f 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_invalid_cb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_successCallback_invalid_cb.html @@ -1,81 +1,85 @@ - - - - -BluetoothServiceHandler_unregister_successCallback_invalid_cb - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_successCallback_invalid_cb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_unregisterServiceRecord.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_unregisterServiceRecord.html index 13aae8010..f3e583c61 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_unregisterServiceRecord.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_unregisterServiceRecord.html @@ -1,80 +1,86 @@ - - - - -BluetoothServiceHandler_unregister_unregisterServiceRecord - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_unregisterServiceRecord + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_errorCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_errorCallback.html index a33d8fc53..0f295a66d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_errorCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_errorCallback.html @@ -1,82 +1,86 @@ - - - - -BluetoothServiceHandler_unregister_with_errorCallback - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_with_errorCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_successCallback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_successCallback.html index e8e9c02fb..bd5a064eb 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_successCallback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_unregister_with_successCallback.html @@ -1,69 +1,73 @@ - - - - -BluetoothServiceHandler_unregister_with_successCallback - - - - - -
- - - + + + + +BluetoothServiceHandler_unregister_with_successCallback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_uuid_attribute.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_uuid_attribute.html index a25377b69..27c6d4fce 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_uuid_attribute.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceHandler_uuid_attribute.html @@ -1,76 +1,80 @@ - - - - -BluetoothServiceHandler_uuid_attribute - - - - - -
- - - + + + + +BluetoothServiceHandler_uuid_attribute + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_notexist.html index 7c57107b9..ceaef5381 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothServiceSuccessCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothServiceSuccessCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_onsuccess.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_onsuccess.html index 658c4a634..f9785da4a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_onsuccess.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothServiceSuccessCallback_onsuccess.html @@ -1,72 +1,76 @@ - - - - -BluetoothServiceSuccessCallback_onsuccess - - - - - -
- - - + + + + +BluetoothServiceSuccessCallback_onsuccess + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket.html index 12fbf3fd8..309ddbe99 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket.html @@ -1,247 +1,251 @@ - - - - -BluetoothSocket - - - - - -
- - - + + + + +BluetoothSocket + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketState_open_enum.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketState_open_enum.html index 4065bce17..c89fceeda 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketState_open_enum.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketState_open_enum.html @@ -1,98 +1,102 @@ - - - - -BluetoothSocketState_open_enum - - - - - -
- - - + + + + +BluetoothSocketState_open_enum + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketSuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketSuccessCallback_notexist.html index f80a5da66..7b176da82 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketSuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocketSuccessCallback_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA CBNIO test(function () { - check_no_interface_object("BluetoothSocketSuccessCallback"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothSocketSuccessCallback"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_close.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_close.html index d52036f44..b33b5a024 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_close.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_close.html @@ -1,95 +1,99 @@ - - - - -BluetoothSocket_close - - - - - -
- - - + + + + +BluetoothSocket_close + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_notexist.html index 5cfcc5a76..0af6a4c48 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_notexist.html @@ -18,7 +18,7 @@ limitations under the License. Authors: - Lukasz Bardeli +Lukasz Bardeli --> @@ -38,7 +38,9 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html //==== TEST_CRITERIA NIO test(function () { - check_no_interface_object("BluetoothSocket"); + if (BT_SUPPORT) { // check network.bluetooth for Bluetooth_tv + check_no_interface_object("BluetoothSocket"); + } }, document.title); diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onclose_callback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onclose_callback.html index 41ea9f5c0..d1f09411c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onclose_callback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onclose_callback.html @@ -1,114 +1,118 @@ - - - - -BluetoothSocket_onclose_callback - - - - - -
- - - - - - + + + + +BluetoothSocket_onclose_callback + + + + + +
+ + + + + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onmessage_callback.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onmessage_callback.html index 5b92eecf4..27391a999 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onmessage_callback.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_onmessage_callback.html @@ -1,107 +1,111 @@ - - - - -BluetoothSocket_onmessage_callback - - - - - -
- - - + + + + +BluetoothSocket_onmessage_callback + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_readData.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_readData.html index 270f33c90..73c76647d 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_readData.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_readData.html @@ -1,109 +1,113 @@ - - - - -BluetoothSocket_readData - - - - - -
- - - + + + + +BluetoothSocket_readData + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_writeData.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_writeData.html index a4d53ac08..87f66bf0b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_writeData.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothSocket_writeData.html @@ -1,94 +1,98 @@ - - - - -BluetoothSocket_writeData - - - - - -
- - - + + + + +BluetoothSocket_writeData + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/Bluetooth_discoverDevices_successCallback_invalidcb.html b/common/tct-bluetooth-tizen-tests/bluetooth/Bluetooth_discoverDevices_successCallback_invalidcb.html index a62dd5ca0..c0a80f03c 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/Bluetooth_discoverDevices_successCallback_invalidcb.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/Bluetooth_discoverDevices_successCallback_invalidcb.html @@ -1,71 +1,75 @@ - - - - -Bluetooth_discoverDevices_successCallback_invalidcb - - - - - -
- - - + + + + +Bluetooth_discoverDevices_successCallback_invalidcb + + + + + +
+ + + diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_notexist.html b/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_notexist.html index 7eb7a611d..71fe8d9ac 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_notexist.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_notexist.html @@ -1,43 +1,47 @@ - - - - -ReadValueSuccessCallback_notexist - - - - -
- - + + + + +ReadValueSuccessCallback_notexist + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_onread.html b/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_onread.html index c90749745..898595d7a 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_onread.html +++ b/common/tct-bluetooth-tizen-tests/bluetooth/ReadValueSuccessCallback_onread.html @@ -1,96 +1,96 @@ - - - - -ReadValueSuccessCallback_onread - - - - - -
- - + + + + +ReadValueSuccessCallback_onread + + + + + +
+ + \ No newline at end of file diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/support/unitcommon.js b/common/tct-bluetooth-tizen-tests/bluetooth/support/unitcommon.js index 40e77148b..20fcfe78b 100755 --- a/common/tct-bluetooth-tizen-tests/bluetooth/support/unitcommon.js +++ b/common/tct-bluetooth-tizen-tests/bluetooth/support/unitcommon.js @@ -1,586 +1,588 @@ -/* - -Copyright (c) 2013 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: - - */ - - -MIN_BYTE = -128; -MAX_BYTE = 127; -MIN_OCTET = 0; -MAX_OCTET = 255; -MIN_SHORT = -32768; -MAX_SHORT = 32767; -MIN_UNSIGNED_SHORT = 0; -MAX_UNSIGNED_SHORT = 65535; -MIN_LONG = -2147483648; -MAX_LONG = 2147483647; -MIN_UNSIGNED_LONG = 0; -MAX_UNSIGNED_LONG = 4294967295; -MIN_LONG_LONG = -9223372036854775808; -MAX_LONG_LONG = 9223372036854775807; -MIN_UNSIGNED_LONG_LONG = 0; -MAX_UNSIGNED_LONG_LONG = 18446744073709551615; - -TYPE_MISMATCH_EXCEPTION = {name: 'TypeMismatchError'}; -NOT_FOUND_EXCEPTION = {name: 'NotFoundError'}; -INVALID_VALUES_EXCEPTION = {name: 'InvalidValuesError'}; -IO_EXCEPTION = {name: 'IOError'}; -SECURITY_EXCEPTION = {name: 'SecurityError'}; - - -(function () { - var head_src = document.head.innerHTML; - if (head_src.search(/\/testharness.js\W/) === -1) { - document.write('\n'); - } - if (head_src.search(/\/testharnessreport.js\W/) === -1) { - document.write('\n'); - } -})(); - -var _registered_types = {}; - -function _resolve_registered_type(type) { - while (type in _registered_types) { - type = _registered_types[type]; - } - return type; -} - -/** - * Method checks extra argument for none argument method. - * The only check is that method will not throw an exception. - * Example usage: - * checkExtraArgument(tizen.notification, "removeAll"); - * - * @param object object - * @param methodName string - name of the method - */ -function checkExtraArgument(object, methodName) { - var extraArgument = [ - null, - undefined, - "Tizen", - 1, - false, - ["one", "two"], - {argument: 1}, - function () {} - ], i; - - for (i = 0; i < extraArgument.length; i++) { - object[methodName](extraArgument[i]); - } -} - -/** - * Method to validate conversion. - * Example usage: - * conversionTable = getTypeConversionExceptions("functionObject", true); - * for(i = 0; i < conversionTable.length; i++) { - * errorCallback = conversionTable[i][0]; - * exceptionName = conversionTable[i][1]; - * - * assert_throws({name : exceptionName}, - * function () { - * tizen.systemsetting.setProperty("HOME_SCREEN", - * propertyValue, successCallback, errorCallback); - * }, exceptionName + " should be thrown - given incorrect errorCallback."); - * } - * - * @param conversionType - * @param isOptional - * @returns table of tables which contain value (index 0) and exceptionName (index 1) - * - */ -function getTypeConversionExceptions(conversionType, isOptional, isNullable) { - var exceptionName = "TypeMismatchError", - conversionTable; - switch (conversionType) { - case "enum": - if(isNullable == true) { - conversionTable = [ - [undefined, exceptionName], - [0, exceptionName], - [true, exceptionName], - ["dummyInvalidEnumValue", exceptionName], - [{ }, exceptionName] - ]; - } else { - conversionTable = [ - [undefined, exceptionName], - [null, exceptionName], - [0, exceptionName], - [true, exceptionName], - ["dummyInvalidEnumValue", exceptionName], - [{ }, exceptionName] - ]; - } - break; - case "double": - conversionTable = [ - [undefined, exceptionName], - [NaN, exceptionName], - [Number.POSITIVE_INFINITY, exceptionName], - [Number.NEGATIVE_INFINITY, exceptionName], - ["TIZEN", exceptionName], - [{ name : "TIZEN" }, exceptionName], - [function () { }, exceptionName] - ]; - break; - case "object": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "functionObject": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [[], exceptionName], - [{ }, exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "array": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [{ }, exceptionName], - [function () { }, exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "dictionary": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [undefined, exceptionName] - ]; - break; - /* Add by SRC_Xian strat */ - - case "boolean": - conversionTable = [ - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [undefined, exceptionName] - ]; - - /* Add by SRC_Xian end */ - - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - default: - assert_unreached("Fix your test. Wrong conversionType '" + conversionType + "'."); - }; - - return conversionTable; -} - - -function assert_type(obj, type, description) { - var org_type = type, prop_name, prop_type, prop_value; - - type = _resolve_registered_type(type); - - if (typeof (type) === 'string') { - type = type.toLowerCase(); - switch (type) { - case 'object': - case 'string': - case 'number': - case 'function': - case 'boolean': - case 'undefined': - case 'xml': - assert_equals(typeof (obj), type, description); - break; - case 'null': - assert_true(obj === null, description); - break; - case 'array': - assert_true(Array.isArray(obj), description); - break; - case 'date': - assert_true(obj instanceof Date, description); - break; - case 'byte': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_BYTE, description + " - value too low."); - assert_less_than_equal(obj, MAX_BYTE, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'octet': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_OCTET, description + " - value too low."); - assert_less_than_equal(obj, MAX_OCTET, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'short': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_SHORT, description + " - value too low."); - assert_less_than_equal(obj, MAX_SHORT, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned short': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_SHORT, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_SHORT, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_LONG, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_LONG, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'long long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_LONG_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_LONG_LONG, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned long long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_LONG_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_LONG_LONG, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'double': - assert_equals(typeof (obj), 'number', description); - break; - default: - assert_unreached('Fix your test. Wrong type \'' + org_type + '\''); - } - } else if (typeof (type) === 'function') { - assert_true(obj instanceof type, description); - } else if (typeof (type) === 'object') { - for (prop_name in type) { - prop_type = type[prop_name]; - if (prop_type === 'function') { - assert_inherits(obj, prop_name); - assert_equals(typeof obj[prop_name], prop_type, 'Object should have method ' + prop_name); - } else { - assert_own_property(obj, prop_name); - } - } - } else { - assert_unreached('Fix your test. Wrong type ' + org_type); - } -} - -function register_type(alias, type_spec) { - _registered_types[alias] = type_spec; -} - -/** - * Method to check if attribute is const. - * Example usage: - * check_const(tizen.bluetooth.deviceMinor, 'TOY_DOLL', 0x03, 'number', 0x29B); - * - * @param obj object to test which has const attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_const(obj, attributeName, expectedValue, expectedType, valueToAssign) { - var tmp; - if (expectedValue === valueToAssign) { - assert_unreached("Fix your test. The same values given for " + attributeName + - " in 'value' and 'valueToSet' arguments."); - } - if (typeof (attributeName) === "string") { - assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); - assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); - if (typeof (expectedType) !== "undefined") { - if (expectedValue === null) { - assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); - } else { - assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); - } - } else { - assert_unreached("Fix your test. Wrong type " + expectedType); - } - tmp = obj[attributeName]; - obj[attributeName] = valueToAssign; - assert_equals(obj[attributeName], tmp, attributeName + " can be modified."); - } else { - assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); - } -} - -/** - * Method to check if attribute is readonly. - * Example usage: - * check_readonly(statusNotification, "postedTime", null, 'object', new Date()); - * - * @param obj object to test which has readonly attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_readonly(obj, attributeName, expectedValue, expectedType, valueToAssign) { - check_const(obj, attributeName, expectedValue, expectedType, valueToAssign); -} - -/** - * Method to check if attribute can be set to null. - * Example usage: - * check_not_nullable(syncInfo, "mode"); - * - * @param obj object to test which has not nullable attribute - * @param attributeName attribute name. - */ -function check_not_nullable(obj, attributeName) -{ var old_value = obj[attributeName]; - obj[attributeName] = null; - assert_not_equals(obj[attributeName], null, "Attribute " + attributeName + " can be set to null."); - obj[attributeName] = old_value; -} - -/** - * Method to check NoInterfaceObject - * Example usage: - * check_no_interface_object("BluetoothAdapter") - * - * @param interfaceName interface name - */ -function check_no_interface_object(interfaceName) { - assert_throws({name: "TypeError"}, function () { - tizen[interfaceName](); - },"Wrong call as a function"); - assert_throws({name: "TypeError"}, function () { - new tizen[interfaceName](); - },"Wrong call as a new function"); - assert_throws({name: "TypeError"}, function () { - ({}) instanceof tizen[interfaceName]; - },"instanceof exception"); - assert_equals(tizen[interfaceName], undefined, interfaceName + " is not undefined."); -} - - -/** - * Method to check Constructors - * Example usage: - * check_constructor("BluetoothAdapter") - * - * @param constructorName constructor name - */ - -function check_constructor(constructorName) { - assert_true(constructorName in tizen, "No " + constructorName + " in tizen."); - assert_false({} instanceof tizen[constructorName],"Custom object is not instance of " + constructorName); - assert_throws({ - name: "TypeError" - }, function () { - tizen[constructorName](); - }, "Constructor called as function."); -} - -/** - * Method to check if given method can be overridden in a given object - (TEMPORARY REMOVED). - * That method also checks if given method exists in a given object. - * Example usage: - * check_method_exists(tizen.notification, "get"); - * - * @param obj object with method - * @param methodName name of the method to check. - */ -function check_method_exists(obj, methodName) { - assert_type(obj[methodName], 'function', "Method does not exist."); -} - -/** - * Method to check extensibility of given object. - * Method checks if new attribute and method can be added. - * Example usage: - * check_extensibility(tizen.notification); - * - * @param obj object to check - */ -function check_extensibility(obj) { - var dummyAttribute = "dummyAttributeValue", dummyMethodResult = "dummyMethodResultValue"; - obj.newDummyMethod = function() { - return dummyMethodResult; - } - assert_equals(obj.newDummyMethod(), dummyMethodResult, "Incorrect result from added method."); - - obj.newDummyAttribute = dummyAttribute; - assert_equals(obj.newDummyAttribute, dummyAttribute, "Incorrect result from added attribute."); -} - -/** - * Method to check if attribute can be modify. - * Example usage: - * check_attr(downloadRequest, "fileName", default_val, "string", "file_name.html"); - * - * @param obj object to test which has not readonly attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_attribute(obj, attributeName, expectedValue, expectedType, valueToAssign) { - if (expectedValue === valueToAssign) { - assert_unreached("Fix your test. The same values given for " + attributeName + - " in 'value' and 'valueToSet' arguments."); - } - if (typeof (attributeName) === "string") { - assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); - assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); - if (typeof (expectedType) !== "undefined") { - if (expectedValue === null) { - assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); - } else { - assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); - } - } else { - assert_unreached("Fix your test. Wrong type " + expectedType); - } - obj[attributeName] = valueToAssign; - assert_equals(obj[attributeName], valueToAssign, attributeName + " can be modified."); - } else { - assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); - } -} - -/** - * Method to check if whole array can be overwritten with an invalid value. - * Sample usage: - * check_invalid_array_assignments(message, "to", false); - * - * @param obj object which has the array as its property - * @param array name of the array to check - * @param isNullable indicates if the array can be null - */ -function check_invalid_array_assignments(obj, array, isNullable) { - var args = [undefined, true, false, NaN, 0, "TIZEN", {}, function () {}], - val = obj[array], i; - - if (!isNullable) { - obj[array] = null; - assert_not_equals(obj[array], null, "Non-nullable array was set to null"); - assert_type(obj[array], "array", "Non-nullable array type changed after assigning null"); - assert_equals(obj[array].toString(), val.toString(), "Non-nullable array contents changed after assigning null"); - } - - for (i = 0 ; i < args.length ; i++) { - obj[array] = args[i]; - assert_type(obj[array], "array", "Array type changed after assigning an invalid value"); - assert_equals(obj[array].toString(), val.toString(), "Array contents changed after assigning an invalid value"); - } -} - -/** - * Method to check if an object can be overwritten with an invalid value. - * Sample usage: - * check_invalid_object_assignments(message, "body", false); - * - * @param parentObj object which has the 'obj' object as its property - * @param obj name of the object to check - * @param isNullable indicates if the object can be null - */ -function check_invalid_obj_assignments(parentObj, obj, isNullable) { - var args = [undefined, true, false, NaN, 0, "TIZEN", function () {}], - val = parentObj[obj], i; - - if (!isNullable) { - parentObj[obj] = null; - assert_equals(parentObj[obj], val, "Non-nullable obj was modified after assigning null"); - } - - for (i = 0 ; i < args.length ; i++) { - parentObj[obj] = args[i]; - assert_equals(parentObj[obj], val, "The object was set to " + args[i]); - } -} - -/** - * Method to validate conversion for listeners. - * Example usage: - * incorrectListeners = getListenerConversionExceptions(["oninstalled", "onupdated", "onuninstalled"]); - * for(i = 0; i < incorrectListeners.length; i++) { - * packageInformationEventCallback = incorrectListeners[i][0]; - * exceptionName = incorrectListeners[i][1]; - * assert_throws({name : exceptionName}, - * function () { - * tizen.package.setPackageInfoEventListener(packageInformationEventCallback); - * }, exceptionName + " should be thrown - given incorrect successCallback."); - * } - * - * - * @param callbackNames Array with names - * @returns {Array} table of tables which contain incorrect listener (index 0) and exceptionName (index 1) - * - */ -function getListenerConversionExceptions(callbackNames) { - var result = [], conversionTable, i, j, listenerName; - conversionTable = getTypeConversionExceptions("functionObject", false); - - for (i = 0; i < callbackNames.length; i++) { - for (j = 0; j < conversionTable.length; j++) { - listenerName = {}; - listenerName[callbackNames[i]] = conversionTable[j][0]; - result.push([listenerName, conversionTable[j][1]]); - } - } - - return result; -} +/* + +Copyright (c) 2013 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: + + */ + + +MIN_BYTE = -128; +MAX_BYTE = 127; +MIN_OCTET = 0; +MAX_OCTET = 255; +MIN_SHORT = -32768; +MAX_SHORT = 32767; +MIN_UNSIGNED_SHORT = 0; +MAX_UNSIGNED_SHORT = 65535; +MIN_LONG = -2147483648; +MAX_LONG = 2147483647; +MIN_UNSIGNED_LONG = 0; +MAX_UNSIGNED_LONG = 4294967295; +MIN_LONG_LONG = -9223372036854775808; +MAX_LONG_LONG = 9223372036854775807; +MIN_UNSIGNED_LONG_LONG = 0; +MAX_UNSIGNED_LONG_LONG = 18446744073709551615; + +TYPE_MISMATCH_EXCEPTION = {name: 'TypeMismatchError'}; +NOT_FOUND_EXCEPTION = {name: 'NotFoundError'}; +INVALID_VALUES_EXCEPTION = {name: 'InvalidValuesError'}; +IO_EXCEPTION = {name: 'IOError'}; +SECURITY_EXCEPTION = {name: 'SecurityError'}; +BT_SUPPORT = webapis.featureconfig.getFeatureConfigBool("com.samsung/featureconf/bluetooth.support"); +LE_SUPPORT = webapis.featureconfig.getFeatureConfigBool("com.samsung/featureconf/bluetooth_le_supported"); +LE_GATT_SUPPORT = webapis.featureconfig.getFeatureConfigBool("com.samsung/featureconf/bluetooth_le_gatt_client_supported"); + +(function () { + var head_src = document.head.innerHTML; + if (head_src.search(/\/testharness.js\W/) === -1) { + document.write('\n'); + } + if (head_src.search(/\/testharnessreport.js\W/) === -1) { + document.write('\n'); + } +})(); + +var _registered_types = {}; + +function _resolve_registered_type(type) { + while (type in _registered_types) { + type = _registered_types[type]; + } + return type; +} + +/** + * Method checks extra argument for none argument method. + * The only check is that method will not throw an exception. + * Example usage: + * checkExtraArgument(tizen.notification, "removeAll"); + * + * @param object object + * @param methodName string - name of the method + */ +function checkExtraArgument(object, methodName) { + var extraArgument = [ + null, + undefined, + "Tizen", + 1, + false, + ["one", "two"], + {argument: 1}, + function () {} + ], i; + + for (i = 0; i < extraArgument.length; i++) { + object[methodName](extraArgument[i]); + } +} + +/** + * Method to validate conversion. + * Example usage: + * conversionTable = getTypeConversionExceptions("functionObject", true); + * for(i = 0; i < conversionTable.length; i++) { + * errorCallback = conversionTable[i][0]; + * exceptionName = conversionTable[i][1]; + * + * assert_throws({name : exceptionName}, + * function () { + * tizen.systemsetting.setProperty("HOME_SCREEN", + * propertyValue, successCallback, errorCallback); + * }, exceptionName + " should be thrown - given incorrect errorCallback."); + * } + * + * @param conversionType + * @param isOptional + * @returns table of tables which contain value (index 0) and exceptionName (index 1) + * + */ +function getTypeConversionExceptions(conversionType, isOptional, isNullable) { + var exceptionName = "TypeMismatchError", + conversionTable; + switch (conversionType) { + case "enum": + if(isNullable == true) { + conversionTable = [ + [undefined, exceptionName], + [0, exceptionName], + [true, exceptionName], + ["dummyInvalidEnumValue", exceptionName], + [{ }, exceptionName] + ]; + } else { + conversionTable = [ + [undefined, exceptionName], + [null, exceptionName], + [0, exceptionName], + [true, exceptionName], + ["dummyInvalidEnumValue", exceptionName], + [{ }, exceptionName] + ]; + } + break; + case "double": + conversionTable = [ + [undefined, exceptionName], + [NaN, exceptionName], + [Number.POSITIVE_INFINITY, exceptionName], + [Number.NEGATIVE_INFINITY, exceptionName], + ["TIZEN", exceptionName], + [{ name : "TIZEN" }, exceptionName], + [function () { }, exceptionName] + ]; + break; + case "object": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "functionObject": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [[], exceptionName], + [{ }, exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "array": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [{ }, exceptionName], + [function () { }, exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "dictionary": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [undefined, exceptionName] + ]; + break; + /* Add by SRC_Xian strat */ + + case "boolean": + conversionTable = [ + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [undefined, exceptionName] + ]; + + /* Add by SRC_Xian end */ + + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + default: + assert_unreached("Fix your test. Wrong conversionType '" + conversionType + "'."); + }; + + return conversionTable; +} + + +function assert_type(obj, type, description) { + var org_type = type, prop_name, prop_type, prop_value; + + type = _resolve_registered_type(type); + + if (typeof (type) === 'string') { + type = type.toLowerCase(); + switch (type) { + case 'object': + case 'string': + case 'number': + case 'function': + case 'boolean': + case 'undefined': + case 'xml': + assert_equals(typeof (obj), type, description); + break; + case 'null': + assert_true(obj === null, description); + break; + case 'array': + assert_true(Array.isArray(obj), description); + break; + case 'date': + assert_true(obj instanceof Date, description); + break; + case 'byte': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_BYTE, description + " - value too low."); + assert_less_than_equal(obj, MAX_BYTE, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'octet': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_OCTET, description + " - value too low."); + assert_less_than_equal(obj, MAX_OCTET, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'short': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_SHORT, description + " - value too low."); + assert_less_than_equal(obj, MAX_SHORT, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned short': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_SHORT, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_SHORT, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_LONG, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_LONG, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'long long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_LONG_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_LONG_LONG, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned long long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_LONG_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_LONG_LONG, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'double': + assert_equals(typeof (obj), 'number', description); + break; + default: + assert_unreached('Fix your test. Wrong type \'' + org_type + '\''); + } + } else if (typeof (type) === 'function') { + assert_true(obj instanceof type, description); + } else if (typeof (type) === 'object') { + for (prop_name in type) { + prop_type = type[prop_name]; + if (prop_type === 'function') { + assert_inherits(obj, prop_name); + assert_equals(typeof obj[prop_name], prop_type, 'Object should have method ' + prop_name); + } else { + assert_own_property(obj, prop_name); + } + } + } else { + assert_unreached('Fix your test. Wrong type ' + org_type); + } +} + +function register_type(alias, type_spec) { + _registered_types[alias] = type_spec; +} + +/** + * Method to check if attribute is const. + * Example usage: + * check_const(tizen.bluetooth.deviceMinor, 'TOY_DOLL', 0x03, 'number', 0x29B); + * + * @param obj object to test which has const attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_const(obj, attributeName, expectedValue, expectedType, valueToAssign) { + var tmp; + if (expectedValue === valueToAssign) { + assert_unreached("Fix your test. The same values given for " + attributeName + + " in 'value' and 'valueToSet' arguments."); + } + if (typeof (attributeName) === "string") { + assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); + assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); + if (typeof (expectedType) !== "undefined") { + if (expectedValue === null) { + assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); + } else { + assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); + } + } else { + assert_unreached("Fix your test. Wrong type " + expectedType); + } + tmp = obj[attributeName]; + obj[attributeName] = valueToAssign; + assert_equals(obj[attributeName], tmp, attributeName + " can be modified."); + } else { + assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); + } +} + +/** + * Method to check if attribute is readonly. + * Example usage: + * check_readonly(statusNotification, "postedTime", null, 'object', new Date()); + * + * @param obj object to test which has readonly attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_readonly(obj, attributeName, expectedValue, expectedType, valueToAssign) { + check_const(obj, attributeName, expectedValue, expectedType, valueToAssign); +} + +/** + * Method to check if attribute can be set to null. + * Example usage: + * check_not_nullable(syncInfo, "mode"); + * + * @param obj object to test which has not nullable attribute + * @param attributeName attribute name. + */ +function check_not_nullable(obj, attributeName) +{ var old_value = obj[attributeName]; + obj[attributeName] = null; + assert_not_equals(obj[attributeName], null, "Attribute " + attributeName + " can be set to null."); + obj[attributeName] = old_value; +} + +/** + * Method to check NoInterfaceObject + * Example usage: + * check_no_interface_object("BluetoothAdapter") + * + * @param interfaceName interface name + */ +function check_no_interface_object(interfaceName) { + assert_throws({name: "TypeError"}, function () { + tizen[interfaceName](); + },"Wrong call as a function"); + assert_throws({name: "TypeError"}, function () { + new tizen[interfaceName](); + },"Wrong call as a new function"); + assert_throws({name: "TypeError"}, function () { + ({}) instanceof tizen[interfaceName]; + },"instanceof exception"); + assert_equals(tizen[interfaceName], undefined, interfaceName + " is not undefined."); +} + + +/** + * Method to check Constructors + * Example usage: + * check_constructor("BluetoothAdapter") + * + * @param constructorName constructor name + */ + +function check_constructor(constructorName) { + assert_true(constructorName in tizen, "No " + constructorName + " in tizen."); + assert_false({} instanceof tizen[constructorName],"Custom object is not instance of " + constructorName); + assert_throws({ + name: "TypeError" + }, function () { + tizen[constructorName](); + }, "Constructor called as function."); +} + +/** + * Method to check if given method can be overridden in a given object - (TEMPORARY REMOVED). + * That method also checks if given method exists in a given object. + * Example usage: + * check_method_exists(tizen.notification, "get"); + * + * @param obj object with method + * @param methodName name of the method to check. + */ +function check_method_exists(obj, methodName) { + assert_type(obj[methodName], 'function', "Method does not exist."); +} + +/** + * Method to check extensibility of given object. + * Method checks if new attribute and method can be added. + * Example usage: + * check_extensibility(tizen.notification); + * + * @param obj object to check + */ +function check_extensibility(obj) { + var dummyAttribute = "dummyAttributeValue", dummyMethodResult = "dummyMethodResultValue"; + obj.newDummyMethod = function() { + return dummyMethodResult; + } + assert_equals(obj.newDummyMethod(), dummyMethodResult, "Incorrect result from added method."); + + obj.newDummyAttribute = dummyAttribute; + assert_equals(obj.newDummyAttribute, dummyAttribute, "Incorrect result from added attribute."); +} + +/** + * Method to check if attribute can be modify. + * Example usage: + * check_attr(downloadRequest, "fileName", default_val, "string", "file_name.html"); + * + * @param obj object to test which has not readonly attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_attribute(obj, attributeName, expectedValue, expectedType, valueToAssign) { + if (expectedValue === valueToAssign) { + assert_unreached("Fix your test. The same values given for " + attributeName + + " in 'value' and 'valueToSet' arguments."); + } + if (typeof (attributeName) === "string") { + assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); + assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); + if (typeof (expectedType) !== "undefined") { + if (expectedValue === null) { + assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); + } else { + assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); + } + } else { + assert_unreached("Fix your test. Wrong type " + expectedType); + } + obj[attributeName] = valueToAssign; + assert_equals(obj[attributeName], valueToAssign, attributeName + " can be modified."); + } else { + assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); + } +} + +/** + * Method to check if whole array can be overwritten with an invalid value. + * Sample usage: + * check_invalid_array_assignments(message, "to", false); + * + * @param obj object which has the array as its property + * @param array name of the array to check + * @param isNullable indicates if the array can be null + */ +function check_invalid_array_assignments(obj, array, isNullable) { + var args = [undefined, true, false, NaN, 0, "TIZEN", {}, function () {}], + val = obj[array], i; + + if (!isNullable) { + obj[array] = null; + assert_not_equals(obj[array], null, "Non-nullable array was set to null"); + assert_type(obj[array], "array", "Non-nullable array type changed after assigning null"); + assert_equals(obj[array].toString(), val.toString(), "Non-nullable array contents changed after assigning null"); + } + + for (i = 0 ; i < args.length ; i++) { + obj[array] = args[i]; + assert_type(obj[array], "array", "Array type changed after assigning an invalid value"); + assert_equals(obj[array].toString(), val.toString(), "Array contents changed after assigning an invalid value"); + } +} + +/** + * Method to check if an object can be overwritten with an invalid value. + * Sample usage: + * check_invalid_object_assignments(message, "body", false); + * + * @param parentObj object which has the 'obj' object as its property + * @param obj name of the object to check + * @param isNullable indicates if the object can be null + */ +function check_invalid_obj_assignments(parentObj, obj, isNullable) { + var args = [undefined, true, false, NaN, 0, "TIZEN", function () {}], + val = parentObj[obj], i; + + if (!isNullable) { + parentObj[obj] = null; + assert_equals(parentObj[obj], val, "Non-nullable obj was modified after assigning null"); + } + + for (i = 0 ; i < args.length ; i++) { + parentObj[obj] = args[i]; + assert_equals(parentObj[obj], val, "The object was set to " + args[i]); + } +} + +/** + * Method to validate conversion for listeners. + * Example usage: + * incorrectListeners = getListenerConversionExceptions(["oninstalled", "onupdated", "onuninstalled"]); + * for(i = 0; i < incorrectListeners.length; i++) { + * packageInformationEventCallback = incorrectListeners[i][0]; + * exceptionName = incorrectListeners[i][1]; + * assert_throws({name : exceptionName}, + * function () { + * tizen.package.setPackageInfoEventListener(packageInformationEventCallback); + * }, exceptionName + " should be thrown - given incorrect successCallback."); + * } + * + * + * @param callbackNames Array with names + * @returns {Array} table of tables which contain incorrect listener (index 0) and exceptionName (index 1) + * + */ +function getListenerConversionExceptions(callbackNames) { + var result = [], conversionTable, i, j, listenerName; + conversionTable = getTypeConversionExceptions("functionObject", false); + + for (i = 0; i < callbackNames.length; i++) { + for (j = 0; j < conversionTable.length; j++) { + listenerName = {}; + listenerName[callbackNames[i]] = conversionTable[j][0]; + result.push([listenerName, conversionTable[j][1]]); + } + } + + return result; +} diff --git a/common/tct-bluetooth-tizen-tests/tests.full.xml b/common/tct-bluetooth-tizen-tests/tests.full.xml index 26f1c7073..41263829a 100755 --- a/common/tct-bluetooth-tizen-tests/tests.full.xml +++ b/common/tct-bluetooth-tizen-tests/tests.full.xml @@ -8152,7 +8152,7 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - + @@ -9645,7 +9645,7 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - + @@ -11614,8 +11614,8 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - - + @@ -16246,11 +16246,11 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from - + The bluetooth of the BLE remote/test device MUST support BLE and be turned on and discoverable from other devices. diff --git a/common/tct-bluetooth-tizen-tests/tests.xml b/common/tct-bluetooth-tizen-tests/tests.xml index 3ac05c2e3..c5912051a 100755 --- a/common/tct-bluetooth-tizen-tests/tests.xml +++ b/common/tct-bluetooth-tizen-tests/tests.xml @@ -3767,7 +3767,7 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - + @@ -4418,7 +4418,7 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - + @@ -5247,8 +5247,8 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from TV - - + @@ -7232,11 +7232,11 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from - + The bluetooth of the BLE remote/test device MUST support BLE and be turned on and discoverable from other devices.