limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_addMessagePortListener</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_addMessagePortListener
//==== LABEL Check if method addMessagePortListener works properly
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:addMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MAST MR
var t = async_test("LocalMessagePort_addMessagePortListener");
t.step(function () {
var remoteMsgPort, localMsgPort, onReceived, listenerId,
- messagePortData = [{key:"RESULT", value:"OK"}],
+ messagePortData = [{key: "RESULT", value: "OK"}],
app = tizen.application.getCurrentApplication();
onReceived = t.step_func(function (data) {
- assert_type(data, "array", "MessagePortDataItem should be an array.");
+ assert_type(data, "array", "MessagePortDataItem should be an array");
assert_equals(data.length, 1, "There should be MessagePortDataItem");
assert_array_equals(data[0], messagePortData[0],
- "Received data should be equal to init data.");
+ "Received data should be equal to init data");
assert_not_equals(listenerId, null, "id should be not null");
- assert_type(listenerId, "long", "id of MessagePortListener should be type of number.");
+ assert_type(listenerId, "long", "id of MessagePortListener should be type of number");
localMsgPort.removeMessagePortListener(listenerId);
t.done();
});
remoteMsgPort.sendMessage(messagePortData);
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_addMessagePortListener_exist</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_addMessagePortListener_exist
//==== LABEL Check if method addMessagePortListener of LocalMessagePort exists
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:addMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
- var localMsgPort;
-
- localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
+ var localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
assert_true("addMessagePortListener" in localMsgPort, "No addMessagePortListener method in localMsgPort");
check_method_exists(localMsgPort, "addMessagePortListener");
}, "LocalMessagePort_addMessagePortListener_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_addMessagePortListener_listener_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL Check argument listener conversions exception
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:addMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MC
test(function () {
var localMsgPort, conversionTable, param, exceptionName, i;
assert_throws({name : exceptionName},
function () {
localMsgPort.addMessagePortListener(param);
- }, exceptionName + " should be thrown - given incorrect.");
+ }, exceptionName + " should be thrown - given incorrect");
}
}, "LocalMessagePort_addMessagePortListener_listener_TypeMismatch");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_addMessagePortListener_listener_invalid_cb</title>
<meta charset="utf-8"/>
//==== LABEL Check if addMessagePortListener throws exception with invalid callback
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:addMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MTCB
var t = async_test("LocalMessagePort_addMessagePortListener_listener_invalid_cb");
incorrectCallback = {
onreceived: t.step_func(function () {
- assert_unreached("Invalid errorCallback invoked");
+ assert_unreached("Invalid callback invoked");
})
};
t.done();
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_addMessagePortListener_missarg</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_addMessagePortListener_missarg
//==== LABEL Check if addMessagePortListener method called with no arguments throws exception
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:addMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMA
test(function () {
var localMsgPort;
}, "TypeMismatchError should be thrown");
}, "LocalMessagePort_addMessagePortListener_missarg");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_extend</title>
<meta charset="utf-8"/>
<script>
//==== TEST: LocalMessagePort_extend
//==== PRIORITY P3
-//==== LABEL Check if instance of interface LocalMessagePort_extend can be extended with new property
+//==== LABEL Check if instance of interface LocalMessagePort can be extended with new property
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:LocalMessagePort U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA OBX
test(function () {
- var localMsgPort;
-
- localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
+ var localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
check_extensibility(localMsgPort);
}, "LocalMessagePort_extend");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_isTrusted_attribute</title>
<meta charset="utf-8"/>
<div id="log"></div>
<script type="text/javascript">
//==== TEST: LocalMessagePort_isTrusted_attribute
-//==== LABEL Check if attribute isTrusted of LocalMessagePort exists, has type Boolean and is readonly
+//==== LABEL Check if attribute isTrusted of LocalMessagePort exists, has type boolean and is readonly
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:isTrusted A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
- var localMsgPort;
-
- localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
- assert_own_property(localMsgPort, "isTrusted", "LocalMessagePort does not own isTrusted property.");
+ var localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
+ assert_own_property(localMsgPort, "isTrusted", "LocalMessagePort does not own isTrusted property");
check_readonly(localMsgPort, "isTrusted", false, "boolean", true);
}, "LocalMessagePort_isTrusted_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_messagePortName_attribute</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_messagePortName_attribute
//==== LABEL Check if attribute messagePortName of LocalMessagePort exists, has type DOMString and is readonly
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:messagePortName A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
var localMsgPort;
localMsgPort = tizen.messageport.requestLocalMessagePort("localMsgPort");
- assert_own_property(localMsgPort, "messagePortName", "LocalMessagePort does not own messagePortName property.");
+ assert_own_property(localMsgPort, "messagePortName", "LocalMessagePort does not own messagePortName property");
check_readonly(localMsgPort, "messagePortName", "localMsgPort", "string", "invalid");
}, "LocalMessagePort_messagePortName_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski <a.krolikowsk@samsung.com>
+ Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface LocalMessagePort exists, it should not.
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:LocalMessagePort U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA NIO
test(function () {
check_no_interface_object("LocalMessagePort");
}, "LocalMessagePort_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_removeMessagePortListener</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_removeMessagePortListener
//==== LABEL Check if method removeMessagePortListener works properly
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:removeMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MAST MR
var t = async_test("LocalMessagePort_removeMessagePortListener"), localMsgPort, remoteMsgPort, listenerId, onReceived,
- app = tizen.application.getCurrentApplication(), messagePortData = [{key:"RESULT", value:"OK"}], retValue = null;
+ app = tizen.application.getCurrentApplication(), messagePortData = [{key: "RESULT", value: "OK"}],
+ retValue = null;
t.step(function () {
localMsgPort = tizen.messageport.requestLocalMessagePort("remoteMsgPort");
onReceived = t.step_func(function (data) {
- assert_unreached("Callback should be unregistered.");
+ assert_unreached("Callback should be unregistered");
});
listenerId = localMsgPort.addMessagePortListener(onReceived);
retValue = localMsgPort.removeMessagePortListener(listenerId);
t.done();
}), 500);
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>LocalMessagePort_removeMessagePortListener_exist</title>
<meta charset="utf-8"/>
//==== TEST: LocalMessagePort_removeMessagePortListener_exist
//==== LABEL Check if method removeMessagePortListener of LocalMessagePort exists
//==== SPEC Tizen Web API:IO:Messageport:LocalMessagePort:removeMessagePortListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
var localMsgPort;
assert_true("removeMessagePortListener" in localMsgPort, "No removeMessagePortListener method in localMsgPort");
check_method_exists(localMsgPort, "removeMessagePortListener");
}, "LocalMessagePort_removeMessagePortListener_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski <a.krolikowsk@samsung.com>
+ Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortCallback_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface MessagePortCallback exists, it should not.
//==== SPEC Tizen Web API:IO:Messageport:MessagePortCallback:MessagePortCallback U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA CBNIO
test(function () {
check_no_interface_object("MessagePortCallback");
}, "MessagePortCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortCallback_onreceived</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortCallback_onreceived
//==== LABEL Check if MessagePortCallback works correctly with mandatory arguments
//==== SPEC Tizen Web API:IO:Messageport:MessagePortCallback:onreceived M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA CBT CBOA
var t = async_test("MessagePortCallback_onreceived");
t.step(function () {
var remoteMsgPort, localMsgPort, onReceived, listenerId,
- messagePortData = [{key:"RESULT",value:"OK"}],
+ messagePortData = [{key: "RESULT", value: "OK"}],
app = tizen.application.getCurrentApplication();
onReceived = t.step_func(function (data) {
- assert_type(data, "array", "Argument data has an invalid type.");
- assert_true(data.length > 0, "Callback onReceived called with an empty array.");
- assert_type(data[0], "object", "MessagePortDataItem has an invalid type.");
+ assert_type(data, "array", "Argument data has an invalid type");
+ assert_greater_than(data.length, 0, "Callback onReceived called with an empty array");
+ assert_type(data[0], "object", "MessagePortDataItem has an invalid type");
- assert_equals(data[0].key, messagePortData[0].key, "received data should be the same");
- assert_equals(data[0].value, messagePortData[0].value, "received data should be the same");
+ assert_equals(data[0].key, messagePortData[0].key, "Received data should be the same");
+ assert_equals(data[0].value, messagePortData[0].value, "Received data should be the same");
localMsgPort.removeMessagePortListener(listenerId);
t.done();
remoteMsgPort.sendMessage(messagePortData);
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortCallback_onreceived_all</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortCallback_onreceived_all
//==== LABEL Check if MessagePortCallback works correctly with all arguments
//==== SPEC Tizen Web API:IO:Messageport:MessagePortCallback:onreceived M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA CBOA
var t = async_test("MessagePortCallback_onreceived_all");
t.step(function () {
var remoteMsgPort, localMsgPort, onReceived, listenerId,
- messagePortData = [{key:"RESULT",value:"OK"}],
+ messagePortData = [{key: "RESULT", value: "OK"}],
app = tizen.application.getCurrentApplication();
onReceived = t.step_func(function (data, remoteMessagePort) {
- assert_equals(data.key, messagePortData.key, "received data should be the same");
- assert_equals(data.value, messagePortData.value, "received data should be the same");
+ assert_equals(data.key, messagePortData.key, "Received data should be the same");
+ assert_equals(data.value, messagePortData.value, "Received data should be the same");
assert_not_equals(remoteMessagePort, null, "remoteMessagePort should be not null}");
localMsgPort.removeMessagePortListener(listenerId);
t.done();
remoteMsgPort.sendMessage(messagePortData, localMsgPort);
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski <a.krolikowsk@samsung.com>
+ Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManagerObject_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface MessagePortManagerObject exists, it should not.
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManagerObject:MessagePortManagerObject U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA NIO
test(function () {
check_no_interface_object("MessagePortManagerObject");
}, "MessagePortManagerObject_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_extend</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if instance of interface MessagePortManager can be extended with new property
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:MessagePortManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA OBX
test(function () {
check_extensibility(tizen.messageport);
}, "MessagePortManager_extend");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_in_tizen</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_in_tizen
//==== LABEL Check if messageport exists in tizen.
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:MessagePortManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA OBME
//==== PRIORITY P3
-test(function() {
- assert_true("messageport" in tizen, "No messageport in tizen.");
+test(function () {
+ assert_true("messageport" in tizen, "No messageport in tizen");
check_readonly(tizen, "messageport", tizen.messageport, "object", "dummyValue");
}, "MessagePortManager_in_tizen");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski <a.krolikowsk@samsung.com>
+ Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface MessagePortManager exists, it should not.
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:MessagePortManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA NIO
test(function () {
check_no_interface_object("MessagePortManager");
}, "MessagePortManager_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestLocalMessagePort</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestLocalMessagePort
//==== LABEL Check if method requestLocalMessagePort works properly
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestLocalMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MR
test(function () {
var localMsgPort;
assert_equals(localMsgPort.messagePortName, "localMsgPort", "localMsgPort should have proper name");
assert_equals(localMsgPort.isTrusted, false, "isTrusted property should be false");
}, "MessagePortManager_requestLocalMessagePort");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestLocalMessagePort_exist</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestLocalMessagePort_exist
//==== LABEL Check if method requestLocalMessagePort of MessagePortManager exists
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestLocalMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
assert_true("requestLocalMessagePort" in tizen.messageport, "No requestLocalMessagePort method in tizen.messageport");
check_method_exists(tizen.messageport, "requestLocalMessagePort");
}, "MessagePortManager_requestLocalMessagePort_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestRemoteMessagePort</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestRemoteMessagePort
//==== LABEL Check if method requestRemoteMessagePort works properly
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestRemoteMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MR
test(function () {
var remoteMsgPort, localMsgPort,
assert_equals(remoteMsgPort.appId, app.appInfo.id, "ids should be equal");
assert_equals(remoteMsgPort.isTrusted, false, "isTrusted property should be false");
}, "MessagePortManager_requestRemoteMessagePort");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestRemoteMessagePort_exist</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestRemoteMessagePort_exist
//==== LABEL Check if method requestRemoteMessagePort of MessagePortManager exists
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestRemoteMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
assert_true("requestRemoteMessagePort" in tizen.messageport, "No requestRemoteMessagePort method in tizen.messageport");
check_method_exists(tizen.messageport, "requestRemoteMessagePort");
}, "MessagePortManager_requestRemoteMessagePort_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestTrustedLocalMessagePort</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestTrustedLocalMessagePort
//==== LABEL Check if method requestTrustedLocalMessagePort works properly
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestTrustedLocalMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MR
test(function () {
var trustedLocalMsgPort;
assert_equals(trustedLocalMsgPort.messagePortName, "trustedLocalMsgPort", "trustedLocalMsgPort should have proper name");
assert_equals(trustedLocalMsgPort.isTrusted, true, "trustedLocalMsgPort should be trusted");
}, "MessagePortManager_requestTrustedLocalMessagePort");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestTrustedLocalMessagePort_exist</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestTrustedLocalMessagePort_exist
//==== LABEL Check if method requestTrustedLocalMessagePort of MessagePortManager exists
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestTrustedLocalMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
assert_true("requestTrustedLocalMessagePort" in tizen.messageport, "No requestTrustedLocalMessagePort method in tizen.messageport");
check_method_exists(tizen.messageport, "requestTrustedLocalMessagePort");
}, "MessagePortManager_requestTrustedLocalMessagePort_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestTrustedRemoteMessagePort</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestTrustedRemoteMessagePort
//==== LABEL Check if method requestTrustedRemoteMessagePort works properly
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestTrustedRemoteMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MR
test(function () {
var trustedRemoteMsgPort, localMsgPort,
assert_equals(trustedRemoteMsgPort.appId, app.appInfo.id, "ids should be equal");
assert_equals(trustedRemoteMsgPort.isTrusted, true, "trustedRemoteMsgPort should be trusted");
}, "MessagePortManager_requestTrustedRemoteMessagePort");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Grzegorz Sala <g.sala2@samsung.com>
+ Grzegorz Sala <g.sala2@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>MessagePortManager_requestTrustedRemoteMessagePort_exist</title>
<meta charset="utf-8"/>
//==== TEST: MessagePortManager_requestTrustedRemoteMessagePort_exist
//==== LABEL Check if method requestTrustedRemoteMessagePort of MessagePortManager exists
//==== SPEC Tizen Web API:IO:Messageport:MessagePortManager:requestTrustedRemoteMessagePort M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
assert_true("requestTrustedRemoteMessagePort" in tizen.messageport, "No requestTrustedRemoteMessagePort method in tizen.messageport");
check_method_exists(tizen.messageport, "requestTrustedRemoteMessagePort");
}, "MessagePortManager_requestTrustedRemoteMessagePort_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_appId_attribute</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_appId_attribute
//==== LABEL Check if attribute appId of RemoteMessagePort exists, has type ApplicationId and is readonly
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:appId A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
var remoteMsgPort, localMsgPort,
localMsgPort = tizen.messageport.requestLocalMessagePort("remoteMsgPort");
remoteMsgPort = tizen.messageport.requestRemoteMessagePort(app.appInfo.id, "remoteMsgPort");
- assert_own_property(remoteMsgPort, "appId", "RemoteMessagePort does not own appId property.");
+ assert_own_property(remoteMsgPort, "appId", "RemoteMessagePort does not own appId property");
check_readonly(remoteMsgPort, "appId", app.appInfo.id, "string", "invalid");
}, "RemoteMessagePort_appId_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_extend</title>
<meta charset="utf-8"/>
//==== LABEL Check if instance of interface RemoteMessagePort can be extended with new property
//==== PRIORITY P3
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:RemoteMessagePort U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA OBX
test(function () {
var remoteMsgPort, localMsgPort,
check_extensibility(remoteMsgPort);
}, "RemoteMessagePort_extend");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_isTrusted_attribute</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_isTrusted_attribute
//==== LABEL Check if attribute isTrusted of RemoteMessagePort exists, has type Boolean and is readonly
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:isTrusted A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
var remoteMsgPort, localMsgPort,
localMsgPort = tizen.messageport.requestLocalMessagePort("remoteMsgPort");
remoteMsgPort = tizen.messageport.requestRemoteMessagePort(app.appInfo.id, "remoteMsgPort");
- assert_own_property(remoteMsgPort, "isTrusted", "RemoteMessagePort does not own isTrusted property.");
+ assert_own_property(remoteMsgPort, "isTrusted", "RemoteMessagePort does not own isTrusted property");
check_readonly(remoteMsgPort, "isTrusted", false, "boolean", true);
}, "RemoteMessagePort_isTrusted_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_messagePortName_attribute</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_messagePortName_attribute
//==== LABEL Check if attribute messagePortName of RemoteMessagePort exists, has type DOMString and is readonly
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:messagePortName A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
var remoteMsgPort, localMsgPort,
localMsgPort = tizen.messageport.requestLocalMessagePort("remoteMsgPort");
remoteMsgPort = tizen.messageport.requestRemoteMessagePort(app.appInfo.id, "remoteMsgPort");
- assert_own_property(remoteMsgPort, "messagePortName", "RemoteMessagePort does not own messagePortName property.");
+ assert_own_property(remoteMsgPort, "messagePortName", "RemoteMessagePort does not own messagePortName property");
check_readonly(remoteMsgPort, "messagePortName", "remoteMsgPort", "string", "invalid");
}, "RemoteMessagePort_messagePortName_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski <a.krolikowsk@samsung.com>
+ Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface RemoteMessagePort exists, it should not.
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:RemoteMessagePort U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA NIO
test(function () {
check_no_interface_object("RemoteMessagePort");
}, "RemoteMessagePort_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_sendMessage
//==== LABEL Check if method sendMessage works properly
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("RemoteMessagePort_sendMessage"), retValue = null;
t.step(function () {
var remoteMsgPort, localMsgPort, onReceived, listenerId,
- messagePortData = [{key:"RESULT",value:"OK"}],
+ messagePortData = [{key: "RESULT", value: "OK"}],
app = tizen.application.getCurrentApplication();
onReceived = t.step_func(function (data) {
retValue = remoteMsgPort.sendMessage(messagePortData);
assert_equals(retValue, undefined, "sendMessage returns wrong value");
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage_data_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL Check argument data conversions exception
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MC
test(function () {
var remoteMsgPort, localMsgPort, conversionTable, param, exceptionName, i,
assert_throws({name : exceptionName},
function () {
remoteMsgPort.sendMessage(param);
- }, exceptionName + " should be thrown - given incorrect.");
+ }, exceptionName + " should be thrown - given incorrect");
}
}, "RemoteMessagePort_sendMessage_data_TypeMismatch");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage_exist</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_sendMessage_exist
//==== LABEL Check if method sendMessage of RemoteMessagePort exists
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA ME
test(function () {
var remoteMsgPort, localMsgPort,
assert_true("sendMessage" in remoteMsgPort, "No sendMessage method in RemoteMessagePort");
check_method_exists(remoteMsgPort, "sendMessage");
}, "RemoteMessagePort_sendMessage_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage_localMessagePort_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL Check argument localMessagePort conversions exception
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MC
test(function () {
var remoteMsgPort, localMsgPort, conversionTable, param, exceptionName, i,
assert_throws({name : exceptionName},
function () {
remoteMsgPort.sendMessage(messagePortData, param);
- }, exceptionName + " should be thrown - given incorrect.");
+ }, exceptionName + " should be thrown - given incorrect");
}
}, "RemoteMessagePort_sendMessage_localMessagePort_TypeMismatch");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage_missarg</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_sendMessage_missarg
//==== LABEL Check if sendMessage method called with no arguments throws exception
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MMA
test(function () {
var remoteMsgPort, localMsgPort,
}, "TypeMismatchError should be thrown");
}, "RemoteMessagePort_sendMessage_missarg");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Karol Surma <k.surma@samsung.com>
+ Karol Surma <k.surma@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>RemoteMessagePort_sendMessage_with_localMessagePort</title>
<meta charset="utf-8"/>
//==== TEST: RemoteMessagePort_sendMessage_with_localMessagePort
//==== LABEL Check if method sendMessage works properly with all arguments
//==== SPEC Tizen Web API:IO:Messageport:RemoteMessagePort:sendMessage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html
//==== TEST_CRITERIA MOA MAST
var t = async_test("RemoteMessagePort_sendMessage_with_localMessagePort");
t.step(function () {
var remoteMsgPort, localMsgPort, onReceived, listenerId,
- messagePortData = [{key:"RESULT", value:"OK"}],
+ messagePortData = [{key: "RESULT", value: "OK"}],
app = tizen.application.getCurrentApplication();
onReceived = t.step_func(function (data, remoteMessagePort) {
- assert_type(data, "array", "MessagePortDataItem should be an array.");
+ assert_type(data, "array", "MessagePortDataItem should be an array");
assert_equals(data.length, 1, "There should be MessagePortDataItem");
assert_array_equals(data[0], messagePortData[0],
- "Received data should be equal to init data.");
+ "Received data should be equal to init data");
- if (remoteMessagePort !== null) {
- remoteMessagePort.sendMessage(messagePortData);
- } else {
+ if (remoteMessagePort === null) {
localMsgPort.removeMessagePortListener(listenerId);
t.done();
+ } else {
+ remoteMessagePort.sendMessage(messagePortData);
}
});
remoteMsgPort.sendMessage(messagePortData, localMsgPort);
});
+
</script>
</body>
</html>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortCallback" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManagerObject" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestLocalMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestRemoteMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestTrustedRemoteMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestTrustedLocalMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestLocalMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestTrustedLocalMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestRemoteMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortManager" element_type="method" element_name="requestTrustedRemoteMessagePort" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if instance of interface LocalMessagePort_extend can be extended with new property" type="compliance" status="approved" component="TizenAPI/IO/Messageport" execution_type="auto" priority="P3" id="LocalMessagePort_extend">
+ <testcase purpose="Check if instance of interface LocalMessagePort can be extended with new property" type="compliance" status="approved" component="TizenAPI/IO/Messageport" execution_type="auto" priority="P3" id="LocalMessagePort_extend">
<description>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/LocalMessagePort_extend.html</test_script_entry>
</description>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" usage="true" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="addMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="removeMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="attribute" element_name="appId" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="attribute" element_name="isTrusted" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="attribute" element_name="messagePortName" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if attribute isTrusted of LocalMessagePort exists, has type Boolean and is readonly" type="compliance" status="approved" component="TizenAPI/IO/Messageport" execution_type="auto" priority="P1" id="LocalMessagePort_isTrusted_attribute">
+ <testcase purpose="Check if attribute isTrusted of LocalMessagePort exists, has type boolean and is readonly" type="compliance" status="approved" component="TizenAPI/IO/Messageport" execution_type="auto" priority="P1" id="LocalMessagePort_isTrusted_attribute">
<description>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/LocalMessagePort_isTrusted_attribute.html</test_script_entry>
</description>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="attribute" element_name="isTrusted" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="attribute" element_name="messagePortName" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="addMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="removeMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortCallback" element_type="method" element_name="onreceived" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="MessagePortCallback" element_type="method" element_name="onreceived" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="RemoteMessagePort" element_type="method" element_name="sendMessage" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="addMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="addMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="LocalMessagePort" element_type="method" element_name="addMessagePortListener" specification="Messageport" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messageport.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/RemoteMessagePort_sendMessage_exist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if instance of interface LocalMessagePort_extend can be extended with new property" component="TizenAPI/IO/Messageport" execution_type="auto" id="LocalMessagePort_extend">
+ <testcase purpose="Check if instance of interface LocalMessagePort can be extended with new property" component="TizenAPI/IO/Messageport" execution_type="auto" id="LocalMessagePort_extend">
<description>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/LocalMessagePort_extend.html</test_script_entry>
</description>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/RemoteMessagePort_messagePortName_attribute.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if attribute isTrusted of LocalMessagePort exists, has type Boolean and is readonly" component="TizenAPI/IO/Messageport" execution_type="auto" id="LocalMessagePort_isTrusted_attribute">
+ <testcase purpose="Check if attribute isTrusted of LocalMessagePort exists, has type boolean and is readonly" component="TizenAPI/IO/Messageport" execution_type="auto" id="LocalMessagePort_isTrusted_attribute">
<description>
<test_script_entry>/opt/tct-messageport-tizen-tests/messageport/LocalMessagePort_isTrusted_attribute.html</test_script_entry>
</description>