[Security] Remove test cases about shared/data and shared/res directory
authorJunghyuk Park <junghyuk.park@samsung.com>
Tue, 5 Nov 2013 06:09:03 +0000 (15:09 +0900)
committerJunghyuk Park <junghyuk.park@samsung.com>
Tue, 5 Nov 2013 06:18:37 +0000 (15:18 +0900)
Change-Id: I9c57f9ff36cee7bafef6d0e71dbe3239aeb91f64

tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_of_another_app.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_rw.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_rw.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_of_another_app.html [deleted file]
tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_rw.html [deleted file]
tct-security-tcs-tests/security/File_deleteFile_copyFile_shared_data_directory.html [deleted file]
tct-security-tcs-tests/tests.full.xml
tct-security-tcs-tests/tests.xml

diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory.html
deleted file mode 100644 (file)
index 7a64c1c..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_data_directory</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_data_directory
-//==== LABEL: Check if application shared directory can be resolved with mode "r" to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-    });
-
-    expected = tizen.application.getAppSharedURI() + "data";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "r");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_of_another_app.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_of_another_app.html
deleted file mode 100644 (file)
index b6b6945..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_data_directory_of_another_app</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_data_directory_of_another_app
-//==== LABEL: Check if resolve another application shared directory to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-    });
-
-    expected = tizen.application.getAppSharedURI("ATRPHmnr6B.sharedDirTestApp") + "data";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "r");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_rw.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_rw.html
deleted file mode 100644 (file)
index af62013..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_data_directory_rw</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_data_directory_rw
-//==== LABEL: Check if application shared directory can be resolved with mode "rw" to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-    });
-
-    expected = tizen.application.getAppSharedURI() + "data";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "rw");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_rw.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_rw.html
deleted file mode 100644 (file)
index adb9fa2..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_directory_rw</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_directory_rw
-//==== LABEL: Check if application shared directory can be resolved with mode "rw" to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_unreached("resolve() must fail");
-        //assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        //t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        //assert_unreached("resolve() error callback invoked: name:" + error.name + " msg:" + error.message);
-        assert_equals(error.name, "InvalidValuesError", "resolve() must fail");
-        t.done();
-    });
-
-    expected = tizen.application.getAppSharedURI();
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "rw");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory.html
deleted file mode 100644 (file)
index 8285c82..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_res_directory</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_res_directory
-//==== LABEL: Check if application shared directory can be resolved with mode "r" to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-    });
-
-    expected = tizen.application.getAppSharedURI() + "res";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "r");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_of_another_app.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_of_another_app.html
deleted file mode 100644 (file)
index 774ab84..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_res_directory_of_another_app</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_res_directory_of_another_app
-//==== LABEL: Check if resolve another application shared directory to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-    });
-
-    expected = tizen.application.getAppSharedURI("ATRPHmnr6B.sharedDirTestApp") + "res";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "r");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_rw.html b/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_rw.html
deleted file mode 100644 (file)
index 970790f..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
-
--->
-
-<html lang="en">
-<head>
-<title>FileSystemManager_resolve_shared_res_directory_rw</title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-//==== TEST: FileSystemManager_resolve_shared_res_directory_rw
-//==== LABEL: Check if application shared directory can be resolved with mode "rw" to a file handle.
-//==== EXPECT: The method must be called successfully without an exception.
-//==== SPEC: Tizen Compliance Specification Security Section M
-//==== SPEC_URL: http://source.tizen.org/compliance/compliance-specification
-
-var resolveSuccess, resolveError, expected,
-    t = async_test(document.title);
-
-t.step(function () {
-    resolveSuccess = t.step_func(function (dir) {
-        assert_unreached("resolve() must fail");
-        //assert_equals(dir.toURI(), expected, "resolve shared directory to a file handle");
-        //t.done();
-    });
-
-    resolveError = t.step_func(function (error) {
-        //assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
-        assert_equals(error.name, "InvalidValuesError", "resolve() must fail");
-        t.done();
-    });
-
-    expected = tizen.application.getAppSharedURI() + "res";
-
-    tizen.filesystem.resolve(expected, resolveSuccess, resolveError, "rw");
-});
-</script>
-</body>
-</html>
diff --git a/tct-security-tcs-tests/security/File_deleteFile_copyFile_shared_data_directory.html b/tct-security-tcs-tests/security/File_deleteFile_copyFile_shared_data_directory.html
deleted file mode 100644 (file)
index bb9bfdd..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-<!DOCTYPE html>
-<!--
-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:
-    Leee <leee.lee@samsung.com>
--->
-
-<html>
-<head>
-<title> File_deleteFile_copyFile_shared_data_directory </title>
-<script type="text/javascript" src="../resources/unitcommon.js"></script>
-<script type="text/javascript" src="support/filesystem_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-//==== TEST: File_deleteFile_copyFile_shared_data_directory
-//==== LABEL check if create a new file in shared directory and copy the file and then delete the file
-//==== PRIORITY P3
-//==== STEP check if create a new file in shared directory and copy the file and then delete the file
-//==== EXPECT PASS
-//==== TIMEOUT 90
-//==== SPEC Tizen Compliance Specification Security Section U
-//==== SPEC_URL http://source.tizen.org/compliance/compliance-specification
-
-
-var t = async_test(document.title), fsTestFileName, fsTestFile,
-    resolveSuccess, resolveError, copyToSuccess, copyToError, date, fileName,
-    deleteFileSuccess, deleteFileError, sharedDir, resolvedSharedDir;
-
-t.step(function () {
-    date = new Date();
-    fileName = "securityFile" + date.getDate() + date.getMinutes() + date.getSeconds() + ".txt";
-    fsTestFileName = getFileName(fileName);
-
-    sharedDir = tizen.application.getAppSharedURI();
-    if (sharedDir.indexOf("/", sharedDir.length - 1) === -1) {
-        sharedDir = sharedDir + "/";
-    }
-    sharedDir = sharedDir + "data/";
-
-    deleteFileSuccess = t.step_func(function () {
-        t.done();
-    });
-
-    deleteFileError = t.step_func(function (error) {
-        assert_unreached("deleteFile() error callback invoked: name:" + error.name + " msg:" + error.message);
-    });
-
-    copyToSuccess = t.step_func(function () {
-        resolvedSharedDir.deleteFile(sharedDir + "data.copied", deleteFileSuccess, deleteFileError);
-    });
-
-    copyToError = t.step_func(function (error) {
-        assert_unreached("copyTo() error callback invoked: name:" + error.name + " msg:" + error.message);
-    });
-
-    resolveSuccess = t.step_func(function (dir) {
-        resolvedSharedDir = dir;
-        fsTestFile = dir.createFile(fsTestFileName);
-        try {
-            dir.copyTo(fsTestFile.fullPath, sharedDir + "data.copied", true, copyToSuccess, copyToError);
-        } catch (err) {
-            assert_unreached("copyTo() throws an exception: name:" + err.name + " msg:" + err.message);
-        }
-    });
-
-    resolveError = t.step_func(function (error) {
-        assert_unreached("resolve() error callback invoked: name:" + error.name + " msg:" + error.message);
-    });
-
-    tizen.filesystem.resolve(sharedDir, resolveSuccess, resolveError, "rw");
-});
-</script>
-</body>
-</html>
index 42468680b858b1978897843fb3eddcf3646b3cb1..00e964fcadbe1c6ae48a1845f10cc6f5e992f531 100755 (executable)
@@ -2,7 +2,7 @@
 <?xml-stylesheet type="text/xsl"  href="./testcase.xsl"?>
 <test_definition>
   <suite name="tct-security-tcs-tests" launcher="WRTLauncher" category="Compliance">
