+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
+++ /dev/null
-<!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>
<?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>
<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