[common][secureelement][modify 23 tcs to support actual aid] 67/148567/1
authorGu Weiyi <w.gu@samsung.com>
Fri, 8 Sep 2017 06:27:12 +0000 (14:27 +0800)
committerGu Weiyi <w.gu@samsung.com>
Fri, 8 Sep 2017 06:27:34 +0000 (14:27 +0800)
 - change install script
 - add tbt tpk

Change-Id: Ie46f991ccb8742baabdacc8fc3af4c9548afbce5
Signed-off-by: Gu Weiyi <w.gu@samsung.com>
28 files changed:
common/tct-secureelement-tizen-tests/inst.wgt.py
common/tct-secureelement-tizen-tests/org.tizen.tbt_nfcesetestapp.tpk [new file with mode: 0644]
common/tct-secureelement-tizen-tests/secureelement/ChannelSuccessCallback_onsuccess.html
common/tct-secureelement-tizen-tests/secureelement/Channel_close.html
common/tct-secureelement-tizen-tests/secureelement/Channel_close_exist.html
common/tct-secureelement-tizen-tests/secureelement/Channel_close_extra_argument.html
common/tct-secureelement-tizen-tests/secureelement/Channel_getSelectResponse.html
common/tct-secureelement-tizen-tests/secureelement/Channel_getSelectResponse_exist.html
common/tct-secureelement-tizen-tests/secureelement/Channel_getSelectResponse_extra_argument.html
common/tct-secureelement-tizen-tests/secureelement/Channel_isBasicChannel_attribute.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_command_TypeMismatch.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_errorCallback_TypeMismatch.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_errorCallback_invalid_cb.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_errorCallback_invoked.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_exist.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_misarg.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_successCallback_TypeMismatch.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_successCallback_invalid_cb.html
common/tct-secureelement-tizen-tests/secureelement/Channel_transmit_with_errorCallback.html
common/tct-secureelement-tizen-tests/secureelement/Makefile.am [deleted file]
common/tct-secureelement-tizen-tests/secureelement/Session_openBasicChannel.html
common/tct-secureelement-tizen-tests/secureelement/Session_openBasicChannel_with_errorCallback.html
common/tct-secureelement-tizen-tests/secureelement/Session_openLogicalChannel.html
common/tct-secureelement-tizen-tests/secureelement/Session_openLogicalChannel_with_errorCallback.html
common/tct-secureelement-tizen-tests/secureelement/TransmitSuccessCallback_onsuccess.html
common/tct-secureelement-tizen-tests/secureelement/support/secureelement_common.js [new file with mode: 0644]
common/tct-secureelement-tizen-tests/suite.json

index c7f89fd44607b570bbcae5447b935557cf8e590b..d4d5dc5df222911d2013bc04ea5ee9a203ff80d9 100755 (executable)
@@ -119,7 +119,7 @@ def uninstPKGs():
             continue
 
         for file in files:
-            if file.endswith(".wgt"):
+            if file.endswith(".wgt") or file.endswith(".tpk"):
                 pkg_id = getPKGID(os.path.basename(os.path.splitext(file)[0]))
                 if not pkg_id:
                     action_status = False
@@ -161,6 +161,17 @@ def instPKGs():
                         action_status = False
                         break
 