-    <set name="Security">
+    <set name="Security">    
       <testcase purpose="Check if application shared directory can be resolved with mode 'r' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_directory">
         <description>
           <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <testcase purpose="Check if application shared data directory can be resolved with mode 'r' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_data_directory">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>        
-      <testcase purpose="Check if application shared res directory can be resolved with mode 'r' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_res_directory">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if application shared directory can be resolved with mode 'rw' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_directory_rw">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_rw.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if application shared data directory can be resolved with mode 'rw' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_data_directory_rw">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_rw.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>        
-      <testcase purpose="Check if application shared res directory can be resolved with mode 'rw' to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_res_directory_rw">
+      <testcase purpose="Check if another application's wgt-package directory is NOT resolved." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_wgt_package_of_another_app">
         <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_rw.html</test_script_entry>
+          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_wgt_package_of_another_app.html</test_script_entry>
         </description>
         <specs>
           <spec>
             <spec_statement>TBD</spec_statement>
           </spec>
         </specs>
-      </testcase>
-      <testcase purpose="Check if resolve another application shared data directory to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_data_directory_of_another_app">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_of_another_app.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>        
-      <testcase purpose="Check if resolve another application shared res directory to a file handle." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_shared_res_directory_of_another_app">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_of_another_app.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if another application's wgt-package directory is NOT resolved." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P1" id="FileSystemManager_resolve_wgt_package_of_another_app">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_wgt_package_of_another_app.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if create a new file in shared data directory and copy the file and then delete the file." type="compliance" status="approved" component="TizenAPI/IO/Filesystem" execution_type="auto" priority="P3" id="File_deleteFile_copyFile_shared_data_directory">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/File_deleteFile_copyFile_shared_data_directory.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion usage="true" interface="File" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
-            <spec_url>http://source.tizen.org/compliance/compliance-specification</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-    </set>
+      </testcase>      
+     </set>
   </suite>
 </test_definition>
index 207b9b168a871efb05a4affb757991e5bf1a957a..ace4529b14e0282b73426a94b68ccab76c9b8d48 100755 (executable)
@@ -8,56 +8,16 @@
           <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory.html</test_script_entry>
         </description>
         </testcase>
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_data_directory" purpose="Check if application shared data directory can be resolved with mode 'r' to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory.html</test_script_entry>
-        </description>
-        </testcase>      
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_res_directory" purpose="Check if application shared res directory can be resolved with mode 'r' to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory.html</test_script_entry>
-        </description>
-        </testcase>
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_directory_rw" purpose="Check if application shared directory can be resolved with mode 'rw' to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_rw.html</test_script_entry>
-        </description>
-        </testcase>
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_data_directory_rw" purpose="Check if application shared data directory can be resolved with mode 'rw' to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_rw.html</test_script_entry>
-        </description>
-        </testcase>      
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_res_directory_rw" purpose="Check if application shared res directory can be resolved with mode 'rw' to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_rw.html</test_script_entry>
-        </description>
-        </testcase>
       <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_directory_of_another_app" purpose="Check if resolve another application shared directory to a file handle.">
         <description>
           <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_directory_of_another_app.html</test_script_entry>
         </description>
         </testcase>
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_data_directory_of_another_app" purpose="Check if resolve another application shared data directory to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_data_directory_of_another_app.html</test_script_entry>
-        </description>
-        </testcase>      
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_shared_res_directory_of_another_app" purpose="Check if resolve another application shared res directory to a file handle.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_shared_res_directory_of_another_app.html</test_script_entry>
-        </description>
-        </testcase>
       <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="FileSystemManager_resolve_wgt_package_of_another_app" purpose="Check if another application's wgt-package directory is NOT resolved.">
         <description>
           <test_script_entry>/opt/tct-security-tcs-tests/security/FileSystemManager_resolve_wgt_package_of_another_app.html</test_script_entry>
         </description>
         </testcase>
-      <testcase component="TizenAPI/IO/Filesystem" execution_type="auto" id="File_deleteFile_copyFile_shared_data_directory" purpose="Check if create a new file in shared data directory and copy the file and then delete the file.">
-        <description>
-          <test_script_entry>/opt/tct-security-tcs-tests/security/File_deleteFile_copyFile_shared_data_directory.html</test_script_entry>
-        </description>
-        </testcase>
     </set>
   </suite>
 </test_definition>
\ No newline at end of file