+            if file.endswith(".tpk"):
+                if not doRemoteCopy(os.path.join(root, file), "%s/%s" % (SRC_DIR, file)):
+                    action_status = False
+                (return_code, output) = doRemoteCMD(
+                    "pkgcmd %s -i -t tpk -q -p %s/%s" % (GLOVAL_OPT, SRC_DIR, file))
+                doRemoteCMD("rm -rf %s/%s" % (SRC_DIR, file))
+                for line in output:
+                    if "Failure" in line:
+                        action_status = False
+                        break
+
     # Do some special copy/delete... steps
     '''
     (return_code, output) = doRemoteCMD(
diff --git a/common/tct-secureelement-tizen-tests/org.tizen.tbt_nfcesetestapp.tpk b/common/tct-secureelement-tizen-tests/org.tizen.tbt_nfcesetestapp.tpk
new file mode 100644 (file)
index 0000000..a45e1d3
Binary files /dev/null and b/common/tct-secureelement-tizen-tests/org.tizen.tbt_nfcesetestapp.tpk differ
index c07adda34df90a5fa36c5679d100b721e9dcc7be..71cbe4652960a3adbe149829151bfad8bc4026ef 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>ChannelSuccessCallback_onsuccess</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -55,7 +56,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], onSuccess, onError);
+        session.openBasicChannel(TBT_APPLET_ID, onSuccess, onError);
     });
 
     errorSession = t.step_func(function (error) {
index d92cae4ced90cf7453cd141cbaf75e3a5ba775ee..65761cd3c41e1ff9ab17e5970f21f1246164ffa9 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_close</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -49,7 +50,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 3a0163281d5d447c9dd3a983c6a9f8b50ad70cdf..73467010f1ce38c31b25878648026fbb9bda285d 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_close_exist</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 49e531d72a9724c03fe109a2c3a12a825dd74acd..ce2d9f43ce3fa56cabc6cdc3522f8635f549bcaf 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_close_extra_argument</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 1160388b6d271a845da96823b32fe3b4bd8ef4a6..c8b21bc7cb35784033741719c10d415e29a52572 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_getSelectResponse</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -47,7 +48,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index f46b22d7ad0a08880abbdd25577198be28d36f26..a25291e19183bdee77a42a5fb82479ff97bc7cf0 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_getSelectResponse_exist</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 38b3e9e318cd2804aa02f30b6631d05aabc10f17..62c15b0faf95a70519aa1db68ca0196633c25ccd 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_getSelectResponse_extra_argument</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 0825660dbf5e63f912c064315fb51360ef5f83e6..c10c2bdca7d6fb6fd67b09333dbce0ecddf7caf3 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_isBasicChannel_attribute</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 94685775f25e5d2730ba8043be67e1b800e20b0b..2a24c87b73c7463dc25882f082d1f9ddbfb1ea7c 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -52,7 +53,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index ccecc671bf076c3a0a46a8cf8b66225ee48e7a88..79c4d76fda5346a69e030b5f22e63675cd31ea8c 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_command_TypeMismatch</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -65,7 +66,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 604b421b880e876404f9529ad9d8fc91039ae7a4..c11f1e360ea1c7493877a84d7e5a06a3ebfa1f66 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_errorCallback_TypeMismatch</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -61,7 +62,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 4d67e4c726c8c33ee1ea9fa017286b99bb247792..644cca5b6f5caf5fbc32cb0699bf6bff7b8c3777 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_errorCallback_invalid_cb</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -61,7 +62,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 0fef6650c70226d283a44e16fc47a995263cb6f2..0e65bf7cc4d816e375c52bc6dbc37c30be65675a 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_errorCallback_invoked</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -59,7 +60,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 5eb6ca4dd062537fddb03b33aff77ecef90612b9..df695606f0638b67280d85753981597e7adf7c32 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_exist</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -48,7 +49,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 3fe65c6d6567d218a739458275bb4d894faaf4c5..21fe4af4d4003e0849e1d8cb7844fc5e735aa49d 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_misarg</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -51,7 +52,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index ed4f2efb2da7125473febf1b549fd3189f101e11..edf52ec37c5065bb93f8b43c370e907a2d878936 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_successCallback_TypeMismatch</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -61,7 +62,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 2b96011f0ceeaafe2f9f75360d294f4dcdd44676..e340cc7422e94c3e3639062edccefd21b0508b32 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_successCallback_invalid_cb</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -61,7 +62,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 66025e422691cd126bf20b5cb284110e86c090c0..f78fe5c61bc9ca51739e00dab70bc8f6ff86486d 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Channel_transmit_with_errorCallback</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -56,7 +57,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
diff --git a/common/tct-secureelement-tizen-tests/secureelement/Makefile.am b/common/tct-secureelement-tizen-tests/secureelement/Makefile.am
deleted file mode 100755 (executable)
index 11917a6..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-SUBDIRS = support
-secureelement_SCRIPTS = *
-secureelementdir = $(prefix)/opt/tct-secureelement-tizen-tests/secureelement
-EXTRA_DIST = $(secureelement_SCRIPTS)
index 6474dc8d1d47ceb482b9333dd8e77021eef61e67..488ab2028fe36af010015c0d22daac8b0ccd13a7 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Session_openBasicChannel</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -53,7 +54,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        retVal = session.openBasicChannel([0x61, 0x70, 0x69, 0x31, 0x73, 0x65, 0x65, 0x6C, 0x30, 0x30], successChannel, errorChannel);
+        retVal = session.openBasicChannel(TBT_APPLET_ID, successChannel, errorChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 6ced073d65470a7558fc388024ba38cc55d5e994..d579b9a5a1155a6f6bad5e3385939b510bae37d6 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Session_openBasicChannel_with_errorCallback</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -52,7 +53,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        retVal = session.openBasicChannel([0x61, 0x70, 0x69, 0x31, 0x67, 0x65, 0x74, 0x63, 0x61, 0x70, 0x2E, 0x73, 0x79, 0x73, 0x69, 0x6E, 0x66, 0x6F], successChannel, errorChannel);
+        retVal = session.openBasicChannel(TBT_APPLET_ID, successChannel, errorChannel);
     });
 
     errorSession = t.step_func(function (error) {
index 7fc355dca55f36860618b680087742fe9eed950c..1a62a86548aa0ed9b564e6f29798f77b9e42b4e2 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Session_openLogicalChannel</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -52,7 +53,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        retVal = session.openLogicalChannel([0x61, 0x70, 0x69, 0x31, 0x67, 0x65, 0x74, 0x63, 0x61, 0x70, 0x2E, 0x73, 0x79, 0x73, 0x69, 0x6E, 0x66, 0x6F], successChannel, errorChannel);
+        retVal = session.openLogicalChannel(TBT_APPLET_ID, successChannel, errorChannel);
     });
 
     errorSession = t.step_func(function (error) {
index b1404681469164d7b555395b85d7e07647370146..155063de4f02cb6565d8831f3b24a8b79fa33775 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>Session_openLogicalChannel_with_errorCallback</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -52,7 +53,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        retVal = session.openLogicalChannel([0x61, 0x70, 0x69, 0x31, 0x67, 0x65, 0x74, 0x63, 0x61, 0x70, 0x2E, 0x73, 0x79, 0x73, 0x69, 0x6E, 0x66, 0x6F], successChannel, errorChannel);
+        retVal = session.openLogicalChannel(TBT_APPLET_ID, successChannel, errorChannel);
     });
 
     errorSession = t.step_func(function (error) {
index c0557fbd51e7ac0ba052b405eac4c1b260a6cd9b..48384aacdce5669bf5cd73eeddc8e8cd95b023a6 100755 (executable)
@@ -23,6 +23,7 @@ Authors:
 <title>TransmitSuccessCallback_onsuccess</title>
 <meta charset="utf-8"/>
 <script src="support/unitcommon.js"></script>
+<script src="support/secureelement_common.js"></script>
 </head>
 <body>
 <div id="log"></div>
@@ -58,7 +59,7 @@ t.step(function () {
 
     successSession = t.step_func(function (session) {
         assert_true(!session.isClosed, "Session is closed");
-        session.openBasicChannel([], successChannel);
+        session.openBasicChannel(TBT_APPLET_ID, successChannel);
     });
 
     errorSession = t.step_func(function (error) {
diff --git a/common/tct-secureelement-tizen-tests/secureelement/support/secureelement_common.js b/common/tct-secureelement-tizen-tests/secureelement/support/secureelement_common.js
new file mode 100644 (file)
index 0000000..effe564
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+Copyright (c) 2017 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:
+        Weiyi Gu <w.gu@samsung.com>
+
+*/
+
+var TBT_APPLET_ID = [0x43, 0x4F, 0x4E, 0x56, 0x45, 0x52, 0x47, 0x45, 0x4E, 0x43, 0x45, 0x4E, 0x46, 0x43];
+
index 9f0cda37289d9781b3ad38657516957420363f3c..ed76432b5b0c247d91ce24120fafb5a3431446e6 100755 (executable)
@@ -20,8 +20,8 @@
                 "tests.full.xml": "tests.full.xml",
                 "tests.xml": "tests.xml"
             },
-            "pkg-app": {\r
-                "sign-flag": "true"\r
+            "pkg-app": {
+                "sign-flag": "true"
             }
         },
         "apk-aio, cordova-aio": {
             "copylist": {
                 "inst.wgt.py": "inst.py",
                 "tests.full.xml": "tests.full.xml",
-                "tests.xml": "tests.xml"
+                "tests.xml": "tests.xml",
+                "org.tizen.tbt_nfcesetestapp.tpk": "org.tizen.tbt_nfcesetestapp.tpk"
             },
-            "pkg-app": {\r
-                "sign-flag": "true"\r
+            "pkg-app": {
+                "sign-flag": "true"
             }
         },
         "xpk": {
@@ -56,4 +57,4 @@
         }
     },
     "pkg-name": "tct-secureelement-tizen-tests"
-}
\ No newline at end of file
+}